/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Photography Theme Colors */
    --color-background: hsl(220, 13%, 8%);
    --color-foreground: hsl(36, 100%, 94%);
    --color-card: hsl(220, 13%, 10%);
    --color-primary: hsl(38, 92%, 65%);
    --color-primary-glow: hsl(38, 92%, 75%);
    --color-secondary: hsl(220, 13%, 15%);
    --color-muted: hsl(215, 15%, 65%);
    --color-border: hsl(220, 13%, 20%);

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(220, 13%, 8%) 0%, hsl(220, 13%, 12%) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(38, 92%, 65%) 0%, hsl(38, 92%, 75%) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, hsl(220, 13%, 8%, 0.8) 100%);

    /* Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 40px rgba(255, 193, 7, 0.2);
    --shadow-intense: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color:transparent;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-foreground);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  animation: hero-slideshow 30s infinite;
}

@keyframes hero-slideshow {
  0%, 20% { background-image: url("img/gallery/Wedding/6A2A9881.jpg"); }
  25%, 45% { background-image: url("img/gallery/Studio Photoshoot/IMG_3217-Edit.jpg"); }
  50%, 70% { background-image: url("img/gallery/Schools/IMG_8522.jpg"); }
  75%, 95% { background-image: url("img/gallery/Parties/IMG_1915.jpg"); }
  100% { background-image: url("img/gallery/Wedding/6A2A9881.jpg"); }
}


.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-highlight {
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: black;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-background);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-background);
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.25rem;
    color: var(--color-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

.text-gold {
    color: var(--color-primary);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--color-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-background);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-muted);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-intense);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: #d4af37;
}

.gallery-category {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
}

/* Services Section */
.service {
    padding: 80px 20px;
    background: #0d0d0d; /* same dark background */
    color: #fff;
    text-align: center;
}

.service .section-header {
    margin-bottom: 50px;
}

.service .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service .section-header p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Service Box Style (matching gallery cards) */
.service-box {
    background: #141414;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1); /* subtle border like gallery */
    border-radius: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: scale(1.03); /* same slight zoom as gallery */
    border-color: #d4af37; /* gold border highlight */
}

/* Icons */
.service-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

/* Titles */
.service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff;
}

/* Text */
.service-box p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--color-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    color: var(--color-primary);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-background);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    box-shadow: var(--shadow-gold);
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-label {
    font-weight: 600;
    color: var(--color-foreground);
}

.contact-value {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.social-section {
    margin: 3rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: var(--color-background);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.social-link:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.social-link.instagram:hover { color: #E4405F; }
.social-link.tiktok:hover { color: #000000; }
.social-link.twitter:hover { color: #1DA1F2; }
.social-link.facebook:hover { color: #4267B2; }
.social-link.whatsapp:hover { color: #25D366; }

.social-description {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.booking-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.notice-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.notice-text {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Form Styles */
.form-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background: var(--color-secondary);
    color: var(--color-foreground);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-intense);
}

/* Footer */
.footer {
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--color-muted);
}

.footer-subtitle {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4rem;
        flex-direction: column;
        background-color: transparent;
        backdrop-filter: blur(12px);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition-smooth);
        border-radius: 0 0 1rem 1rem;
        box-shadow: var(--shadow-soft);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about,
    .gallery,
    .services,
    .contact {
        padding: 4rem 0;
    }

    .form-card {
        padding: 1.5rem;
    }
}

