:root {
  --heading-color: #2d2a2b; /* Bigger text (headings) */
  --body-text-color: #707070; /* Smaller/regular text */
  --highlight-text: #bc6c31; /* Special text / CTA */
  --background1-color:#FEF9ED;
  --background2-color:#F0E6D8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow: auto;
}

.navbar .landing{
    color: #bc6c31;
}

section{
padding: 2rem 9%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 1rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 0.1rem 0.5rem rgb(124, 124, 124);
}

header .logo {
  height: 50px;
}

header #toggler {
  display: none;
}

header .fa-bars {
  font-size: 3rem;
  columns: #333;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: none;
}

header .navbar {
  display: flex;
  align-items: center;
  gap: 3rem; /* space between links */
}

header .navbar a {
  font-size: 1.6rem;
  color: var(--body-text-color);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}

/* hover for normal links */
header .navbar a:hover {
  color: var(--highlight-text);
}

/* style the last link (FAQ) as a button */
header .navbar a:last-child {
  background-color: var(--highlight-text);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
}

/* hover effect for button */
header .navbar a:last-child:hover {
  background-color: #a45828; /* darker shade */
  color: #fff;
}

.disclaimer {
  width: 100%;
  background: #ffcc00;  /* Yellow background */
  color: #000;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 8px 0;
  overflow: hidden;
  position: sticky;   /* Stick it just below navbar */
  top: 60px;          /* Adjust based on navbar height */
  z-index: 1000;
  white-space: nowrap;
}

.disclaimer p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* navbar ends here */


/*  hero section starts here*/

.contact {
   display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: var(--background1-color);
    justify-content: space-between;
    gap: 20px;
    
}

.contact h3{
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 100px;
}

.contact p{
  font-size: 2.5rem;
  font-weight: 10;
  color: var(--body-text-color);
  margin-bottom: 50px;
}

.contact .btn{
    font-size: 2rem;
    color:#bc6c31 ;
    border: 2px solid#bc6c31 ;
    border-radius: 50px;
    padding: 15px;
    margin-top: 40px;
    background: white;
cursor: pointer;

}

.btn:hover{
background: #bc6c31;
  color: #fff;
}


/*  hero section ends here */



/*  section1 starts here */

.section1{
  background: var(--background2-color);
  padding: 50px;

}

.content h3{
  font-size: 7rem;
  font-weight: 600;
}

.address{
  margin: 50px;
}

.address ul{
  font-size: 2rem;
  color: var(--body-text-color);
  font-weight: lighter;
  padding-left: 40px;
}
.email{
  margin: 50px;
}

.email a{
font-size: 2rem;
  color: var(--highlight-text);
  font-weight: lighter;
}

.email p{
  font-size: 2rem;
  font-weight: lighter;
  color: var(--body-text-color);
}

.phone{
  margin: 50px;
}

.phone a{
  font-size: 2rem;
  color: var(--highlight-text);
  font-weight: lighter;
}

.phone p{
  font-size: 2rem;
  font-weight: lighter;
  color: var(--body-text-color);
}

.section1 .btn{
    font-size: 2rem;
  color: #bc6c31;
  border: 2px solid #bc6c31;
  border-radius: 50px;
  padding: 15px 25px;
  background: white;
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start; 
  margin: 50px;
  
}

.btn:hover{
background: #bc6c31;
  color: #fff;
}

/*  section1 ends here */



/* Footer */
.site-footer {
  background: #f6f2e9;
  padding: 40px 10%;
  font-family: 'Poppins', sans-serif;
  color: #444;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.footer-logo img {
  max-width: 150px;
  
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  font-size: 1.4rem;
}

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

.footer-links ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.footer-links ul li a:hover {
  color: #bc6c31;
}

.footer-contact {
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1.2rem;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  font-size: 1.5rem;
  margin: 0 8px;
  color: #000;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.social-icons a:hover {
  background: #bc6c31;
  color: #fff;
}

hr {
  border: none;
  border-top: 1px solid #aaa;
  margin: 20px 0;
}

.footer-bottom {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  line-height: 1.6;
}

.footer-bottom strong {
  color: #bc6c31;
}

.footer-bottom-links {
  margin-top: 10px;
}

.footer-bottom-links a {
  color: #bc6c31;
  text-decoration: none;
  margin: 0 8px;
}

.footer-bottom-links a:hover {
  color: #000;
}

.site-footer {
  margin-top: auto;
}















/* media queries */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 2rem;
  }
}


@media (max-width: 768px) {
  header .fa-bars {
    display: block;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #eee;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    flex-direction: column;
  }

  header #toggler:checked ~ .navbar {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  header .navbar a {
    margin: 0; /* no gap at all */
    padding: 0.5rem;
    background: #fff;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    width: 90%; /* nice wide buttons */
    text-align: center;
    display: block;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 2rem;
  }
}


/* ================= CONTACT: MEDIA-QUERY FIXES ONLY ================= */

/* Tablet: keep disclaimer flush under fixed header (no gap) */
@media (min-width: 769px) and (max-width: 992px){
  /* menu stays above */
  header { z-index: 3000 !important; }

  /* disclaimer sits just under header (your working value) */
  .disclaimer{
    position: sticky !important;
    top: 80px !important;           /* header height on tablet */
    margin-top: 0 !important;
    z-index: 1200 !important;       /* below dropdown/nav */
  }

  /* small spacing + tidy section */
  .section1{ padding: 30px 9% !important; }
  .address, .email, .phone{ margin: 18px 0 !important; }

  /* buttons – balanced size on tablet */
  .btn, .section1 .btn{
    font-size: 1.7rem !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
  }
}

