/* =====================================================
   LUCKY FILM IDAR
   Premium Photography Studio Website
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* Accessible focus state on every interactive element */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #d6b36a;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    background: rgba(11,11,11,0);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: background 0.35s ease, padding 0.35s ease;
}

.header.scrolled {
    background: rgba(11,11,11,0.92);
    backdrop-filter: blur(10px);
    padding: 14px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo small {
    display: block;
    font-size: 9px;
    letter-spacing: 5px;
    margin-top: 7px;
    opacity: 0.75;
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu a {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    padding: 4px 0;
}

.menu a:hover,
.menu a.active {
    color: #d6b36a;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: -7px;
    background: #d6b36a;
    transition: width 0.3s;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 21px;
    border: 1px solid #d6b36a;
    color: #d6b36a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.nav-btn:hover {
    background: #d6b36a;
    color: #111;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)),
        url("../images/banner.png");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            transparent 10%,
            rgba(0,0,0,0.55) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-small {
    color: #d6b36a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 95px);
    line-height: 1.02;
    font-weight: 600;
    max-width: 950px;
}

.hero h1 em {
    color: #d6b36a;
    font-style: italic;
    font-weight: 500;
}

.hero-description {
    max-width: 570px;
    margin-top: 28px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 27px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}

.btn-primary {
    background: #d6b36a;
    color: #111;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}

.btn-outline:hover {
    border-color: #d6b36a;
    color: #d6b36a;
}

.scroll-down {
    position: absolute;
    right: 45px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(90deg);
    transform-origin: right center;
    color: rgba(255,255,255,0.55);
    z-index: 2;
}

.scroll-down span {
    font-size: 9px;
    letter-spacing: 3px;
}

.scroll-down div {
    width: 55px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 110px 0;
}

.intro {
    background: #111111;
}

.section-label {
    color: #d6b36a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2,
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
    font-weight: 600;
}

.section-heading h2 em,
.intro-text h2 em {
    color: #d6b36a;
    font-style: italic;
    font-weight: 500;
}

.section-heading > p:last-child {
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}


/* =====================================================
   INTRO
===================================================== */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.intro-text p:not(.section-label) {
    color: #999;
    font-size: 14px;
    line-height: 1.9;
    margin-top: 22px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: #d6b36a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap 0.3s;
}

.text-link:hover {
    gap: 14px;
}

.intro-image {
    position: relative;
    padding: 25px;
}

.image-box {
    position: relative;
    min-height: 520px;
    background: #1c1c1c;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.intro-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    border-top: 1px solid #d6b36a;
    border-left: 1px solid #d6b36a;
    z-index: 2;
    pointer-events: none;
}

.intro-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 110px;
    border-right: 1px solid #d6b36a;
    border-bottom: 1px solid #d6b36a;
    z-index: 2;
    pointer-events: none;
}

.experience {
    position: absolute;
    left: -15px;
    bottom: 40px;
    background: #d6b36a;
    color: #111;
    padding: 18px 25px;
    display: flex;
    flex-direction: column;
    z-index: 3;
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

.experience strong {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.experience span {
    font-size: 8px;
    letter-spacing: 3px;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #0b0b0b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #292929;
}

.service-card {
    position: relative;
    min-height: 320px;
    padding: 35px 28px;
    background: #111;
    transition: background 0.4s, transform 0.4s;
    overflow: hidden;
}

.service-card:hover {
    background: #181818;
    transform: translateY(-7px);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.service-icon {
    font-size: 35px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-card p {
    color: #888;
    font-size: 12px;
    line-height: 1.8;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #d6b36a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap 0.3s;
}

.service-card a:hover {
    gap: 12px;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery-preview {
    background: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #1c1c1c;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.center-btn {
    text-align: center;
    margin-top: 45px;
}

.btn-dark {
    border: 1px solid #555;
    color: #fff;
}

.btn-dark:hover {
    border-color: #d6b36a;
    color: #d6b36a;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    position: relative;
    min-height: 560px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    text-align: center;

    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
        url("../images/banner.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin: auto;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
}

.cta h2 em {
    color: #d6b36a;
    font-style: italic;
    font-weight: 500;
}

.cta p:not(.section-label) {
    margin: 22px auto 30px;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 1000px) {
    .cta {
        background-attachment: scroll;
    }
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #080808;
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    letter-spacing: 2px;
}

.footer-grid > div > p {
    color: #777;
    font-size: 12px;
    margin-top: 12px;
}

.footer h4 {
    color: #d6b36a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer a {
    display: block;
    color: #777;
    font-size: 11px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid #1c1c1c;
    text-align: center;
    padding: 22px 10px;
    color: #555;
    font-size: 10px;
    letter-spacing: 1px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn span {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .menu {
        gap: 18px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .header {
        padding: 16px 0;
    }

    .menu {
        display: none;
        position: absolute;
        top: 66px;
        left: 5%;
        width: 90%;
        padding: 25px;
        background: #111;
        border: 1px solid #292929;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .menu.show {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 850px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-down {
        display: none;
    }

    .section {
        padding: 75px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        margin-top: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}


@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .logo span {
        font-size: 22px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-small {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .section-heading h2,
    .intro-text h2 {
        font-size: 38px;
    }

    .image-box,
    .image-box img {
        min-height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
    }

    .experience {
        left: 0;
        bottom: 20px;
    }
}