/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #00838f; /* Light blue for a fresh look */
    color: #333;

}

html {
  scroll-behavior: smooth;
}


/* Background for Mission Section */
.mission-active {
    background-color: #ffffff; /* White background */
}



/* Styles for Home Page new */
.home-page #mission {
    background-color: #00838f; /* Matches navigation 7fafb9 */
    color: white;
}

/* Styles for About Page */
.about-page #mission {
    background-color: #ffffff; /* White background */
    color: #333;
}

/* Header */
header {
    display: flex;
    align-items: center; /* Center items horizontally */
    justify-content: space-between; 
    background-color: #005f73;
    padding: 20px;
    color: white;
    position: relative;
}

/* Logo Styling */
.logo-container {
    flex: 0 0 auto; /* Prevents the logo from stretching */
}

.logo-container img {
    height: 90px; 
    width: auto;
    max-width: 200px; /* Prevent oversized images */
}


/* Title and Showroom Hours Container */
.header-text {
    flex: 1; /* Allows this section to take up remaining space */
    text-align: center; /* Centers the content horizontally */
}

/* Title Styling */
.site-title {
    font-size: 36px;
    color: white;
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 1); /* Stronger, darker shadow */
    margin: 0; /* Remove extra margin */
}

.subtitle {
  font-family: inherit;       /* Matches your title’s font */
  font-size: 1.25rem;         /* Slightly smaller than the main title */
  font-weight: 600;           /* Semi-bold for emphasis */
  margin-top: 4px auto -8px auto;           
  color: white;                /* Deep but softer shade for balance */
  text-transform: uppercase;  /* Optional: for a clean, bold feel */
  letter-spacing: 0.5px;      /* Slight spacing for visual clarity */
}




/* Showroom Hours */
.showroom-hours {
    font-size: 14px;
    color: #ffffff; /* White text for visibility */
    margin-top: 5px;
    font-style: italic;
}

/* Navigation */
nav {
    background-color: #00838f;
    padding: 2px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

nav a:hover {
  text-decoration: underline;
  background-color: #e6f3f4;
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
}

nav ul li {
    position: relative;
    margin: 0 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
 z-index: 1000; 
}

.dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #005f73;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 200px;
}

.dropdown .submenu li {
    display: block;
    padding: 10px;
}

.dropdown .submenu li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 1px;
    transition: background-color 0.3s ease-in-out;
}

.dropdown .submenu li a:hover {
    background-color: #00838f;
}

/* Show Submenu on Hover */
.dropdown:hover .submenu {
    display: block;
}

/* Navigation Hover Effect */
nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}


nav ul li a:hover {
    background: linear-gradient(180deg,  #00838f 0%, #005f73 100%);
    color: #ffffff; /* Ensure contrast */
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}



/* Hero Section */
.hero-background {
    background: url('images/headerimg.png') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}


.hero-title-box {
  border: 3px solid #005f73;         /* Dark teal outline */
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  background-color: rgba(240, 240, 240, 0.8); /* Keeps background transparent
 */
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);   /* Bolder shadow for contrast */

  margin-top: 1rem;
}





.hero-subtext {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
}


.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff; /* Base text color */
  text-shadow: 3px 3px 10px #e0f7fa; /* Dark teal shadow */
}



@keyframes slideFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes slideFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  animation: slideFade 1s ease-out;
}


.hero-background h2 {
    font-size: 40px; /* Increase size */
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1); /* Stronger shadow for contrast */
}

.hero-text { padding: 0 20px; }


.hero-background p {
    font-size: 20px; /* Increase size */
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow for contrast */
}



/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #ff4500;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.cta-button:hover {
    background-color: #cc3700;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}


/* Mission Section */
#mission {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;

    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mission Sections with Images */
