.scroll-link {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.section-copy {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
    font-size: 1.125rem;
    color: #d1d5db;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 200, 123, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

.btn-primary {
    background-color: #d4c87b;
    color: #000;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c4b86b;
    transform: translateY(-1px);
}

.service-card {
    background-color: #103c36;
    border: 1px solid #2a5f58;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.hero-points {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-point-card {
    background: rgba(16, 60, 54, 0.7);
    border: 1px solid rgba(42, 95, 88, 0.7);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: left;
}

.hero-point-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-point-card p {
    line-height: 1.7;
    color: #e2e8f0;
}

.icon {
    height: 2.5rem;
    width: 2.5rem;
    margin-bottom: 1rem;
    color: #d4c87b;
}

.footer-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.media-gallery {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	padding: 0.5rem 0.25rem;
	scrollbar-width: thin;
	scrollbar-color: #2a5f58 transparent;
}

.media-gallery::-webkit-scrollbar {
	height: 8px;
}

.media-gallery::-webkit-scrollbar-track {
	background: transparent;
}

.media-gallery::-webkit-scrollbar-thumb {
	background-color: #2a5f58;
	border-radius: 9999px;
}

.media-item {
	flex: 0 0 auto;
	min-width: 300px;
	max-width: 420px;
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid #2a5f58;
	background: #103c36;
	scroll-snap-align: start;
}

.media-item img,
.media-item video {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
	background: #0a2e29;
}

.media-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(16, 60, 54, 0.9);
	border: 1px solid #2a5f58;
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
	transition: background-color 0.2s ease;
	z-index: 10;
}

.media-nav:hover {
	background: rgba(26, 90, 82, 0.95);
}

.media-nav-left {
	left: -0.5rem;
}

.media-nav-right {
	right: -0.5rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 640px) {
    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.media-card {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #2a5f58;
    background: #103c36;
}

.media-card img,
.media-card video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    background: #0a2e29;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
}

.lightbox-overlay.hidden {
    display: none;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    border: 1px solid #2a5f58;
    background: #0b3831;
    border-radius: 0.5rem;
    overflow: hidden;
}

.lightbox-content img,
.lightbox-content video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    border: 1px solid #2a5f58;
    background: rgba(16, 60, 54, 0.9);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    border: 1px solid #2a5f58;
    background: rgba(16, 60, 54, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

