body{
margin:0;
font-family:serif;
background:#003028;
color:white;
}

a{
color:white;
text-decoration:none;
}

/* HEADER */

header{
padding:20px 60px;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
margin:0;
padding:0;
}

.logo img{
width:200px;
height:auto;
}

/* HERO */

.hero{
height:100vh;

background:
linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
),
url("../images/hero.jpg");
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;

}

.hero h2{
font-size:70px;
margin-bottom:20px;
}

.hero p{
max-width:600px;
margin-bottom:30px;
}

.hero a{
border:1px solid white;
padding:12px 30px;
border-radius:30px;
}

/* ABOUT PREVIEW */

.about-preview{
display:flex;
align-items:center;
justify-content:center;
gap:60px;

padding:100px 10%;
background:white;

}

.about-image img{
width:450px;
border-radius:20px;
}

.about-text{
max-width:500px;
}

.about-text h2{
color:#003028;
font-size:42px;
}

.about-text p{
color:#444;
line-height:1.8;
}

/* ABOUT PAGE */

.about-page{
display:flex;
flex-direction:row-reverse;
align-items:center;
justify-content:center;

gap:60px;
padding:100px 10%;
background:#003028;

}

.about-content{
max-width:600px;
}

.about-content h1{
font-size:70px;
margin-bottom:10px;
}

.about-content h3{
color:#d8b06a;
margin-bottom:30px;
}

.about-content p{
line-height:1.8;
}

/* GALLERY */

.gallery-page{
padding:80px 10%;
}

.gallery-page h1{
text-align:center;
margin-bottom:50px;
}

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

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:20px;
}

/* CONTACT */

.contact-page{
padding:120px 10%;
text-align:center;
}

.contact-page h1{
font-size:60px;
}

.contact-page p{
max-width:700px;
margin:0 auto 40px;
}

.contact-page form{
max-width:700px;
margin:auto;

display:flex;
flex-direction:column;
gap:20px;

}

.contact-page input,
.contact-page select,
.contact-page textarea{
padding:18px;
border:none;
border-radius:12px;
font-size:16px;
}

.contact-page button{
background:#d8bb6a;
color:#003028;

border:none;
border-radius:12px;
padding:18px;
font-weight:bold;
cursor:pointer;

}

.contact-details{
margin-top:60px;
}

.contact-details a{
color:#ddc6ab;
}

/* SERVICES */

.services-page{
padding:100px 10%;
text-align:center;
}

.services-page h1{
font-size:70px;
}

.services-page > p{
max-width:700px;
margin:auto;
margin-bottom:60px;
}

.service-category{
margin-top:70px;
margin-bottom:25px;
color:#d8b06a;
text-align:left;
font-size:38px;
}

.service-dropdown{
background:#ddc6ab;
color:#003028;

border-radius:18px;
margin-bottom:20px;

overflow:hidden;

box-shadow:0 5px 15px rgba(0,0,0,0.15);
transition:0.3s ease;
}

.service-dropdown[open]{
transform:translateY(-2px);
}

.service-dropdown summary{
padding:25px 30px;

cursor:pointer;

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

font-weight:bold;
font-size:22px;

list-style:none;
}

.service-dropdown summary::-webkit-details-marker{
display:none;
gap:20px;
}

.service-dropdown summary span{
font-size:18px;
color:#003028;
opacity:0.8;
font-weight:normal;
}

.service-content{
padding:0 30px 30px;
text-align:left;
line-height:1.8;
}

.service-content h4{
margin-top:20px;
margin-bottom:10px;
font-size:20px;
}

.service-content ul{
padding-left:20px;
margin-top:10px;
}

.service-content li{
margin-bottom:8px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:#ddc6ab;
color:#003028;

padding:30px;
border-radius:20px;

}

.service-card span{
display:block;
margin-top:20px;
font-weight:bold;
}

/* BRIDAL GALLERY */

.bridal-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin:40px 0 70px;
}

.bridal-gallery img{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:center;
    border-radius:18px;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.bridal-gallery img:hover{
    transform:scale(1.02);
}


/* BLOG */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:40px;
}

