@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;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/* Container for centering content */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  padding: 0 20px; /* Adds some padding on smaller screens */
}

/* Header styling */
header {
  background: #fff;
  padding: 20px;
}

/* Container for centering content (repeated block) */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  padding: 0 20px; /* Adds some padding on smaller screens */
}

/* Header styling (repeated block) */
header {
  background: #fff;
  padding: 20px;
}

header h1 {
  font-size: 2em;
  margin: 0 0 10px;
  font-family: Georgia;
}

header p {
  color: #666;
  font-size: 1.2em;
  font-family: Arial;
}

/* Main content area */
main {
  padding: 20px;
}

/* Center the illustration image */
.illustration {
  text-align: center;
}

.illustration img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Blog Post Content */
.blog-post {
  padding: 20px;
  font-size: 16px;
  display: flex;              /* Makes the container a flex container */
  flex-direction: column;     /* Stacks children vertically */
  gap: 20px;                  /* Applies 40px space between each direct child */
}

.blog-post h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Georgia;
  font-size: 1.2em !important;
}

/* Increase font-size for h3 */
.blog-post h3 {
  font-size: 2.2em;
  font-family: Georgia;
  color: #444;
    margin-bottom: 10px;
}

.blog-post h4 {
  font-size: 1.5em !important;
  color: #444;
 margin-bottom: 10px;
line-height: 2;

}

.blog-post p {
  margin-bottom: 15px;
  font-family: Arial;
  font-size: 1.2em !important;
  line-height: 2;
  color: #666;
}

.blog-post ul {
  margin-bottom: 15px;
  font-size: 1.2em !important;
  font-family: Arial;
  color: #666;
line-height: 2 !important;
}

.blog-post li {
  font-size: 1em !important;
  list-style: none;
  margin-bottom: 20px;
  color: #666;
line-height: 2 !important;
}

figure {
  margin: 20px 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
}

/* Make the links black */
.call-to-action a {
  color: black !important;
  text-decoration: underline; /* Optional: Remove underline */
}

a.call-to-action {
  color: black !important;
  text-decoration: underline; /* Optional: Remove underline */
}


/* For screens 768px and below */
@media (max-width: 768px) {
  .container {
     max-width: 100%;
    width: 100%;
    padding: 0;
  }
  header h1 {
    font-size: 1.6em;
  }
  header p {
    font-size: 1.1em;
  }
  main {
    padding: 15px;
  }
  .blog-post {
    padding: 15px;
  }
  .blog-post h4 {
    font-size: 1em !important;
  }
  .blog-post h3 {
    font-size: 1.6em;
      margin-bottom: 10px;
  }
  .blog-post p,
  .blog-post ul {
    font-size: 1em !important;
line-height: 2;
  }
  .blog-post li {
    font-size: 1em !important;
line-height: 2;
margin-bottom: 5px;

  }
}

/*******************************************************
 *                    FOOTER WRAPPER
 *******************************************************/
.footer-wrapper {
  width: 100%;               /* Full viewport width */
  position: absolute;
  left: 0;                  /* Ensure it starts from the left edge */
  right: 0;                 /* Optional: ensure it stretches fully */
  margin: 0 auto !important;
  padding: 0;
}

/*******************************************************
 *                    INFO SECTION
 *******************************************************/
.info-section {
  width: 100%;               /* Full viewport width */
  position: relative;
  /* Removed left: 50% and transform: translateX(-50%) */
  padding: 2rem 1rem;
  background-color: #d0ccc4;  /* Gray background */
  margin-bottom: -2rem;       /* Overlap next section */
  border-radius: 15px 15px 0 0;
  color: #fff;
  z-index: 2;
  margin-top: 5rem;
}

/* Info Container, Logo, & Links */
.info-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-logo img {
  max-width: 250px !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;
}

.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 !important;
}
    }



/*******************************************************
 *                    DIVIDER LINE
 *******************************************************/
