@font-face {
    font-family: 'Georgia';
    src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1736780519/georgia-webfont_msexsm.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial';
    src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1741192542/ARIAL_bq68bn.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Apply the fonts globally or selectively */
body {
    font-family: 'Arial', 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}

@font-face {
  font-family: 'Georgia';
  src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1736780519/georgia-webfont_msexsm.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial';
  src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1741192542/ARIAL_bq68bn.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: 'Arial', 'Georgia', serif;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
    margin: 0;
    font-family: Georgia, sans-serif;
    background-color: #fff;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #fff;
    max-width: 1200px;
    margin-left: 70px;
    font-weight: bold;
    font-family: 'Georgia', sans-serif;
    margin-top: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Georgia', sans-serif;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    margin-left: 40px;
    margin-top: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    color: #333;
    text-decoration: underline;
}

/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 0;
}

.main-nav ul li {
    margin-right: 50px;
    font-family: 'Georgia', sans-serif;
}

.main-nav ul li a {
    text-decoration: none; /* Remove underlines */
    color: #333;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Georgia', sans-serif;
    margin-bottom: 200px !important;
}

.main-nav ul li a:hover {
    text-decoration: underline;
}


/* Hamburger Menu Icon */
.menu-toggle {
    cursor: pointer;
    width: 40px; /* Increase clickable area width */
    height: 30px; /* Increase clickable area height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-top: 20px;
}

.sidebar-nav.active {
    right: 0;
}

/* Close Button */
.close-btn {
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transform: scaleX(-1);
    transition: transform 0.4s ease-in-out;
    margin-top: -10px;
}

/* Sidebar Menu */
.sidebar-menu,
.sidebar-additional {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    font-size: 25px;
    margin-top: 20px;
    font-weight: bold;
    font-family: 'Georgia', sans-serif; 
}

.sidebar-menu {
    transition: right 0.4s ease-in-out;
}

.sidebar-menu li,
.sidebar-additional li {
    /* No border lines */
}

.sidebar-menu li a,
.sidebar-additional li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none; /* Remove underlines */
    font-family: 'Georgia', sans-serif; 
    margin-bottom: 0px;
}

.sidebar-additional li a {
    text-decoration: underline;
}

.sidebar-menu li a:hover {
    background-color: #f0f0f0;
    text-decoration: none; /* Ensure underlines don't appear on hover */
}

/* Icons on the Left */
.icon {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
    margin-top: 0px !important;
}

/* Additional Items Styling */
.sidebar-additional li a {
    font-size: 18px !important;
    color: #000;
    margin-top: -30px !important;
}

.sidebar-additional li a:hover .icon {
    opacity: 0.7;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 900;
}

#overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  
  /* Navigation Items */
  .main-nav ul li {
    margin-left: 20px;
    white-space: nowrap;
  }

  .main-nav ul li a {
    font-size: 14px;
  }

  /* Hide specific nav items on mobile */
  .main-nav ul li:nth-child(1),
  .main-nav ul li:nth-child(3) {
    display: none;
  }

  /* Logo */
  .logo {
    font-size: 24px;
    margin-left: 5px;
    white-space: nowrap;
  }

  /* Header container */
  header {
    margin-left: -5px;
    white-space: nowrap;
  }

  /* Sidebar Navigation */
  .sidebar-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 340px;
  }

  .sidebar-menu,
  .sidebar-additional {
    font-size: 20px;
  }

  /* Menu toggle (hamburger icon) */
  .menu-toggle {
    margin-left: -25px !important;
    white-space: nowrap;
    overflow-x: hidden !important; /* This line has no effect on inline elements like <li> */
  }

  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
}

/* Footer Wrapper */
.footer-wrapper {
    overflow: hidden; /* To contain floated elements and negative margins */
    box-sizing: border-box;
}

/* Info Section */
.info-section {
    padding: 2rem 1rem;
    background-color: #d0ccc4; /* Gray background */
    margin-bottom: -2rem; /* Overlaps the next section */
    border-radius: 15px 15px 0 0; 
    color: #fff;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    box-sizing: border-box;
}

/* Info Container */
.info-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/* Logo in Footer Info */
.info-logo img {
    max-width: 250px;
    color: #d0ccc4 !important;
}

/* Info Links */
.info-links {
    color: #000;
}

.info-links ul {
    list-style: none;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-weight: normal;
    color: inherit;
}

.info-links ul li {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    color: inherit;
    font-weight: normal !important;
    font-family: Georgia, sans-serif;
}

.info-links ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.info-links ul li a:hover {
    text-decoration: underline;
    color: inherit;
}

.info-links strong {
    font-weight: bold;
    color: inherit;
}

.email {
    text-transform: none !important; 
}

/* Hide mobile headers on desktop */
.mobile {
    display: none;
}

/* Hide desktop version on mobile and show mobile headers */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
        text-decoration: underline;
        text-decoration-color: #000; /* Ensuring underline color */
    }
    .info-logo img {
        max-width: 150px;
    }
}

/* Divider Line */
.footer-divider-wrapper {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3; /* Increase z-index */
    background-color: #000; /* Background for the divider wrapper */
    padding: 0rem 0; /* Add some vertical padding */
}

.footer-divider {
    width: 90%; /* Slightly less than 100% for a margin */
    height: 1px; /* Set a visible thickness */
    background-color: #000;
    margin: 0 auto; /* Center the divider */
    display: block;
    margin-top: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    padding: 2rem 1rem; 
    background-color: #d0ccc4;
    font-family: Georgia, serif;
    font-weight: normal;
    text-transform: none;
    margin-top: -1rem;
    position: relative;
    z-index: 2;
    color: #000;
}

