/* ==========================================================
   MALIKA GAUR - Luxury Bridal Website
   ========================================================== */

:root{
    --primary:#1d1d1d;
    --secondary:#b08d57;
    --background:#faf8f5;
    --light:#ffffff;
    --text:#555;
    --border:#ececec;
    --transition:.35s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--primary);
    background:#fff;
    line-height:1.8;
}

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

a{
    text-decoration:none;
}

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

/* ===========================
HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.05);
    z-index:999;
}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:88px;

}

.logo h2{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    letter-spacing:3px;

}

.logo span{

    display:block;

    letter-spacing:5px;

    color:#999;

    font-size:11px;

}

nav ul{

    list-style:none;

    display:flex;

    gap:34px;

}

nav a{

    color:#222;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:1px;

    transition:var(--transition);

}

nav a:hover{

    color:var(--secondary);

}

/* ===========================
BUTTONS
=========================== */

.btn-dark{

    display:inline-block;

    padding:15px 34px;

    background:#111;

    color:white;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

    transition:var(--transition);

}

.btn-dark:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;

    border:1px solid #111;

    color:#111;

    padding:15px 32px;

    transition:var(--transition);

}

.btn-outline:hover{

    background:#111;

    color:white;

}

/* ===========================
HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(
    to right,
    var(--background) 55%,
    white 45%
    );

    padding-top:90px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-left h1{

    font-family:'Cormorant Garamond',serif;

    font-size:78px;

    line-height:1;

    margin-bottom:30px;

    font-weight:600;

}

.hero-left p{

    max-width:520px;

    color:#666;

    margin-bottom:35px;

}

.hero-right img{

    border-radius:12px;

    box-shadow:0 40px 80px rgba(0,0,0,.15);

}

/* ===========================
SECTIONS
=========================== */

section{

    padding:110px 0;

}

h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    margin-bottom:30px;

    font-weight:600;

}

h3{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

}

h5{

    color:var(--secondary);

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-weight:500;

}

.center{

    text-align:center;

}

/* ===========================
ABOUT
=========================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    border-radius:10px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content p{

    color:#666;

    margin-bottom:22px;

}

/* ===========================
SERVICES
=========================== */

#services{

    background:var(--background);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

    margin:50px 0;

}

.service{

    background:white;

    border:1px solid var(--border);

    padding:45px 20px;

    text-align:center;

    transition:var(--transition);

}

.service:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.icon{

    font-size:40px;

    margin-bottom:20px;

}

/* ===========================
PORTFOLIO
=========================== */

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin:50px 0;

}

.gallery img{

    aspect-ratio:3/4;

    object-fit:cover;

    cursor:pointer;

    transition:var(--transition);

}

.gallery img:hover{

    transform:scale(1.03);

}

/* ===========================
PUBLICATIONS
=========================== */

#publications{

    background:white;

}

.logos{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:50px;

    margin-top:40px;

}

.logos span{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:#999;

}

/* ===========================
TESTIMONIAL
=========================== */

.testimonial{

    max-width:750px;

    margin:auto;

    text-align:center;

}

.testimonial p{

    font-size:22px;

    font-style:italic;

    color:#555;

}

.testimonial h4{

    margin-top:25px;

    color:var(--secondary);

}

/* ===========================
CONTACT
=========================== */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

}

form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

input,

textarea{

    padding:16px;

    border:1px solid #ddd;

    font-family:inherit;

    font-size:15px;

}

textarea{

    height:180px;

    resize:none;

}

/* ===========================
FOOTER
=========================== */

footer{

    background:#111;

    color:white;

    padding:35px 0;

}

.footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer a{

    color:white;

    margin-left:20px;

}

/* ===========================
ANIMATIONS
=========================== */

.service,
.gallery img,
.about-image img,
.hero-right img,
.btn-dark{

    transition:.35s;

}

.hero-right img:hover{

    transform:translateY(-10px);

}

.gallery img:hover{

    box-shadow:0 30px 60px rgba(0,0,0,.2);

}

/* ===========================
MOBILE
=========================== */

@media(max-width:1000px){

.hero-grid,
.about-grid,
.contact-grid{

grid-template-columns:1fr;

}

.hero{

background:var(--background);

}

.hero-left{

order:2;

text-align:center;

}

.hero-right{

order:1;

}

.hero-left h1{

font-size:54px;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery{

grid-template-columns:repeat(2,1fr);

}

nav{

display:none;

}

}

@media(max-width:600px){

section{

padding:70px 0;

}

h2{

font-size:40px;

}

.hero-left h1{

font-size:42px;

}

.services-grid{

grid-template-columns:1fr;

}

.gallery{

grid-template-columns:1fr;

}

.footer{

flex-direction:column;

gap:15px;

}

.logos{

gap:25px;

}

.logos span{

font-size:24px;

}

}

/* Fade Animation */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* Active Menu */

nav a.active{
    color:#b08d57;
}

/* Mobile Menu */

.mobile-open{
    display:flex !important;
    flex-direction:column;
    position:absolute;
    top:88px;
    left:0;
    width:100%;
    background:white;
    padding:30px;
    gap:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* Hamburger */

#hamburger{
    display:none;
    cursor:pointer;
}

#hamburger span{
    display:block;
    width:28px;
    height:2px;
    background:#111;
    margin:6px 0;
}

@media(max-width:1000px){

    #hamburger{
        display:block;
    }

    nav ul{
        display:none;
    }

}