.blog-card{
    background:#ddc6ab;
    color:#003028;

    padding:35px;
    border-radius:20px;

    text-align:left;

    transition:0.3s ease;

    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-card h3{
    margin-top:0;
    margin-bottom:15px;
    font-size:28px;
}

.blog-card p{
    line-height:1.8;
    margin-bottom:25px;
}

.blog-card a{
    color:#003028;
    font-weight:bold;
}

/* MOBILE */

@media (max-width:768px){

header{
    padding:20px;
}
nav{
    flex-direction:column;
    gap:20px;
}
nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}
.hero h2{
    font-size:42px;
}
.about-page{
    flex-direction:column;
    text-align:center;
    padding:60px 20px;
}
.about-image img{
    width:100%;
    max-width:350px;
}
.about-content h1{
    font-size:48px;
}
.gallery-grid{
    grid-template-columns:1fr;
}
.gallery-grid img{
    height:260px;
}
.services-page h1,
.contact-page h1{
    font-size:48px;
}

.top-image{
    object-position:top;
}

.center-image{
    object-position:center;
}

.top-center{
    object-position:center 25%;
}

.bottom-center{
    object-position:center 80%;
}

.book-btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;

background:#003028;
color:rgb(221, 234, 223);

border-radius:30px;
text-decoration:none;

font-weight:bold;
transition:0.3s;
}

.book-btn:hover{
opacity:0.85;
}
.bridal-gallery{
    grid-template-columns:repeat(2,1fr);
}

.bridal-gallery img{
    height:350px;
}

.blog-grid{
    grid-template-columns:1fr;
}

.blog-card.featured{
    grid-column:span 1;
} 

.blog-header h1{
    font-size:40px;
}

.blog-content h2{
    font-size:28px;
}

.blog-content p{
    font-size:17px;
}
}

/* BLOG */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:40px;
}

.blog-card{
    background:#ddc6ab;
    color:#003028;

    padding:35px;
    border-radius:20px;

    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-card h3{
    margin-top:10px;
    font-size:30px;
}

.blog-card p{
    line-height:1.8;
    margin:20px 0;
}

.blog-card a{
    color:#003028;
    font-weight:bold;
}

.blog-tag{
    display:inline-block;
    background:#d8b06a;
    color:white;

    padding:6px 14px;
    border-radius:20px;

    font-size:13px;
    font-weight:bold;
}

@media(max-width:768px){

.blog-grid{
    grid-template-columns:1fr;
}

}

.blog-card.featured{
    grid-column:span 2;
}
.blog-card a{
    color:#b88b43;
    font-weight:bold;
}

/* BLOG ARTICLE */

.blog-post{
    padding:80px 10%;
}

.blog-header{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
}

.blog-header h1{

font-size:58px;
line-height:1.2;
margin-bottom:20px;

}

.blog-header h1 span{

font-size:34px;
font-weight:normal;
color:#d8b06a;

}

.blog-meta{

margin-top:18px;

font-size:18px;
line-height:1.8;

color:#ddc6ab;

}

.blog-hero{
    max-width:1000px;
    margin:0 auto 60px;
}

.blog-hero img{
    width:100%;
    border-radius:25px;
    display:block;
}

.blog-content{
    max-width:850px;
    margin:auto;
}

.blog-content h2{
    color:#d8b06a;
    font-size:36px;
    margin-top:60px;
    margin-bottom:20px;
}

.blog-content p{
    color:white;
    line-height:2;
    font-size:18px;
    margin-bottom:25px;
}

.back-blog{
    display:inline-block;

    margin-top:70px;
    padding:14px 30px;

    border:2px solid #d8b06a;
    border-radius:30px;

    color:#d8b06a;
    font-weight:bold;

    transition:.3s;
}

.back-blog:hover{
    background:#d8b06a;
    color:#003028;
}

.blog-image{

max-width:850px;

margin:60px auto;

}

.blog-image img{

width:100%;
display:block;

border-radius:20px;

}

.blog-list{
    margin:30px 0;
    padding-left:25px;
}

.blog-list li{
    margin-bottom:18px;
    line-height:1.9;
    font-size:18px;
}

.blog-list strong{
    color:#d8b06a;
}

.blog-content h3{
    color:#ffffff;
    font-size:26px;
    margin-top:45px;
    margin-bottom:15px;
}

.blog-button{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;

    background:#d8b06a;
    color:#003028;

    border-radius:40px;
    font-weight:bold;
    text-decoration:none;

    transition:.3s;
}

.blog-button:hover{
    opacity:.85;
}

.back-blog{
    margin-top:40px;
}