/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.site-header {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.headlogo {
    height: 60px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 768px) {
    .headlogo {
        height: 45px;
}
}


.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-list li a {
    color: #f8fafc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #facc15;
}

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero.jpg'); /* Use relative path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5);
}

.hero-overlay {
    color: #fff;
    max-width: 800px;
    z-index: 2;
    padding: 0 1rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.button,
.button-outline {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.button {
    background: #facc15;
    color: #111827;
}

.button:hover {
    background: #eab308;
}

.button-outline {
    background: transparent;
    border: 2px solid #facc15;
    color: #facc15;
    transition: background 0.3s ease, color 0.3s ease;
}

.button-outline:hover {
    background: #facc15;
    color: #111827;
}

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.dark-section {
    background-color: #1e293b;
    color: #f8fafc;
}

.light-section {
    background-color: #fefce8;
    color: #111827;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
}

.specialty-list {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    color: #10b981;
}

.specialty-list li {
    margin-bottom: 0.75rem;
}

/* Gallery */
.carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(250, 204, 21, 0.8);
    color: #111827;
    font-size: 2rem;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.carousel-btn:hover {
    background-color: #facc15;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}  

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.affiliate-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.affiliate-badge {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}  

/* Scroll Animation */
.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay h1 {
    font-size: 2rem;
    }

    .nav-list {
    flex-direction: column;
    gap: 1rem;
    }

    .gallery-grid {
    grid-template-columns: 1fr;
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #facc15;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
    display: block;
    }

    .nav-list {
    display: none;
    flex-direction: column;
    background-color: #0f172a;
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 2rem;
    width: 200px;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .nav-list.show {
    display: flex;
    }

    .nav-list li {
    margin: 0.5rem 0;
    text-align: right;
    }
}  

@media (max-width: 768px) {
    .nav-list {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    }

    .hero-overlay h1 {
    font-size: 2rem;
    line-height: 1.3;
    }

    .hero-overlay p {
    font-size: 1rem;
    }

    .section h2 {
    font-size: 1.5rem;
    }

    .specialty-list li {
    font-size: 1rem;
    }

    .carousel-slide img {
    height: 250px;
    }

    .carousel-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
    }

    .carousel {
    margin-top: 2rem;
    }

    .button,
    .button-outline {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    }
}  