

/* Responsive Iframe Container */
.iframe-container {
  /* Positioning context for the absolute iframe */
  position: relative;
  /* Hide anything spilling out */
  overflow: hidden;
  /* Take up full width available */
  width: 100%;
  /* Optional: Limit max width */
  max-width: 1248px;
  /* Center the container horizontally and add space above/below */
  margin: 30px auto;
  /* Optional: add a subtle border */
  border: 1px solid #ddd;
  /* Match image border-radius */
  border-radius: 8px;
  /* Subtle shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);

  /* Aspect Ratio Calculation: (height / width) * 100% */
  /* (1620 / 1248) * 100% = 129.80769...% */
  /* Use padding-top to create vertical space based on width */
  /* This pushes content below it down */
  padding-top: 129.81%;

  /* Ensure it behaves like a block element */
  display: block;
}

/* Style the iframe itself */
.iframe-container iframe {
  /* Position absolutely within the container */
  position: absolute;
  /* Align to top-left corner */
  top: 0;
  left: 0;
  /* Fill the container dimensions */
  width: 100%;
  height: 100%;
  /* Remove default iframe border */
  border: 0;
}

/* --- Base Styles --- */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: #ffffff;
  font-size: 16px; /* Base font size */
}

/* Stop scrolling when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Droid Serif', serif;
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; } /* ~40px */
h2 { font-size: 2.0rem; } /* ~32px */
h3 { font-size: 1.75rem; } /* ~28px */
h4 { font-size: 1.5rem; } /* ~24px */

a {
  color: #0078d7; /* Standard link blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3; /* Darker blue on hover */
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevent extra space below image */
  border-radius: 8px; /* Consistent rounded corners for images */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Horizontal padding */
  width: 100%; /* Ensure container takes up space */
  box-sizing: border-box; /* Include padding in width calculation */
}

.paragraph {
  font-size: 1rem; /* ~16px */
  line-height: 1.7;
  color: #333;
  margin-bottom: 1em; /* Spacing below paragraphs */
}

.wrapper {
  overflow-x: hidden; /* Prevent horizontal scrollbars */
}

/* --- Header & Navigation --- */
.site-header {
  /* Styles for the overall header area if needed */
}

.nav-wrap {
  background-color: #f8f9fa; /* Light grey background */
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  position: sticky; /* Make nav sticky */
  top: 0;
  z-index: 100; /* Ensure nav is above other content */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  color: #2a2a2a;
  font-size: 1.5rem; /* ~24px */
  font-weight: 700;
  text-decoration: none;
}

#site-title {
  /* Specific styles for the site title span if needed */
}

.main-navigation ul,
.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation {
  /* Desktop navigation specific styles */
}

.main-menu {
  display: flex;
}

.menu-item {
  margin-left: 20px;
}

.menu-link {
  color: #2a2a2a;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem; /* ~16px */
  padding: 8px 16px;
  transition: color 0.3s ease, background-color 0.3s ease; /* Added background transition */
  display: block;
  border-radius: 4px; /* Subtle rounding */
}

.menu-link:hover,
.menu-item.active .menu-link { /* Style for active link */
   color: #0078d7;
   background-color: rgba(0, 120, 215, 0.05); /* Very light background on hover/active */
}

/* --- Hamburger --- */
.hamburger {
  display: none; /* Hidden by default, shown via media query */
  background: none;
  border: none;
  font-size: 24px; /* Base size */
  color: #2a2a2a;
  cursor: pointer;
  padding: 8px;
  z-index: 1001; /* Above mobile nav background */
  position: relative; /* Needed for z-index */
  line-height: 1; /* Prevent extra spacing */
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2a2a2a;
  margin: 5px 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border-radius: 1px;
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: -100%; /* Start off-screen */
  width: 100%;
  height: 100%;
  background-color: rgba(42, 42, 42, 0.97); /* Slightly darker, more opaque overlay */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0s 0.4s, left 0s 0.4s; /* Delay hiding visibility/left */
  overflow-y: auto; /* Allow scrolling if content overflows */
  padding: 20px;
  box-sizing: border-box;
}

