/* =========================
   GLOBAL VARIABLES
========================== */
:root {
    --bg-color: #060606;
    --text-color: #f5f2ed;
    --gold: #c9a96e;
    --gold-dark: #a68750;
    --gray-light: #d0d0d0;
    --gray: #aaa;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =========================
   RESET & TYPOGRAPHY
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.gold {
    color: var(--gold);
}

.section {
    padding: 140px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.section-subtitle-small {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.section-subtitle {
    color: var(--gray);
    font-size: 16px;
    max-width: 650px;
    margin-bottom: 60px;
}

/* =========================
   BUTTONS
========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    gap: 10px;
}

.btn-primary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #000;
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.link-btn {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.link-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.link-btn:hover::after {
    width: 100%;
}

/* =========================
   HEADER & NAVIGATION
========================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(6,6,6,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 500;
}

.logo span {
    color: var(--gold);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    font-weight: 400;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    cursor: pointer;
    color: var(--text-color);
}

/* =========================
   HERO SECTION
========================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/hero_wedding.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1);
    animation: slowZoom 20s infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.8) 100%);
    z-index: 2;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.hero-small {
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(70px, 12vw, 160px);
    font-weight: 400;
    line-height: 0.9;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    margin: 40px auto;
    max-width: 600px;
    color: var(--gray-light);
    font-size: 18px;
    animation: fadeInUp 1.4s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 1.5px solid var(--text-color);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =========================
   INTRO
========================== */
.intro {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0a0a 100%);
}

.intro-text {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    max-width: 1000px;
    margin: auto;
    line-height: 1.3;
    font-weight: 400;
}

/* =========================
   SERVICES
========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #0a0a0a;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255,255,255,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(201, 169, 110, 0.2);
}

.service-img-wrapper {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.service-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a 0%, transparent 80%);
}

.service-content {
    padding: 40px 30px;
    position: relative;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: rgba(201, 169, 110, 0.2);
    position: absolute;
    top: -50px;
    right: 30px;
    line-height: 1;
    font-style: italic;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: var(--gold);
    transform: translateY(-10px);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 60px;
}

/* =========================
   ABOUT
========================== */
#about {
    background: #080808;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image-wrapper img {
    height: 700px;
    object-fit: cover;
    filter: brightness(0.9);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 20px;
    text-align: center;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
}

.about-text .lead {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}

/* =========================
   FILMS SECTION
========================== */
.film-section {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px;
}

.film-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/cinema_service.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
    filter: grayscale(30%);
}

.film-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2;
}

.film-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.film-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(55px, 8vw, 110px);
    font-weight: 400;
    line-height: 1;
    margin: 20px 0 50px;
}

.play-btn {
    border-radius: 50px;
    padding: 15px 30px 15px 25px;
}

/* =========================
   TESTIMONIALS
========================== */
.testimonial-section {
    background: #0a0a0a;
    background-image: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}

.testimonial {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 120px;
    color: rgba(201, 169, 110, 0.15);
    line-height: 0;
    margin-bottom: 40px;
}

.quote {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
}

.client {
    margin-top: 40px;
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

/* =========================
   CONTACT
========================== */
.contact-section {
    background: #060606;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-info {
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 100%);
}

.contact-desc {
    color: var(--gray);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 15px;
    color: var(--gray-light);
}

.contact-item a:hover {
    color: var(--gold);
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    width: fit-content;
}

.whatsapp-btn::before {
    background: #1eb956;
}

.contact-form {
    padding: 80px 60px;
    background: #0d0d0d;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #151515;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 13px;
    margin-top: 10px;
}

/* =========================
   FOOTER
========================== */
footer {
    background: #040404;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--gray);
    font-size: 13px;
}

.socials {
    display: flex;
    gap: 30px;
}

.socials a {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
    position: relative;
    padding-bottom: 5px;
}

.socials a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.socials a:hover {
    color: var(--gold);
}

.socials a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 12px;
    letter-spacing: 1px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* =========================
   RESPONSIVE DESIGN
========================== */
@media(max-width: 1024px) {
    .about-grid {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }
    .about-image-wrapper img {
        height: 500px;
    }
    .experience-badge {
        width: 150px;
        height: 150px;
        right: 10px;
        bottom: -20px;
    }
    .experience-badge .years {
        font-size: 36px;
    }
    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(6,6,6,0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-btn {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        order: 2;
        margin-top: 40px;
    }
    
    .about-text {
        order: 1;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .contact-info, .contact-form {
        padding: 50px 30px;
    }
}

@media(max-width: 480px) {
    .hero h1 {
        font-size: 55px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .logo {
        font-size: 22px;
    }
}