.footer-divider-wrapper {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
  background-color: #d0ccc4 !important;
  padding: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
/*******************************************************
 *                  NEWSLETTER SECTION
 *******************************************************/
.newsletter-section {
  width: 100%;               /* Full viewport width */
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #d0ccc4;  /* Slightly lighter gray */
  font-family: Georgia;
  font-weight: normal;
  text-transform: none;
  margin-top: -1rem;          /* Overlap with info section */
  z-index: 2;
  color: #000;
}

.newsletter-section h3 {
  font-family: Georgia;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
  margin-top: 1rem;
}

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

.newsletter-section form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap !important;
}

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

.newsletter-section form button {
  background-color: #efbe35;
  color: #000;
  padding: 10px;
  font-family: Georgia;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: none;
  border: none;
  width: 15%;
  border-radius: 5px;
  border: 1px solid #000;
  cursor: pointer;
  flex-wrap: nowrap !important;
  transition: background-color 0.3s ease-in-out;
}

.newsletter-section form button:hover {
  background-color: #d4a932;
}

#thankYouMessage {
  font-family: Georgia;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1.5rem;
  color: #000;
  display: none;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

.fade-out {
  animation: fadeOut 2s ease-in-out forwards;
}


/*******************************************************
 *              SPINNER & CONFETTI STYLING
 *******************************************************/

/* create the spin animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Morph button into spinner */
#subscribeBtn.loading {
  color: transparent;
  pointer-events: none;
  width: 15% !important;
  position: relative;               /* Needed to anchor the spinner */
  display: flex;
  justify-content: center;         /* Center child horizontally */
  align-items: center;             /* Center child vertically */
}

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

 


/*******************************************************
 *               RESPONSIVE ADJUSTMENTS (Mobile)
 *******************************************************/
@media (max-width: 768px) {
  .newsletter-section form {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .newsletter-section form input,
  .newsletter-section form button {
    width: 80% !important;
    max-width: 300px;
    box-sizing: border-box;
    margin: 0 auto;
    flex: none;           /* cancel desktop flex basis */
  }
  /* keep loading‑morph on mobile */
  #subscribeBtn.loading {
    width: 80% !important;
  }
  #subscribeBtn.loading::after {
    width: 16px;
  }
  .newsletter-section p {
    font-size: 1rem;
  }

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


}

/*******************************************************
 *                    FINAL FOOTER
 *******************************************************/

/* Final Footer */
.final-footer {
  background-color: #000; 
  color: #ffffff; 
  font-size: 0.8rem; 
  font-family: Arial; 
  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: white !important;
  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 ADJUSTMENTS (Mobile)
 *******************************************************/
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .info-links ul {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
  }
  .info-links strong {
    text-decoration: underline;
  }
  .final-footer {
    font-size: 0.8rem;
  }
  
    
.info-logo img {
  max-width: 150px;
}
  
  .info-links strong {
    text-decoration: underline;
  }
  
  .desktop {
    display: none;
  }
}


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



/* =========================
   Base Global Styles
   ========================= */
body {
    margin: 0;
   font-family: Georgia;
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    font-family: Georgia;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
 text-transform: none;

}

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

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

/* =========================
   Desktop Header Styles
   ========================= */
.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #fff;
    max-width: 1200px;
    margin-left: 100px;
    box-sizing: border-box;
font-weight: bold;
 text-transform: none;
font-family: Georgia;
}

.desktop-header .main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
 text-transform: none;
font-family: Georgia;
}

.desktop-header .main-nav ul li {
    margin-left: 50px;
}

.desktop-header .main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

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

.desktop-header .menu-toggle {
    cursor: pointer;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Bars */
.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;
}

/* =========================
   Shared Sidebar & Overlay
   ========================= */
.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;
    box-sizing: border-box;
font-family: Georgia;
}

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

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

.sidebar-menu,
.sidebar-additional {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 25px;
   margin-top: 20px;
   margin-bottom: -20px;
font-weight: bold;
 text-transform: none;
font-family: Georgia;
}

.sidebar-additional {
margin-bottom: -50px;
}

.sidebar-menu li a,
.sidebar-additional li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
font-weight: bold;
 text-transform: none;
font-family: Georgia;

}

.sidebar-menu li a:hover {
    background-color: #f0f0f0;
}

.sidebar-additional li a {
    text-decoration: underline;
    font-size: 18px;
    color: #000;
   margin-top: -10px;
   margin-bottom: -5px;
font-weight: bold;
 text-transform: none;


}

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