.mobile-nav-overlay.nav-mobile-open {
  left: 0; /* Slide in */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease-in-out, visibility 0s 0s, left 0s 0s; /* Adjust transition */
}

/* Style hamburger *inside* mobile nav for closing */
.mobile-nav-overlay .hamburger--close {
   display: block; /* Ensure close button is visible */
   position: absolute;
   top: 20px;
   right: 20px;
   color: white; /* Make it visible on dark background */
}
 .mobile-nav-overlay .hamburger--close span {
   background-color: white; /* White bars */
}

 /* Animate the hamburger icon (both trigger and close button when active) */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-navigation {
  width: 100%;
  text-align: center;
}

.mobile-menu {
  /* Styles specific to the mobile menu list */
}

.mobile-menu .menu-item {
  margin: 0 0 25px 0; /* Vertical spacing, remove left margin */
}

.mobile-menu .menu-link {
  color: white;
  font-size: 1.5rem; /* ~24px, Larger font for mobile */
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  display: block; /* Make whole area clickable */
  transition: color 0.3s ease;
}
 .mobile-menu .menu-link:hover,
 .mobile-menu .menu-item.active .menu-link {
   color: #00aaff; /* Lighter blue for hover/active */
 }

/* --- Banner --- */
.banner-wrap {
  padding: 0;
}

.banner-section {
  /* Ensure the path is correct relative to your CSS file or use an absolute path */
  background-image: url('/images/background.png');
  /* Changed background-size to contain */
  background-size: contain; /* Scales the image to fit without cropping */
  background-repeat: no-repeat; /* Prevent tiling if image is smaller than container */
  background-position: center center; /* Centers the image */
  background-attachment: fixed; /* Parallax effect */
  color: #ffffff; /* White text for contrast */
  position: relative; /* For pseudo-element overlay */
  background-color: #ffffff; /* Added background color for empty space */
}

/* Optional: Add a dark overlay for better text readability */
/* This overlay might not be needed as much with 'contain' if there's background color */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Adjusted overlay darkness - may need less or none with 'contain' */
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}


.banner-section .container {
    position: relative; /* Ensure content is above overlay */
    z-index: 2;
}

.banner-content {
  min-height: 450px; /* Minimum height - adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center */
  padding: 100px 0; /* Vertical padding */
  text-align: left;
}

.banner-content h1 {
  font-size: 3rem; /* ~48px */
  line-height: 1.3;
  color: #fff; /* Ensure text is white */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Enhance readability */
  margin: 0;
  max-width: 800px; /* Constrain width */
}
.banner-content h1 strong {
    font-weight: 700; /* Ensure strong is bold */
}

/* --- Main Content & Sections --- */
.main-content {
  /* Styles for the main content area wrapper if needed */
}

#page-content {
  /* Styles for the direct content wrapper */
}

.section {
  padding: 60px 0; /* Vertical padding for sections */
}
.section-bg-light {
    background-color: #f8f9fa; /* Light grey background */
}
 .section-bg-white {
    background-color: #ffffff; /* White background */
}

.section-title {
  text-align: center;
  margin-bottom: 40px; /* Space below title */
}

/* --- Flexbox Layout --- */
.flex-layout {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 40px; /* Increased space between columns */
  align-items: center; /* Vertically align items in the center */
  justify-content: center; /* Center columns if they don't fill space */
}

.flex-col {
  padding: 0 15px; /* Horizontal padding within columns */
  flex: 1; /* Allow columns to grow */
  min-width: 280px; /* Minimum width before wrapping */
  box-sizing: border-box;
}

