.mobile{display:none}

.desktop{display:block}



@font-face {
  font-family: 'Libre Caslon Condensed';
  src: url('../fonts/LibreCaslonCondensed[wdth,wght].woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
  letter-spacing:-2px;
}

@font-face {
  font-family: 'Libre Caslon Condensed';
  src: url('../fonts/LibreCaslonCondensed-Italic[wght].woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  letter-spacing:-2px;
}


@font-face {
  font-family: 'Libre Caslon Text';
  src: url('../fonts/LibreCaslonCondensed[wdth,wght].woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
  letter-spacing:-2px;
}

@font-face {
  font-family: 'Libre Caslon Text';
  src: url('../fonts/LibreCaslonCondensed-Italic[wght].woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  letter-spacing:-2px;
}


@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-VariableFont_wght.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}


/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
    width: 0px;           /* scrollbar width */
    height: 2px;          /* horizontal scrollbar width */
}

*::-webkit-scrollbar-track {
    background: transparent;  /* track background stays transparent */
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.4); /* thumb color */
    border-radius: 0px;                /* rounded edges */
    border: 0px solid transparent;     /* optional spacing */
}

/* Firefox */
* {
    scrollbar-width: thin;                /* thin scrollbar */
    scrollbar-color: rgba(0,0,0,0.4) transparent;  /* thumb + track */
}



header-wrapper {
  display: flex;
  flex-direction: column;
}

 /* NAVIGATION */
 .header {
  position: fixed;
    top: 0;
    left: 0;
  transition: all 0.3s ease;
   width: 100%;
  z-index: 9;
}

.nav-overlay {
/* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    z-index: 9999;
    padding: 20px 0px;    
    display: flex;
    align-items: center;
    box-sizing: border-box;
    
    /* Default: Glass Transparent */
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    
    /* Smooth transition for when we change the background */
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border 0.5s ease;  
      background-color: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);               /* The blur effect */
  -webkit-backdrop-filter: blur(10px);

}
.header.sticky {
   background-color: rgba(255, 255, 255, 1);
   border-bottom: 1px solid rgba(0,0,0, 0.2);
   box-shadow: 1px 1px 15px rgba(0,0,0, 0.2);
}


.nav-inner {
	width:100%;
    margin: 0 auto;           /* center content */
	padding-left:30px;
	padding-right:30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-link-item {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px;
  line-height: 13.48px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  font-family: "Manrope", serif;
  color: #380000;
}

.nav-link-item.active { color: var(--primary) ; border-bottom: 2px solid var(--primary); }

.has-dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
}

.has-dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;

}
.has-dropdown{
  position: relative;
}
.has-dropdown .dropdown-menu{
     position: absolute;
     top: 40px;
     left: auto;
    right: 0;
     background-color: #FFF7EC;
     border-radius: 8px;
     width: max-content;
     overflow: hidden;
     padding:0px 0px;
     box-shadow: 1px 1px 15px rgba(0,0,0, 0.2);
     transition: max-height 0.5s ease;
     -webkit-transition: max-height 0.5s ease;
     -moz-transition: max-height 0.5s ease;
     -ms-transition: max-height 0.5s ease;
     -o-transition: max-height 0.5s ease;
}
.has-dropdown .dropdown-menu a{
    font-size: 16px;
    color: #380000;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 30px;    
    display: flex;
    align-items: center;
}
.has-dropdown .dropdown-menu a:hover{
     background-color: #885C30;
       color: #FFF;
}
.has-dropdown .dropdown-menu a::before{
    content: '';
    width: 8px;
    height: 8px;
    background-color: #714B25;
    margin-right:20px;
    rotate: 44deg;
}
.dropdownHeading{
   font-size: 16px;
    color: #FFF;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px 20px 15px;
    border-bottom: 1px solid #957846;
    margin-bottom: 0px;
    background-color: #957846;
}
.dropdownHeading a{
padding: 0px 0px 0px  !important;
color: #FFF  !important;
}
.dropdownHeading a::before{
    background-color:transparent !important;
    display: none;
}
.dropdownHeading a:hover{
    background-color:transparent !important;
}
.multipleItem{
        margin-top: 15px;
    margin-bottom: 15px;
}
.multipleItem a {
}
.has-dropdown .dropdown-menu a:hover::before{
     background-color: #FFF;
}
.arrow {
  margin-left: 10px;
}