.mission-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Ensure All Mission Section Images Are the Same Size */
.mission-section img {
    width: 300px; /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures images maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.mission-text {
    width: 55%;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.mission-video {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}


.mission-video h3 {
    font-size: 24px;
    color: #005f73;
}

.mission-video video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}







/* Testimonial Container Styling */
.testimonial-container {
    padding: 50px 20px;
    text-align: center;
    background-color: #005f73; /* Matches the site's color scheme */
    margin: 20px auto;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.testimonial-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.testimonial {
  font-style: italic;
  font-size: 18px;
  padding: 20px;
  border-left: 5px solid #00838f;
  margin: 40px auto;
  max-width: 700px;
  background-color: #f9f9f9;
}


/* Testimonial Carousel */
.testimonial-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.testimonial-item {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
}

/* Testimonial Author */
.testimonial-author {
    font-size: 16px;
    font-style: italic;
    margin-top: 10px;
    color: #e0e0e0; /* Light gray for contrast */
}


/* Available Equipment Section */
#inventory {
    padding: 50px 20px;
    text-align: center;
    background-color: #7fafb9; /* Darker teal */
    margin: 20px auto;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: black; /* Ensures text is readable */

}


#inventory h2 {
  color: black;
  font-size: 32px;
  text-align: center;
  font-weight: 700;
   text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5), 
               0 2px 4px rgba(0, 0, 0, 0.15);

}


.equipment-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.equipment-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 30px;
  max-width: 750px;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.equipment-list li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}


.equipment-list li::before {
  content: "✔️";
  flex-shrink: 0;
  color: #00838f;
  font-size: 18px;
  display: none; /* hiding if you're using emoji directly */
}


/* Mission Section */
#our-mission {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff; /* White background */
    margin: 20px auto;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* 🔹 Our Founders Section Wrapper */
#our-founders {
  padding: 50px 20px;
  text-align: center;
  background-color: #b2cfd5;
  margin: 20px auto;
  width: 85%;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* 🔹 Founder Gallery (Displays Two Images Side by Side on Desktop) */
.founder-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 30px 0;
}

/* 🔹 Individual Founder Image Styling */
.founder-photo {
  width: auto;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Founder Image Enhancement for Larger Screens */
@media (min-width: 1024px) {
  .founder-photo {
    max-width: 350px;
  }
}

/* 🔹 Founder Story Paragraph Styling */
.founder-story {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}






/* Social Media Icons */
.social-icon {
    width: 25px; /* Adjust size */
    height: 25px;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

/* Contact Us Section */
#contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #005f73; /* Darker teal */
    margin: 20px auto;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: white; /* Ensures text is readable */
}

#contact h2 {
    font-size: 24px;
    color: white;
}

#contact ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
}

#contact ul li {
    margin: 10px 0;
}

/* Default Email Link Styling */
#contact a {
    color: #e0e0e0; /* Light gray for excellent contrast */
    font-weight: bold; /* Makes the text stand out */
    text-decoration: none; /* Removes underline */
}

/* Hover Effect for Email Link */
#contact a:hover {
    color: #ffffff; /* Pure white on hover for emphasis */
    text-decoration: underline; /* Adds underline on hover */
}

/* Visited Email Link Styling */
#contact a:visited {
    color: #e0e0e0; /* Keeps the same light gray color after clicking */
}

/* Active Email Link Styling */
#contact a:active {
    color: #cfcfcf; /* Slightly darker gray when clicked */
}


/* Donation Container Styling */
.donation-container {
    padding: 50px 20px;
    text-align: center;
    background-color: #b2cfd5; /* 005f73 */
    margin: 20px auto;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: black; /* Ensures text is readable */
}

.donation-container h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.donation-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Form Styling */
.donation-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Spacing between form elements */
}

.donation-container label {
    font-weight: bold;
    text-align: left;
    width: 100%;
    max-width: 400px;
    color: #005f73;
}

/* Specific Styling for "Make a Donation" Heading */
#how-you-can-help h2 {
    color: black; /* Change this to your desired color */
    font-weight: bold; /* Optional: Make it bold */
    
}

#how-you-can-help p {
  font-size: 17px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 15px;
  text-align: left;
  max-width: 750px;
}

