/* ===========================
   GOOGLE FONTS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600&display=swap');

/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope',sans-serif;
    background:#faf8f5;
    color:#222;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

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

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:1000;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(15px);

    transition:.4s;

}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar,
.header {
    min-height: 100px;
}

}

nav ul{

    display:flex;

    gap:45px;

}

nav a{

    color:#222;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;

}

nav a:hover{

    color:#b58a43;

}

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

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    max-width:900px;

    padding:20px;

}

.small-text{

    letter-spacing:5px;

    font-size:13px;

    margin-bottom:20px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:76px;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:600;

}

.hero-description{

    font-size:22px;

    line-height:1.8;

    margin-bottom:45px;

}

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

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    background:#b58a43;

    color:white;

    padding:18px 45px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn-primary:hover{

    background:#967032;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:18px 45px;

    border-radius:50px;

    transition:.4s;

}

.btn-secondary:hover{

    background:white;

    color:#222;

}

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

.about{

    padding:120px 8%;

}

.container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about img{

    border-radius:25px;

}

.section-tag{

    color:#b58a43;

    letter-spacing:3px;

    margin-bottom:15px;

}

.about h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    margin-bottom:25px;

}

.about p{

    line-height:1.9;

    margin-bottom:20px;

}

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

.services{

    padding:120px 8%;

    background:#fff;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading p{

    color:#b58a43;

    letter-spacing:3px;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:55px;

}

.service-grid{

    display:grid;

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

    gap:30px;

}

.card{

    background:#faf8f5;

    padding:45px;

    border-radius:20px;

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.card h3{

    font-size:28px;

    margin-bottom:20px;

}

/* ===========================
PROJECTS
=========================== */

.projects{

    padding:120px 8%;

}

.gallery{

    display:grid;

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

    gap:25px;

}

.gallery img{

    height:450px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

}

.gallery img:hover{

    transform:scale(1.03);

}

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

.contact{

    padding:120px 8%;

    text-align:center;

    background:#222;

    color:white;

}

.contact h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    margin:20px 0;

}

.contact a{

    color:#b58a43;

    font-size:24px;

}

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

footer{

    padding:40px;

    text-align:center;

    background:#111;

    color:white;

}

footer h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

.container{

grid-template-columns:1fr;

}

.service-grid{

grid-template-columns:1fr 1fr;

}

.gallery{

grid-template-columns:1fr;

}

.hero h1{

font-size:52px;

}

}

@media(max-width:768px){

.header{

padding:15px 25px;

}

nav{

display:none;

}

.hero h1{

font-size:40px;

}

.hero-description{

font-size:18px;

}

.service-grid{

grid-template-columns:1fr;

}

.logo img{

height:60px;

}

}
