html {
  scroll-behavior: smooth;
}
/* ================= LOADER ================= */
#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader {
    width: 45px;
    height: 45px;
    border: 4px solid #5D4037;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Hide loader after page loads */
#loaderOverlay.hide {
    opacity: 0;
    visibility: hidden;
}

body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f0eb;
}
/* NAVBAR ANIMATION */
body {
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
    color: #5D4037;
}

/* KEYFRAME */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Root variables */
:root{
  --container: 1100px;
}

/* Basic resets */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  -webkit-font-smoothing:antialiased;
}

/* container */
.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}

/* Header base */
.site-header{
  background:white;
  position:sticky;
  top:0;
  width: 100%;
  z-index:30;
  box-shadow:0 2px 6px rgba(15,23,42,0.05);
}
.nav {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    /* border: 1px solid red;; */
    /* width: 100%;; */

}

.nav a {
    color: #5D4037;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.6; 
}

.nav a.active,.nav a:hover {
    opacity: 1.0; 
    color: black;
}
/* Inner layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

/* Logo */
.logo{
  font-weight:700; 
  font-size:1.25rem; 
  display:flex; 
  text-align:center;
}

/* Navigation */
.nav{
  display:flex; 
  gap:18px; 
  justify-content:flex-end; 
  width:100%;
}
/* 
.nav a{
  color:#5D4037; 
  text-decoration:none; 
  font-weight:500;
}

.site-header a:hover,
.site-header a.active {
  border-bottom: 2px solid #5D4037;
} */

/* CTA Button */
.btn-primary {
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
}

.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Mobile responsive */
@media (max-width:600px){
  .nav{display:none}
  .header-inner{justify-content:space-between}
}
/* HAMBURGER BUTTON */
.hamburger {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #5D4037;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hamburger → Cross */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------
   MOBILE MENU (Vertical Dropdown)
------------------------------- */
@media (max-width: 600px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide menu by default */
    .nav {
        display: none;
        flex-direction: column !important;
        width: 100%;
        background: white;
        padding: 15px 0;
        gap: 18px;
        border-top: 1px solid #e0e0e0;
        text-align: center;
    }

    /* Show vertically when active */
    .nav.active {
        display: flex;
    }

    /* Make each link full-width centered */
    .nav a {
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: none;
        display: block;
    }

    /* Fix header layout */
    .header-inner {
        justify-content: space-between;
    }
}

/* MOBILE DROPDOWN MENU */
@media (max-width: 600px) {

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 100;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  /* Fix CTA alignment */
  #cta {
    margin-right: 0;
  }
}
/* Hide CTA on screens below 1024px (tablets & mobile) */
@media (max-width: 1024px) {
    #cta {
        display: none !important;
    }
}

/* Show CTA on laptop/desktop */
@media (min-width: 1025px) {
    #cta {
        display: inline-block !important;
    }
}

/* Footer */
/* =============================== */
/* FOOTER STYLES                   */
/* =============================== */
/* FOOTER MAIN */
.dt-footer {
  background: #5D4037; /* Rich Brown */
  color: #FFF5E1; /* Cream */
  padding: 60px 0 20px;
  margin-top: 100px;
}
.social-icons
{
  color: #FFF5E1;
}
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Footer Logo */
.footer-logo {
  font-size: 28px;
  color: #FFF5E1;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Description */
.footer-desc {
  font-size: 14px;
  color: #fbe8cb;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #f58f00; /* orange accent */
}

/* Columns */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #FFF5E1;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fbe8cb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a {
  color: #fbe8cb;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f58f00;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.footer-bottom p {
  font-size: 14px;
  color: #fbe8cb;
}

.policy-links a {
  font-size: 14px;
  color: #fbe8cb;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.policy-links a:hover {
  color: #f58f00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////////// */
.content
{
    padding-left: 20px;
    margin-top: -10px;
    margin-right: 60px;;
    font-weight: 400;
    /* border: 1px solid red;; */
}
.datas
{
    /* border: 1px solid red; */
    margin-top: -20px;;
}
h4
{
    font-size: larger;
    color:#434343;
}
h5{
    font-size: large;
        color:#6a6a6a;

}

.container p, .container li
{
        text-align: justify;         /* clean edges on both sides */
        font-size: medium;
        color: #949494;

}
h1
{
  text-align: center;
  padding-bottom: 20px;;
}
.container
{
    margin-bottom: 50px ;
}
.content a
{
    text-decoration: none;
    color: #5D4037;
}
.content a:hover
{
    color: #f58f00;
}
.document
{
  margin-left: 40px;
   margin-right: 50px;;
      box-shadow: 0px 10px 25px rgba(0,0,0,.15);
    background-color: white;
    border-radius: 15px;;
    padding:40px 50px 50px 50px;
    color:black;
}


/* =======================
   RESPONSIVE (TABLETS)
   ======================= */
@media (max-width: 992px) {

    .document {
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px 30px 40px 30px;
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    .container p,
    .container li {
        font-size: 0.95rem;
    }
}


/* =======================
   RESPONSIVE (MOBILE)
   ======================= */
@media (max-width: 600px) {

    .document {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 18px 30px 18px;
        box-shadow: 0px 5px 15px rgba(0,0,0,.10);
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 0.9rem;
    }

    .container p,
    .container li {
        font-size: 0.85rem;
        line-height: 1.45rem;
    }

    .datas {
        margin-top: -10px;
    }

    .content {
        padding-left: 10px;
        margin-right: 10px;
    }
}