.newsletter-section h3 {
    font-family: Georgia, serif;
    font-size: 2rem;
    text-transform: none;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.newsletter-section p {
    margin-bottom: 1rem; 
    font-size: 1.3rem;
    color: #000;
    text-align: center;
}

.newsletter-section form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-section form input {
    display: inline-block;
    padding: 10px;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: bold;
    width: 15%;
    text-align: center; 
    border: 1px solid #333;
    border-radius: 5px;
    color: #000;
    margin-right: -5px;
}

/* Subscribe button (also hosts spinner) */
#subscribeBtn {
  position: relative;
  background-color: #efbe35;
  color: #000;
  padding: 10px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, width 0.3s ease;
  width: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#subscribeBtn:hover:not(.loading) {
  background-color: #d4a932;
}

#subscribeBtn.loading {
  color: transparent;
  pointer-events: none;
}

#subscribeBtn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  border-radius: 50% !important;
}

/* Thank-you message (hidden by default) */
#thankYouMessage {
  display: none;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1.5rem;
  animation: fadeIn 0.5s ease-in-out forwards;
}

/* Keyframes */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Final Footer */
.final-footer {
  background-color: #000; 
  color: #ffffff; 
  font-size: 0.8rem; 
  font-family: Arial, serif; 
  font-weight: normal;
  text-transform: none;
  border-radius: 15px 15px 0 0; /* Rounded top corners */
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  padding: 1rem 3rem; /* Adjusted padding for left/right spacing */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left grouping: contains privacy links and copyright */
.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Privacy links */
.footer-links a {
  color: inherit;
  text-decoration: underline;
}

/* Optional: spacing between privacy links */
.footer-links a + a {
  margin-left: 1rem;
}

/* Social media icons (right side) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Mobile responsiveness: stack everything vertically and re-order them */
@media (max-width: 768px) {
  .final-footer {
    flex-direction: column;
    text-align: center;
    font-size: 0.7rem; 
    padding: 1rem 0;
    gap: 1rem;
  }
  
  /* Move social media icons to the top */
  .footer-social {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  
  /* The left group becomes a flex container arranged vertically */
  .footer-left {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Re-order children in the left group:
     Privacy links first … */
  .footer-links {
    order: 1;
    margin-bottom: 1rem;
  }
  
  /* … and then the copyright note */
  .footer-copy {
    order: 2;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .info-links ul {
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
    }

    .newsletter-section h3 {
        font-size: 1.5rem;
    }

    .newsletter-section p {
        font-size: 1rem;
    }

    .newsletter-section form input {
        width: 80%;
        max-width: 300px;
        margin-bottom: -9px;
    }

    #subscribeBtn {
        width: 86% !important;
        max-width: 300px;
        padding: 10px 20px;
        box-sizing: border-box;
        margin: 0 auto;
    }

    #subscribeBtn.loading {
        width: 86% !important;
    }
    #subscribeBtn.loading::after {
        width: 16px;
    }

    .final-footer {
        font-size: 0.8rem;
    }
}

/* Base Styles */
.lt-root {
    font-family: Arial, sans-serif;
    color: #000;
}

.lt-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
}

/* Headings */
.lt-title-lg {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    text-align: left;
    margin: 2rem 0;
    color: #000;
}

.lt-title-md {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
    color: #000;
    text-align: left;
    font-weight: bold;
}

.lt-title-sm {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    margin: 1.8rem 0 3rem;
    text-align: center;
    color: #000;
    font-weight: bold;
}

/* Text Blocks */
.lt-paragraph {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.lt-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.lt-list-item {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
}

.lt-strong {
    font-weight: bold;
}

/* Links */
.lt-link {
    color: inherit;
    text-decoration: none;
}

.lt-link:hover {
    text-decoration: none;
}

/* Section Wrappers */
.lt-section {
    margin-bottom: 3rem;
}
.lt-separator {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 3rem 0;
  border-top: 1px dotted #ccc;
  background: none;
}

/* Desktop Layout: 30% sidebar (lt-sidebar) and 70% content (lt-dropdown) */
@media (min-width: 769px) {
    /* Make the container a flex container */
    .lt-flex-container {
        display: flex;
    }
    .lt-sidebar, 
    .lt-sidebar-menu {
        width: 30% !important;
        font-size: 1.7rem !important;
        font-family: Georgia, serif !important;
        list-style: none !important;
        color: #000 !important; /* Forces black color instead of blue */
        text-decoration: none !important;
        margin-bottom: 80px !important;
        white-space: nowrap !important;  /* Enforce no wrap */
        font-weight: bold;
    }
    
    .lt-dropdown {
        width: 70%;
        padding-left: 20px;
    }
  
   /* Move the entire sidebar menu downward */
  .lt-sidebar-menu {
      margin-top: 130px !important; /* Adjust this value as needed */
  }

  /* Increase the gap between each list item */
  .lt-sidebar-menu li {
      margin-bottom: 30px !important; /* Adjust this value as needed */
  }
  
  .lt-sidebar-menu li a:hover {
    text-decoration: underline !important;
}
}

/* Sidebar Link Overrides to remove blue color and underline */
.lt-sidebar-menu a,
.lt-sidebar-menu a:visited,
.lt-sidebar-menu a:hover,
.lt-sidebar-menu a:active {
    color: inherit !important;
    text-decoration: none !important;
}

/* Mobile Adjustments (untouched) */
@media (max-width: 768px) {
    .lt-container {
        padding: 1rem;
        text-align: center;
    }
    .lt-title-lg {
        font-size: 1.6rem;
    }
  .lt-title-md {
        font-size: 1.3rem;
        text-align: center;
    }
  
  .lt-title-sm {
    font-size: 2rem;
  }
  
    .lt-paragraph,
    .lt-list-item {
        font-size: 1rem;
        text-align: center;
    }
  
    .lt-sidebar {
        display: none;
    }
}