*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#e8e3d8;
}

/* HEADER */
header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0px 60px;
}

.left-menu a,
.right-menu a{
    text-decoration:none;
    color:#000;
    font-size:14px;
    margin:0 15px;
    letter-spacing:1px;
}

/* Logo center */
.logo{
    text-align:center;
}

/* HERO IMAGE */
.hero{
    text-align:center;
    margin-top:40px;
}

.hero img{
    width:100%;
    max-width:700px;
}

/* BUTTON SECTION */
.buttons{
    text-align:center;
    margin:40px 0 60px 0;
}

.btn{
    padding:15px 40px;
    margin:0 15px;
    border:none;
    background:#000;
    color:#fff;
    cursor:pointer;
    font-weight:bold;
    letter-spacing:1px;
    transition:0.3s;
}

.btn:hover{
    background:#333;
}



.two-column{
    display:flex;
    justify-content:space-between;
    gap:60px;
    padding:80px 8%;
    background:#e8e3d8;
}

.column{
    flex:1;
}

.line{
    height:1px;
    background:#000;
    margin-bottom:30px;
}

.column h3{
    font-size:22px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.column p{
    font-size:38px;
    line-height:1.2;
    font-weight:400;
    margin-bottom:40px;
}

/* Responsive */
@media(max-width:768px){
    .two-column{
        flex-direction:column;
        gap:50px;
    }

    .column p{
        font-size:28px;
    }
}



.video-section{
    width:100%;
    height:100%;
  
  
}

.video-section video{
    width:100%;
    height:100%;
    object-fit:cover;
}



.about-section{
    padding:100px 8%;
    background:#f5f2ea;
}

.about-container{
    display:flex;
    align-items:center;
    gap:60px;
    max-width:1200px;
    margin:auto;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}

.about-content{
    flex:1;
}

.about-content h5{
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:20px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:20px;
    color:#444;
}

.about-btn{
    display:inline-block;
    padding:12px 30px;
    background:#000;
    color:#fff;
    text-decoration:none;
    letter-spacing:1px;
    transition:0.3s;
}

.about-btn:hover{
    background:#333;
}

/* Responsive */
@media(max-width:900px){
    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:16px;
    }
}





.our-work{
    padding:100px 8%;
    background:#f4f1ea;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#555;
}

.work-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
}

.work-card{
    background:#fff;
    overflow:hidden;
    border-radius:10px;
    transition:0.4s;
    cursor:pointer;
}

.work-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.work-card h3{
    padding:20px;
    font-size:18px;
    text-align:center;
}

.work-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* Tablet */
@media(max-width:992px){
    .work-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .work-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }
}





.our-team{
    padding:100px 8%;
    background:#f5f2ea;
}

.team-title{
    text-align:center;
    margin-bottom:60px;
}

.team-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.team-title p{
    font-size:18px;
    color:#555;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:40px;
}

.team-card{
    background:#fff;
    text-align:center;
    padding:25px;
    border-radius:12px;
    transition:0.4s;
    cursor:pointer;
}

.team-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;
}

.team-card h3{
    font-size:20px;
    margin-bottom:8px;
}

.team-card span{
    font-size:15px;
    color:#777;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* Tablet */
@media(max-width:992px){
    .team-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .team-grid{
        grid-template-columns:1fr;
    }

    .team-title h2{
        font-size:32px;
    }
}









.monu-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    background:#e8e3d8;
    overflow:hidden;
    padding:60px 6%;
}

/* Left Menu */
.monu-left-menu{
    position:absolute;
    top:60px;
    left:6%;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.monu-left-menu a{
    text-decoration:none;
    color:#000;
    font-size:22px;
}

/* Right Menu */
.monu-right-menu{
    position:absolute;
    top:60px;
    right:6%;
    text-align:right;
}

.monu-right-menu a{
    display:block;
    text-decoration:none;
    color:#000;
    font-size:22px;
    margin-bottom:10px;
}

.monu-social{
    margin:15px 0;
}

.monu-social span{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:8px 12px;
    margin-left:5px;
    font-size:14px;
}

.monu-newsletter{
    background:#bdb7af;
    border:none;
    padding:10px 20px;
    font-size:14px;
    cursor:pointer;
}

/* Center Image */
.monu-center-image{
    text-align:center;
}

.monu-center-image img{
    max-height:80vh;
    width:auto;
}

/* Big Text */
.monu-big-text{
    position:absolute;
    bottom:120px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
}

.monu-big-text h1{
    font-size:160px;
    font-weight:900;
    line-height:0.9;
}

.monu-big-text h2{
    font-size:90px;
    font-weight:400;
}

/* Footer */
.monu-footer-left{
    position:absolute;
    bottom:20px;
    left:6%;
    font-size:14px;
}

.monu-footer-right{
    position:absolute;
    bottom:20px;
    right:6%;
    font-size:14px;
}

/* Responsive */
@media(max-width:1200px){
    .monu-big-text h1{ font-size:100px; }
    .monu-big-text h2{ font-size:60px; }
}

@media(max-width:768px){

    .monu-left-menu,
    .monu-right-menu{
        position:static;
        text-align:center;
        margin-bottom:30px;
    }

    .monu-hero{
        padding:40px 5%;
        text-align:center;
    }

    .monu-big-text{
        position:static;
        transform:none;
        margin-top:30px;
    }

    .monu-big-text h1{ font-size:60px; }
    .monu-big-text h2{ font-size:36px; }

    .monu-footer-left,
    .monu-footer-right{
        position:static;
        text-align:center;
        margin-top:20px;
    }
}