.help-options-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.help-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 20px;
  text-align: center;
}

.help-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
}

#how-you-can-help ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#how-you-can-help ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

#how-you-can-help .donation-methods {
  list-style: none;           /* 🚫 Removes the default bullets */
  padding-left: 0;            /* Removes the browser's indentation */
  margin: 15px 0 25px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#how-you-can-help .donation-methods li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

#how-you-can-help .donation-methods .icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}





.donation-container input,
.donation-container select,
.donation-container textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.donation-container textarea {
    height: 100px;
    resize: vertical;
}

.donation-container button {
    background-color: #ff4500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donation-container button:hover {
    background-color: #cc3700;
}

.help-option {
  border-top: 2px solid #ccc;
  padding-top: 20px;
  margin-top: 30px;
}

.help-option:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.donation-note {
  margin-top: 30px;
  padding: 20px;
  background-color: #eef6f7;
  border-left: 5px solid #00838f;
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.help-option {
  background-color: #ffffff;
  border-left: 6px solid #00838f;
  border-radius: 8px;
  padding: 25px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.help-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

#how-you-can-help h3 {
  font-size: 24px;
  color: #005f73;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

#how-you-can-help .help-option {
  margin-bottom: 40px;
  padding: 25px 20px;
  border-left: 5px solid #00838f;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


#how-you-can-help .cta-button {
  display: inline-block;
  margin-top: 10px;
  font-size: 17px;
  padding: 12px 20px;
}


/* Inventory Overview Styling */
#inventory-overview {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff; /* White background */
    margin: 20px auto;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Inventory Sections */
.inventory-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f5f5f5; /* Light gray background */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Inventory Images */
.inventory-section img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Inventory Text */
.inventory-text {
    width: 55%;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}


/* Footer */
footer {
    background-color: #005f73;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer-credit {
  font-size: 0.8rem;         /* Makes the text smaller */
  font-style: italic;        /* Adds that elegant italic touch */
  color: #7fafb9;               /* Softer gray to keep it low-key */
  margin-top: 1rem;
  text-align: center;
}

/* 📱 Responsive Styles for Small Screens */
@media (max-width: 600px) {
  .subtitle {
    font-size: 1.1rem;         /* Slightly smaller for small devices */
    max-width: 90%;            /* Adapts to viewport width */
    margin: 6px auto;          /* Consistent spacing */
    letter-spacing: 0.3px;     /* Tighter for small screens */
    line-height: 1.4;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  nav li {
    margin-bottom: 10px;
  }

  nav a {
    font-size: 1rem;
    display: block;
    padding: 8px;
  }

  .contact-info,
  footer {
    padding: 10px;
    font-size: 0.95rem;
    text-align: center;
    word-break: break-word;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .button {
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
    display: block;
  }

  p {
    padding: 0 12px;
    line-height: 1.6;
  }

  .help-section h3 {
    font-size: 1.1rem;
    margin-top: 20px;
  }

  .help-section p {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .help-section {
    padding: 0 10px;
  }


.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 🔹 Responsive Stacking for Mobile Screens */
@media (max-width: 600px) {
  .founder-gallery {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .founder-photo {
    max-width: 90%;
  }


  
}



}


/* Responsive YouTube Embed */
.video-container {
  position: relative;
width: 45%;
  padding-bottom: 28.125%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
margin: 0 auto;
display: block;

}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .video-container {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for full width */
    margin-bottom: 20px;
  }

@media screen and (max-width: 768px) {
  .mission-section {
    flex-direction: column;
    align-items: stretch; /* Ensures full width use */
    text-align: center;
  }

  .mission-section img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .mission-text {
    width: 100%;
    max-width: none; /* Removes potential constraint */
    padding: 0 20px;
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
    transition: all 0.3s ease;
  }

  .mission-text p {
    text-align: left;
  }

  .mission-text p strong {
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .mission-video h3 {
    font-size: 22px;
  }
}


}