/* MOBILE MENU TOGGLE */
.menu-toggle {margin-left:20px; background: none; border: none; cursor: pointer; padding: 5px;  }
.bar { width: 25px; height: 2px; background-color:  #380000; margin: 0px 0; transition: 0.4s;  }




.nav-links-wrapper {
    display: flex;
    align-items: center;
}

/* Force the inner links into a single row */
.nav-links-inner {
    display: flex;
    flex-direction: row; /* Force horizontal */
    flex-wrap: nowrap;   /* Prevent jumping to second line */
    align-items: center;
    gap:5px;           /* Adjust spacing between links */
}

.header-wrapper {
    display: flex;
    
    flex-direction: column;   /* stack vertically */
}

.top-login {
	text-transform: uppercase;
    display: flex;
    font-size:18px;
    text-decoration-color: #380000 !important;
    text-decoration:underline;
    justify-content: flex-end; /* push to right */
    margin-bottom: 8px;
    font-weight:500;
	font-family: "Manrope", serif;
	color:#380000;
}

.top-login a{
		margin-left: 20px;

	 color:#380000;
     display: flex;
     align-items:center
}
.top-login a img{
    margin-left:10px;
        width: 24px;
    height: 24px;
}

.desktop-menu-toggle {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  gap: 6px;
  transition: 0.3s ease;
  outline: none;
}

.remove-scrolling { 
  height: 100%; 
  overflow: hidden; 
} 



//* ============================================================
   MAIN FOOTER - FINAL CSS
   ============================================================ */
.main-footer {
    background-color: #121212;
    padding-top: 100px 60px 40px 60px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    position: relative;
    z-index: 100;
    width: 100%;
}

.footer-container {
    padding:100px 0px 50px;
    display: flex;
    justify-content: space-between;
}

/* Column Width Logic */
.footer-col {
    flex: 1;
}

.col-branding {
  /*  flex:1.3; 
    padding-right: 50px; */
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-desc {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

/* Titles: 20px, 500 Weight, White */
.footer-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-container .footer-title a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    /* font-size: 16px; */
    transition: color 0.3s ease;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color:rgba(255,255,255,0.8);
}


/* BOTTOM ROW */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:40px 0px 80px;
}

.copyright {
    font-size: 16px;
    color: #745F48;
}
.copyright span {
	text-transform: uppercase;
}
.social-icons {
    display: flex;
    gap:10px;
	display: none;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 1;
}


#main-wrapper {
    transition: transform 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    will-change: transform;
    /* This ensures the container expands to fit the footer inside */
    height: auto; 
}

.main-footer {
    /* Ensure footer doesn't try to be full height like sections */
    height: auto !important; 
    display: block !important;
    background:url("../images/footer-bg.png");
    background-size: cover;
}




/* Hide links by default */
.footer-links {
  /* max-height: 0; */
  margin-top:10px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Active column */
.footer-col.active .footer-links {
  max-height: 1000px; /* large enough to fit content */
}

/* Make title clickable */
.footer-title {
  cursor: pointer;
  position: relative;
  /* padding-right: 25px; */
  margin: 0px 0px 30px 0px;
}

/* + icon */
/* .footer-title::after {
  content: "+";
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
} */

/* Change + to − when open */
.footer-col.active .footer-title::after {
  content: "−";
}





@media (max-width: 1024px) {


   .mobile { display: block !important; }
    .desktop { display: none !important; }

    /* --- 1. Global & Header --- */
    .nav-overlay {
		width: 100%;
		height: 78.7105484008789px;
		justify-content: space-between;
		padding-top: 20px;
		padding-right: 24px;
		padding-bottom: 20px;
		padding-left: 24px;
		angle: 0 deg;
		opacity: 1;
    }

    .nav-inner {

        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
		padding-right:0;
		padding-left:0;
    }

    .logo img {
        max-height: 35px; /* Scaled for mobile */
    }

    .top-login {
        display: none; /* Hidden to save space */
    }

    /* Mobile Menu Drawer Overlay */
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Start hidden off-screen */
        width: 100%;
        height: 100dvh;
        background-color: #380000; /* Deep Red-Brown Background for high-end feel */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 9998;
        display: none;
    }

    .nav-links-wrapper.active {
        right: 0; /* Slide in smoothly */
        display: block;
        overflow: scroll;
    }

    /* Layout inside the drawer */
    .nav-links-wrapper .d-flex, 
    .nav-links-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 20px !important; /* Elegant vertical spacing */
        width: 100%;
        padding: 30px;
    }

    /* Premium Typography for Links */
   .nav-link-item {
		text-transform: uppercase;
        font-size: 18px;
        font-weight: 400;
        color: #FFF;
        text-decoration: none;
        letter-spacing: 1px;
        line-height: 1;
        opacity: 1;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .nav-link-item:active {
    }

    /* --- 2. 2-Bar Hamburger Menu Toggle --- */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 56.306251525878906px;
		height: 38.710548400878906px;
		angle: 0 deg;
		opacity: 1;

        
        gap: 12px; /* Precise gap for 2 bars */
        z-index: 10001; /* Above the overlay */
        cursor: pointer;
        background: none !important;
        border: none !important;
        outline: none !important;
        padding: 0;
        margin-left: auto;
        -webkit-tap-highlight-color: transparent;
    }

    /* The 2 Bars Styling */
    .bar {
        display: block;
        width: 39px;
        height: 2px;
        background-color: #380000 !important;
		transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-radius: 2px;
        margin: 0 !important;
    }

   
   
   /* Change bar color to Cream when menu is open */
    .menu-toggle.active .bar {
        background-color: #FFF7EC !important; 
    }

    /* The "X" intersection */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
    }


}