/* Mobile (≤768px): lock navbar + disclaimer together and center buttons */
@media (max-width: 768px){
  /* ensure dropdown overlays disclaimer */
  header .fa-bars{ display: block !important; }
  header .navbar{
    position: absolute !important;
    top: 100%; left: 0; right: 0;
    background:#eee !important;
    border-top: 1px solid rgba(0,0,0,.1) !important;
    z-index: 3500 !important;
    clip-path: polygon(0 0,100% 0,100% 0,0 0) !important;
    flex-direction: column !important;
  }
  header #toggler:checked ~ .navbar{
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%) !important;
  }

  /* disclaimer directly under header (your working value) */
  .disclaimer{
    position: sticky !important;
    top: 65px !important;           /* header height on mobile */
    margin-top: 0 !important;
    z-index: 1200 !important;       /* under the dropdown */
  }

  /* push content just enough so it never peeks under bars */
  body{ padding-top: 100px !important; } /* ~65 header + ~35 disclaimer */

  /* stack & tighten details */
  .section1{
    min-height: auto !important;
    height: auto !important;
    padding: 20px 9% 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;    /* stop last-child margin collapse */
  }
  .section1 .content{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .address, .email, .phone{ margin: 12px 0 !important; }

  /* buttons: centered, pill-shaped, consistent */
  .btn, .section1 .btn{
    display: block !important;
    width: fit-content !important;
    margin: 16px auto !important;
    font-size: 1.6rem !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
  }
}

/* Very small phones (≤450px): fine tune */
@media (max-width: 450px){
  html{ font-size: 55%; }
  header{ padding: 1rem 5% !important; }

  .disclaimer{ top: 55px !important; }     /* slightly shorter header */
  body{ padding-top: 95px !important; }     /* keep content below bars */

  .btn, .section1 .btn{
    font-size: 1.4rem !important;
    padding: 8px 18px !important;
  }
}

/* Tablet (≤992px) */
@media (max-width: 992px){
  .contact .hero-image{
    display: none;
    
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px){
  .contact .hero-image{
    display: none !important;
  }
}

/* Very small phones (≤450px) */
@media (max-width: 450px){
  .contact .hero-image{
    display: none;
  }
}

/* ===== CONTACT: mobile/tablet – keep disclaimer flush under navbar ===== */

/* Small phones */
@media (max-width: 450px){
  header{ position: fixed !important; top:0; left:0; right:0; z-index:3000 !important; }
  .disclaimer{
    position: fixed !important;
    top: 65px !important;          /* match real header height on tiny phones */
    margin: 0 !important;
    z-index: 2500 !important;
  }
  body{ padding-top: 90px !important; }     /* 55 (header) + ~35 (disclaimer) */
}

/* Phones */
@media (min-width: 451px) and (max-width: 599px){
  header{ position: fixed !important; top:0; left:0; right:0; z-index:3000 !important; }
  .disclaimer{
    position: fixed !important;
    top: 85px !important;          /* your confirmed good value */
    margin: 0 !important;
    z-index: 2500 !important;
  }
  body{ padding-top: 100px !important; }    /* 65 + ~35 */
}

/* Large phones / small tablets */
@media (min-width: 600px) and (max-width: 768px){
  header{ position: fixed !important; top:0; left:0; right:0; z-index:3000 !important; }
  .disclaimer{
    position: fixed !important;
    top: 85px !important;          /* slightly taller header in this band */
    margin: 0 !important;
    z-index: 2500 !important;
  }
  body{ padding-top: 105px !important; }    /* 70 + ~35 */
}

/* Tablet */
@media (min-width: 769px) and (max-width: 992px){
  /* keep behavior same as other pages */
  .disclaimer{
    position: sticky !important;
    top: 85px !important;          /* tablet header height you used */
    margin: 0 !important;
    z-index: 1200 !important;
  }
}

/* Safety: remove any accidental spacing that can create a white strip */
@media (max-width: 768px){
  .disclaimer{ border-top: 0 !important; }
  header{ margin-bottom: 0 !important; }
}

/* ================= CONTACT: smaller headings on phones ================= */

/* Phones & small tablets (≤768px) */
@media (max-width: 768px){
  /* Hero heading */
  .contact h3{
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.8rem !important;
  }
  .contact p{
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
  }

  /* Section titles: Address / Email / Phone */
  .section1 h3{
    font-size: 1.9rem !important;
    line-height: 1.25 !important;
    margin: 0.6rem 0 !important;
  }

  /* Body text + links inside section */
  .section1 p,
  .section1 a,
  .section1 ul li{
    font-size: 1.35rem !important;
    line-height: 1.6 !important;
  }
}

/* Very small phones (≤450px) */
@media (max-width: 450px){
  .contact h3{
    font-size: 2rem !important;
    margin-bottom: 0.6rem !important;
  }
  .section1 h3{
    font-size: 1.7rem !important;
    margin: 0.5rem 0 !important;
  }
  .section1 p,
  .section1 a,
  .section1 ul li{
    font-size: 1.25rem !important;
  }
}