.flex-col-image {
    flex-basis: 40%; /* Suggest initial size for image column */
    flex-grow: 0; /* Don't let image column grow as much */
    text-align: center; /* Center image within its column */
    max-width: 450px; /* Max width for the image column */
}
.flex-col-text {
    flex-basis: 50%; /* Suggest initial size for text column */
    max-width: 600px; /* Max width for the text column */
}

.about-image {
  /* border-radius is now on the base img style */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
  margin: 0 auto; /* Center if column is wider */
}

.about-text .section-title {
  text-align: left; /* Align heading left */
  margin-top: 0;
}

/* --- Contact Section & Social Links --- */
.contact-section {
  /* Specific styles for contact section if needed */
}
 .contact-section .section-title {
   margin-bottom: 30px;
 }
 .social-links-wrapper {
   text-align: center; /* Center the container div */
 }
.social-links {
  display: inline-flex; /* Use inline-flex to allow text-align center */
  flex-wrap: wrap; /* Allow wrapping on small screens if needed */
  justify-content: center;
  gap: 20px; /* Increased space between icons */
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #e0e0e0; /* Slightly darker grey */
  color: #333;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.social-item:hover {
  background-color: #0078d7; /* Default blue on hover */
  color: white;
  transform: translateY(-4px) scale(1.05); /* Lift and slightly enlarge */
}
/* Optional: Specific hover colors for branding */
.social-facebook:hover { background-color: #1877F2; }
.social-twitter:hover { background-color: #1DA1F2; }
.social-instagram:hover { background-color: #E4405F; }
.social-linkedin:hover { background-color: #0A66C2; }


/* --- Footer --- */
.site-footer {
  background-color: #f8f9fa;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 40px; /* Space above footer */
}
.footer-content {
  color: #555;
  font-size: 0.9rem; /* ~14px */
}

/* --- Responsive Design --- */
@media (max-width: 992px) { /* Medium devices (tablets, smaller desktops) */
   h1 { font-size: 2.2rem; }
   h2 { font-size: 1.8rem; }
   .banner-content h1 { font-size: 2.5rem; }

   .flex-col-image,
   .flex-col-text {
       flex-basis: 48%; /* Adjust basis for medium screens */
       max-width: none; /* Remove max-width constraints */
   }
}

@media (max-width: 768px) { /* Small devices (landscape phones, large portrait phones) */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .banner-content h1 {
    font-size: 2rem;
    text-align: center; /* Center banner text on mobile */
    padding: 0 10px; /* Add horizontal padding */
   }
  .banner-content {
     min-height: 350px; /* Reduce min-height */
     padding: 60px 0;
  }
  .main-navigation { /* Hide desktop nav */
    display: none;
  }
  .hamburger { /* Show hamburger */
    display: block;
  }

  /* Stack flex columns */
  .flex-layout {
    flex-direction: column;
    align-items: center; /* Center items when stacked */
    gap: 40px; /* Increase gap when stacked */
  }
  .flex-col {
     padding: 0; /* Reset padding */
     width: 100%; /* Make columns full width */
     max-width: 500px; /* Limit width for better readability */
     flex-basis: auto !important; /* Override previous basis */
  }
   .flex-col-image {
      order: 1; /* Ensure image comes first if needed */
   }
   .flex-col-text {
      order: 2;
      text-align: center; /* Center text on mobile */
   }
   .about-text .section-title {
      text-align: center; /* Center heading on mobile */
   }

  .section, .contact-section {
     padding: 40px 0; /* Reduce padding */
  }
   .section-title {
     margin-bottom: 30px;
   }
}

@media (max-width: 576px) { /* Extra small devices (portrait phones) */
    .banner-content h1 { font-size: 1.8rem; }
    .logo a { font-size: 1.3rem; }
    .social-item { width: 40px; height: 40px; font-size: 18px; }
    .social-links { gap: 15px; }
    .mobile-menu .menu-link { font-size: 1.3rem; } /* Adjust mobile menu font size */

    /* Adjust banner height for very small screens if needed */
    .banner-content {
        min-height: 300px;
        padding: 40px 0;
    }
}
