:root {
    --accent: #c68e4e;
    --dark: #1a1a1a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #fff;
    font-family: 'Lato', sans-serif;
}

a { text-decoration: none !important; }



html, body {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* Navbar Starts */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-left, .nav-right {
    flex: 1; 
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    flex: 2; 
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { background: var(--accent); color: var(--white); }

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.enquiry-btn {
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 3000;
}
.bar { width: 25px; height: 3px; background: var(--dark); transition: 0.3s; }

.slider-container {
    height: calc(120vh);
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.slider-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.navbar {
    position: fixed;   /* 🔥 CHANGE THIS */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.4s ease;
}

.navbar.hide {
    transform: translateY(-100%);
}
/* Navbar Ends */

/* Footer Starts */
.cont{
    width: 100%;
    height: 30rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}
.sec1{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.fntit{
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}
.fntit span{
    color: #c68e4e;
}
.fncont{
    font-size: .9rem;
    word-spacing: 2px;
    width: 85%;
    font-weight: 400;
    text-indent: 1rem;
}
.p1{
    font-size: 1.1rem;
    color: #8d4b00;
    margin-top: 1rem;
}
.log1{
    font-size: .85rem;
    margin-left: 1rem;
    line-height: 25px;
    text-indent: 1rem;
    color: black;
}
.log1 span.s1{margin-left: 3.6rem;}
.log1 span{margin-right: .8rem;}

.log1 a {
    position: relative;
    text-decoration: none;
    color: #000000; 
    transition: color 0.3s ease;
}

.log1 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.log1 a:hover::after {
    width: 100%;
    color: #8d4b00;
}

.log1 a:hover {
    transform: translateX(3px);
    color: #8d4b00;
}

.copy{
    text-align: center;
    font-size: .9rem;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
}
.sec2 {
    width: 20%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 5rem;
}

.alink a {
    position: relative;
    font-size: 1rem;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}

.alink a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.alink a:hover {
    color: #8d4b00;
    transform: translateX(8px); 
}

.alink a:hover::after {
    width: 100%;
    background: #8d4b00;
}
.sec3{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2rem
}
.map-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-top: 15px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 3rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    transition: 0.3s ease;
    margin-left: 2rem;
}

.social-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #8d4b00;
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 22%;
}

.social-link:hover {
    transform: translateX(5px);
}

.social-link i {
    font-size: 18px;
}

.social-link.whatsapp:hover {
    color: #25D366;
}

.social-link.instagram:hover {
    color: #E1306C;
}
/* Footer Ends */



/* Scrollbar Width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Thumb (scroll part) */
::-webkit-scrollbar-thumb {
    background: #c89b5e;
    border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #a9783f;
}

/* Mobile Menu Logo */
.mobile-logo {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.mobile-logo img {
    width: 120px;
    height: auto;
}
@media screen and (max-width: 768px) {
    /* Navbar  */
    .nav-links { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: #fff; flex-direction: column; justify-content: flex-start; padding-top: 100px; transform: translateX(100%); transition: 0.5s ease; z-index: 2500; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .nav-links.active { transform: translateX(0); }
    .hamburger { display: flex; }
    .enquiry-btn { display: none; }
    .nav-links a { display: block; text-align: center; padding: 20px 0; font-size: 1.2rem; color: var(--dark); }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-slide { padding-left: 5%; text-align: center; }
    .hero-content h1 { font-size: 2rem; }
    .logo{font-size: 1.2rem;}
    .mobile-logo {
        display: block;
    }
    .mobile-logo img{width: 100px;}
    /* Navbar Ends */
    
    /* Footer Starts */
    .cont{ display: flex; flex-direction: column; align-items: center; justify-content: center; height: auto; padding: 20px; }
    .sec1{ width: 100%; display: flex; flex-direction: column; height: auto; }
    .fncont{ width: 100%; }
    .sec2{ width: 100%; display: flex; flex-direction: column; justify-content: left; align-items: start; height: auto; padding-top: 1rem; padding-bottom: 1rem; }
    .alink{ margin-left: 3rem; }
    .sec3{ width: 100%; display: flex; flex-direction: column; height: auto; }
    .map-box{ order: 2; }
    .social-links{ margin: 0; }
    .social-link{ margin-left: 3rem; }
    .social-link:hover::after { width: 28%; }
    .log1{width: 100%;}
    /* Footer Ends */
}


