/* Basic Reset */


/*:root {*/
/*  --cream: #F5F5DC;*/
/*  --light-cream: #F8F4E9;*/
/*  --dARK oRANNGE rgb(171, 103, 39)*/
/*  --dark-brown: #3E2723;*/
/*  --accent: #f9ddbf;*/
/*  --safari-green: #556B2F;*/
/*  --highlight-gold: #C9B037;*/
/*  --transition-speed: 0.4s;*/
/*}*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #F8F4E9; /*light-cream: */
  margin: 0;
  margin-top: 38px;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  width: 20%;
  height: auto;
}
/*Backgrounds*/
.bg-cream{
    background: rgb(248,244,233);
}
/* FROSTED‑GLASS BUTTONS */
.btn-primary {
  position: relative;
  padding: 0.75rem 1.75rem;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.6);
  color: #F8F4E9; /*light-cream: */
  font-weight: 600;
  text-decoration: none;
  transition: 
    background 0.3s ease, 
    color 0.3s ease, 
    transform 0.2s ease;
}

.btn-primary:hover {
  background: rgba(62,39,35,0.8);/* Dark Brown */
  color: #F8F4E9; /*light-cream: */
  transform: translateY(-3px);
}


/*### navbar css*/
/*```css*/
/* Base navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248,244,233,0.8);
  transition: top 0.3s ease;
  z-index: 1000;
}
.navbar--hidden {
  top: -80px; /* adjust to your navbar height */
}

.navbar-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.icon-style {
  width: 80px;
  height: 60px;
  margin-right: 0.5rem;
}
.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
}

/* Nav Menu */
.navbar-collapse {
  display: flex;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  margin-left: 1.5rem;
}
.nav-link {
    text-decoration: none;
    font-size: 1rem;
    color: rgba(62,39,35,0.8);/* Dark Brown */
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: rgb(249,221,191); /* peach ACCENT */
}
.nav-link.active {
  color: rgb(171,103,39); /* Dark Orange */
  font-weight: 600;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex-direction: column;
  }
  .navbar-collapse.active {
    max-height: 300px; /* adjust as needed */
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
  }
  .nav-item {
    margin: 0;
    border-top: 1px solid #eee;
  }
  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
  }
}
/*``` */



/*NAVBAR CSS*/
/*    .navbar {*/
      /*background-color: #3E2723; Dark Brown */
/*      padding: 1rem 2rem;*/
/*      color: #fff;*/
/*      position: sticky;*/
/*      top: 0;*/
/*      width: 100%;*/
/*      transition: top 0.3s;*/
/*      z-index: 999;*/
/*    }*/
    
/*    .navbar-container {*/
/*      display: flex;*/
/*      justify-content: space-between;*/
/*      align-items: center;*/
/*    }*/
    
/*    .navbar-brand {*/
/*      font-size: 1.5rem;*/
/*      font-weight: bold;*/
/*      color: #ffffff;*/
/*    }*/
    
/*    .nav-menu {*/
/*      list-style: none;*/
/*      display: flex;*/
/*      gap: 1.5rem;*/
/*    }*/
    
/*    .nav-item .nav-link {*/
/*      color: #ffffff;*/
/*      text-decoration: none;*/
/*      transition: color 0.3s ease;*/
/*      float: left;*/
/*    }*/
    
/*    .nav-item .nav-link:hover {*/
/*      color: #ffa500;*/
/*    }*/
    
    /* Hamburger menu for mobile */
/*    .menu-toggle {*/
/*      display: none;*/
/*      flex-direction: column;*/
/*      cursor: pointer;*/
/*      gap: 0.3rem;*/
/*    }*/
    
/*    .bar {*/
/*      width: 25px;*/
/*      height: 3px;*/
/*      background-color: white;*/
/*      transition: all 0.3s ease;*/
/*    }*/
    
    /* Responsive */
/*    @media (max-width: 768px) {*/
/*      .menu-toggle {*/
/*        display: flex;*/
/*      }*/
    
/*      .nav-menu {*/
/*        position: absolute;*/
/*        top: 70px;*/
/*        left: 0;*/
/*        width: 100%;*/
/*        background-color: #0d1b2a;*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        display: none;*/
/*      }*/
    
/*      .nav-menu.active {*/
/*        display: flex;*/
/*      }*/
    
/*      .nav-item {*/
/*        padding: 1rem 0;*/
/*      }*/
/*    }*/
    
    
/*FOOTER CSS*/
/* footer.css */
.ftr-section {
  background-color: #3E2723;
  color: #fff;
  padding: 3rem 1rem 2rem;
  font-size: 0.95rem;
}
.ftr-container {
  max-width: 1200px;
  margin: 0 auto;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .ftr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .ftr-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ftr-brand .ftr-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ftr-text {
  line-height: 1.5;
  margin-bottom: 1rem;
}
.ftr-social-link {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ftr-social-link:hover {
  color: #ffb74d;
}

.ftr-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.ftr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ftr-list li {
  margin-bottom: 0.5rem;
}
.ftr-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ftr-link:hover {
  color: #ffb74d;
}

.ftr-contact-list li i {
  margin-right: 0.5rem;
}

.ftr-divider {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  opacity: 0.2;
  margin-bottom: 1rem;
}

.ftr-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 576px) {
  .ftr-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.ftr-copy {
  margin: 0;
}
.ftr-credit {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.ftr-credit:hover {
  color: #ffb74d;
}