.icon {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
   margin-top: -1px;
   margin-bottom: -5px;
}

#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;
}
.mobile-header {
display: none;
}
/* =========================
   Mobile Header Styles
   ========================= */
@media (max-width: 768px) {
  /* Hide desktop header */
  .desktop-header {
    display: none;
  }
  /* Show mobile header */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-header .logo {
    font-size: 24px;
    margin: 0;
 text-transform: none;
font-family: Georgia;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0;
    align-items: center;
font-weight: bold;
 text-transform: none;
font-family: Georgia;
  }

  .mobile-nav ul li {
    flex: 0 0 auto;
    margin-left: 20px;
 text-transform: none;

  }

  .mobile-nav ul li:first-child {
    margin-left: 0;
  }

  .mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    white-space: nowrap;
 text-transform: none;

  }

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

  .mobile-header .menu-toggle {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-header .hamburger {
    width: 20px;
    height: 2px;
  }

  .mobile-header .hamburger::before,
  .mobile-header .hamburger::after {
    width: 20px;
    height: 2px;
  }

  .mobile-header .hamburger::before {
    top: -6px;
  }

  .mobile-header .hamburger::after {
    top: 6px;
  }

  .sidebar-nav {
    width: 320px;
    right: -320px;
  }
  .sidebar-nav.active {
    right: 0;
  }

  .sidebar-menu,
  .sidebar-additional {
    font-size: 20px;
 text-transform: none;
font-family: Georgia;
  }
  
  .icon {
    width: 30px !important;
    height: 30px !important;
}
}



/* === STANDARD TABLETS (iPad Mini, base Galaxy Tabs) === */
@media (min-width: 600px) and (max-width: 767px) {

  /* Hide desktop header */
  .desktop-header {
    display: none;
  }
/* Show mobile header */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }
 .mobile-header .logo {
    font-size: 30px;
    margin: 0;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .mobile-nav ul li {
    flex: 0 0 auto;
    margin-left: 20px;
  }

  .mobile-nav ul li:first-child {
    margin-left: 0;
font-weight: bold;
text-transform: none;
  }

  .mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    white-space: nowrap;
  }

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

  .mobile-header .menu-toggle {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-header .hamburger {
    width: 20px;
    height: 2px;
  }

  .mobile-header .hamburger::before,
  .mobile-header .hamburger::after {
    width: 20px;
    height: 2px;
  }

  .mobile-header .hamburger::before {
    top: -6px;
  }

  .mobile-header .hamburger::after {
    top: 6px;
  }

  .sidebar-nav {
    width: 320px;
    right: -320px;
  }
  .sidebar-nav.active {
    right: 0;
  }

  .sidebar-menu,
  .sidebar-additional {
    font-size: 20px;
  }
  
  .icon {
    width: 30px !important;
    height: 30px !important;
}
}

/* === STANDARD TABLETS (iPad Mini, base Galaxy Tabs) === */
@media (min-width: 819px) and (max-width: 1023px) {

  /* Hide desktop header */
  .desktop-header {
    display: none;
  }
/* Show mobile header */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }
.mobile-header .logo {
    font-size: 30px;
    margin: 0;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .mobile-nav ul li {
    flex: 0 0 auto;
    margin-left: 20px;
  }

  .mobile-nav ul li:first-child {
    margin-left: 0;
font-weight: bold;
text-transform: none;
  }

  .mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    white-space: nowrap;
  }

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

  .mobile-header .menu-toggle {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-header .hamburger {
    width: 20px;
    height: 2px;
  }

  .mobile-header .hamburger::before,
  .mobile-header .hamburger::after {
    width: 20px;
    height: 2px;
  }

  .mobile-header .hamburger::before {
    top: -6px;
  }

  .mobile-header .hamburger::after {
    top: 6px;
  }

  .sidebar-nav {
    width: 320px;
    right: -320px;
  }
  .sidebar-nav.active {
    right: 0;
  }

  .sidebar-menu,
  .sidebar-additional {
    font-size: 20px;
  }
  
  .icon {
    width: 30px !important;
    height: 30px !important;
}
}

