*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#fff;
    color:#222;
}

header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    z-index:1000;
}

.logo{
    font-size:22px;
    font-weight:bold;
    letter-spacing:2px;
}

nav a{
    margin-left:25px;
    cursor:pointer;
    font-weight:500;
}

.section{
    display:none;
    min-height:100vh;
    padding:120px 60px;
}

.section.active{
    display:block;
}

/* HOME */
#home{
    background-size:cover;
    background-position:center;
}

.overlay{
    background:rgba(0,0,0,0.5);
    color:#fff;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay h1{
    font-size:50px;
    letter-spacing:3px;
}

.overlay p{
    margin-top:10px;
    font-size:18px;
}

/* PRODUCTS */
#products h2{
    text-align:center;
    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-grid img{
    width:100%;
    border-radius:10px;
    transition:0.4s;
}

.product-grid img:hover{
    transform:scale(1.05);
}

/* ABOUT & CONTACT */
#about, #contact{
    max-width:900px;
    margin:auto;
    text-align:center;
}

#about p, #contact p{
    margin-top:20px;
    font-size:18px;
    line-height:1.7;
}
.video-box{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.video-box iframe{
    width:80%;
    max-width:800px;
    height:450px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.contact-wrapper{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-left,
.contact-right{
    flex:1;
    min-width:300px;
}

.contact-left h3{
    margin-bottom:15px;
    font-size:22px;
}

.contact-left p{
    margin-bottom:12px;
    font-size:17px;
}

.map-box iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.enquiry-box{
    margin-top:30px;
    padding:25px;
    background:#f9f9f9;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.enquiry-box h3{
    margin-bottom:15px;
    font-size:22px;
}

.enquiry-box input,
.enquiry-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
}

.enquiry-box textarea{
    resize:none;
    height:100px;
}

.enquiry-box button{
    background:#c9a44c;   /* gold tone */
    color:#fff;
    border:none;
    padding:12px 25px;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
}

.enquiry-box button:hover{
    background:#b08e3c;
}
