:root{
    --gold:#B69C62;
    --black:#1A1A1A;
    --white:#F1F1F1;
    --slate:#747C92;
    --red:#C5283D;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--white);
    color:var(--black);
    line-height:1.7;
}

.black-background{
    background:var(--black);
    color:var(--white);
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(26,26,26,.95);
    backdrop-filter:blur(10px);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    display:flex;
    flex-direction:column;
    color:white;
    font-weight:600;
}

.logo img{
    width:150px;
}

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

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

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

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

.nav-btn,
.btn-primary{
    background:var(--gold);
    color:white;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.link-primary a{
    color: white;
}

.nav-btn:hover,
.btn-primary:hover{
    transform:translateY(-2px);
    background:#a58c55;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%,-50%);
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:
    linear-gradient(
        90deg,
        rgba(26,26,26,.92) 0%,
        rgba(26,26,26,.75) 35%,
        rgba(26,26,26,.45) 100%
    );
}

.hero-content{
    position:relative;
    z-index:3;
    max-width:700px;
    color:white;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(182,156,98,.15);
    border:1px solid rgba(182,156,98,.5);
    color:#B69C62;
    border-radius:999px;
    margin-bottom:25px;
    font-size:.85rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero h1{
    font-size:clamp(3rem,6vw,6rem);
    line-height:1;
    margin-bottom:25px;
    font-weight:700;
}

.hero p{
    font-size:1.2rem;
    max-width:550px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

#magic-text {
    background: linear-gradient(
        90deg,
        #b69c62 0%,
        #e6d3a3 50%,
        #b69c62 100%
    );
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--red);
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:2.5rem;
}

.weddings-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:70%;
    opacity: 90%;
}

.weddings-image img{
    width: 70%;
}

.about-text p{
    font-size: 1.5rem;
}

.weddings-text p{
    font-size: 1rem;
}

.services{
    background:var(--white);
    color:black;
}

.pricing{
    background:var(--black);
    color:white;
}

.service-grid,
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.pricing-grid span{
    color:var(--gold);
    font-weight: 800;
}

.center{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#pricing-quote-button{
    margin: 20px 0;
}

.card-light{
    background:#F9F9F9;
    padding:40px;
    border-radius:20px;
    border-top:4px solid var(--gold);
    -webkit-box-shadow: 0px 8px 20px 2px rgba(26, 26, 26, 0.1); 
    box-shadow: 0px 8px 20px 2px rgba(26,26,26,0.1);
}

.card-dark{
    background:#232323;
    padding:40px;
    border-radius:20px;
    border-top:4px solid var(--gold);
}

.card h3{
    margin-bottom:15px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial{
    background:var(--white);
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    text-align: center;
}

.testimonial strong{
    color:var(--gold);
    font-size: 40px;
}

.large-text{
    font-size: 24px;
}

.contact{
    background:var(--black);
    color:white;
}

.contact-section {
    padding: 0;
}

.contact-form{
    max-width:800px;
    margin:auto;
    padding:50px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    gap:20px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(182,156,98,0.25);
    border-radius:20px;
    backdrop-filter:blur(12px);
    position:relative;
}

.contact-form::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(182,156,98,.08);
    border-radius:50%;
    filter:blur(100px);
    top:-100px;
    right:-100px;
    pointer-events:none;
}

.contact-form label{
    color:var(--gold);
    font-size:0.85rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:-10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px;
    background:#242424;
    border:1px solid #333;
    border-radius:12px;
    color:var(--white);
    font-size:1rem;
    transition:.3s;
    color-scheme: dark;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#888;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(182,156,98,.15);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

footer{
    background:var(--black);
    color:white;
    text-align:center;
    padding:30px;
}

#about{
        background-image:linear-gradient(#1a1a1aac, #1A1A1A), url(img/IMG_1281.jpg);
        background-position:center top;
        background-repeat:no-repeat;
        background-size:cover;
        color: #F1F1F1;
        margin: 0;
    }

.floating-contact{
    position:fixed;
    right:30px;
    bottom:30px;
    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:15px;
}

.floating-contact a{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    text-decoration:none;

    background:rgba(26,26,26,.95);
    color:var(--gold);

    border:1px solid rgba(182,156,98,.35);
    backdrop-filter:blur(10px);

    font-size:1.6rem;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

    transition:.3s;
}

.floating-contact a:hover{
    background:var(--gold);
    color:white;
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 15px 35px rgba(182,156,98,.4);
}

@media(max-width:768px){

    .floating-contact{
        right:15px;
        bottom:15px;
    }

    .floating-contact a{
        width:52px;
        height:52px;
        font-size:1.3rem;
    }

}

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .section-title h2{
        font-size: 36px;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .weddings-grid,
    .service-grid,
    .testimonial-grid,
    .pricing-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .about-image img,
    .weddings-image img{
    width:100%;
    }

    .contact-section {
        padding: 0 10px;
    }

    .form-row{
    grid-template-columns:1fr;
    }
}