:root {
    --main-bg: #cbe9f5; /* air canada blue */
    --text-color: #E10600; /* air canada red */
    --border-color: #ffffff;
    --edge-bg: #f2f6fb; /* background was #ffffff */
}

@media (prefers-color-scheme: dark) {
    :root {
        --main-bg: #1d2a44;
        --text-color: #FF4C4C;
        --border-color: #111;
        --edge-bg: #0e121a;
    }
}

/* Basic Reset */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* Custom Spacing */
.alpha-wrapper {
    margin-left: 1rem;
}

/* Reset common layout issues */
html, body, h1, h2, h3, p, ul, ol {
    margin: 0;
    padding: 0;
}


html, body {
    height: 100%;
    background-color: var(--edge-bg);
    display: block;
    padding: 0.3em 1em;
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0em auto;
    background-color: var(--main-bg);
    color: var(--text-color);
    padding: 2em;
    border-radius: 12px;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 6px 6px rgba(0, 0, 0, 0.15);
    
}

@media (prefers-color-scheme: dark) {
    .container {
        box-shadow:
            0 10px 24px rgba(255, 255, 255, 0.05),
            0 6px 12px rgba(255, 255, 255, 0.04);
    }
}

h2, p {
    margin-bottom: 1em;
    line-height: 1.5;
    
}

h1 {
  display: inline-block;
  position: relative;
  margin-bottom: 1em;
  text-align: left;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -0.25em;
  left: 0%;
  width: 105%;
  height: 4px;
  background-color: #7183B0;
}


.styled-quote {
    border-left: 4px solid #7183B0;
    padding-left: 2em;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.5;
    font-style: italic;
    
}


.heading-border {
  display: inline-block;
  border-bottom: 4px solid #7183B0;
  padding-bottom: 0.25em;
  padding-right: 2em; /* makes it extend ~10% beyond text */
}



a {
    color: blue;
    text-decoration: underline;
    font-weight: bold;
}

@media (prefers-color-scheme: dark) {
    a {
        color: #66aaff;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1.2em;
        border-radius: 4px;
    }

    body {
        padding: 0.2em;
    }
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2em;
    padding-bottom: 1em;
    flex-wrap: wrap;
    gap: 2em;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    max-height: 70px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

@media (min-width: 768px) {
    .logo img {
        height: 70px;
    }
}


.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-color);
}
.nav-menu {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  background-color: #7183B0;
  color: #fff;
  text-decoration: none;
  padding: 0.6em .5em;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  min-width: 150px;
  max-width: 200px;
  flex: 1 1 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.nav-link:hover {
  background-color: #6072a0;
}


.nav-dropdown {
  position: relative;
  flex: 1 1 22%;
  max-width: 200px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
 box-sizing: border-box;
 height: 100%
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7183B0;
  color: #fff;
  padding: 0.6em .5em;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  min-width: 150px;
  max-width: 200px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-toggle:hover {
  background-color: #6072a0;
}

/* Fix for dropdown-content placement */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #8a98c4;
  border-radius: 6px;
  padding: 0.5em 0;
  z-index: 10;
  min-width: 180px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.nav-dropdown.active .dropdown-content {
  display: block;
}


.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
    background-color: #8a98c4; /* lighter than #7183B0 */
  border-radius: 6px;
  padding: 0.5em 0;
  z-index: 10;
  min-width: 180px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  display: block;
  padding: 0.5em 1em;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.dropdown-content a:hover {
  background-color: #6072a0;
}

@media (hover: hover) {
  .nav-dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Mobile responsive */
@media (max-width: 700px) {
  .nav-link,
  .nav-dropdown {
    flex: 1 1 45%;
    margin-bottom: 0.0em;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .nav-link {
    background-color: #9BA8D1;
    color: #000;
  }

  .nav-link:hover {
    background-color: #8c98c4;
  }

  .dropdown-content {
    background-color: #9BA8D1;
  }

  .dropdown-content a {
    color: #111;
  }

  .dropdown-content a:hover {
    background-color: #8c98c4;
  }
}


.main-banners {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: stretch;
    margin-top: .5em;
    flex-wrap: nowrap;
}

.intro-banner {
    display: flex;
    align-items: center;
    border-top: 4px solid #7183B0;
    border-bottom: 4px solid #7183B0;
    padding: 0.5em 0em;
    flex: 0 1 70%;
    min-width: 300px;
    max-width: 1000px;
}

.intro-banner img {
    width: 120px;
    height: auto;
    margin-right: 1em;
}

.intro-banner p {
    margin: 0;
    font-size: 1.1em;
    text-align: center;
}

.info-banner {
    margin-top: 1em;
    border-bottom: 4px solid #7183B0;
    padding: 0em 0em .5em;
    text-align: center;
    background-color: var(--main-bg);
    color: var(--text-color);
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 0;
}
.side-banner {
    flex: 0 1 25%;
    min-width: 180px;
    padding-top: 0em;
    text-align: center;
}

.side-banner p,
.side-banner h3 {
    font-size: 1.1em;
    margin: 0em 0;
    text-align: center;
    color: var(--text-color);
}

.side-banner a {
    font-size: 1.1em;
    text-decoration: underline;
    display: inline-block;
    margin-top: 0em;
}

.side-banner img {
    margin-top: 0em;
    width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
    .main-banners {
        flex-direction: column;
        align-items: center;
    }

    .intro-banner,
    .side-banner {
        width: 100%;
        max-width: 100%;
    }
}


.recipe-banner {
    flex: 8;
    min-width: 300px;
    margin-top: 0em;
    border-bottom: 4px solid #7183B0;
    padding: 1em 1em 1.5em;
    background-color: var(--main-bg);
    color: var(--text-color);
    border-radius: 0;
}
/* // Todays Mount Dora Text */
.recipe-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: .5em;
    text-align: left;
}
/* //Todays Mount Dora Art Title */
.artwork-title {
    font-style: bold;
    font-size: 1.6em;
    margin: 0.0em 0em .3em;
    text-align: left;
}

.recipe-banner h1 {
    font-size: 1.6em;
    margin-bottom: 0.em;
    text-align: left;
}
.today-banner-wrapper {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  align-items: flex-start;
}

.artwork-info {
    font-style: italic;
    font-size: 1.0em;
    margin: 0.0em 0 2em;
    text-align: left;
}


.recipe-flexbox {
    display: flex;
    gap: 1.5em;
    align-items: flex-start;
    flex-wrap: wrap;
}

.recipe-image img.featured-img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.recipe-text {
    flex: 1;
    min-width: 200px;
}

.recipe-description {
    font-size: 1.1em;
    line-height: 1.5;
    text-align: left;
    margin-top: 0.5em;
}

.artwork-links {
    margin-top: 1.5em;
    line-height: 1.5;
    font-size: 1.1em;
    text-align: left;
}

.recipe-banner.top-tight {
    margin-top: 0em;
}

.news-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5em 0;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
}

.news-list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
}

.news-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7183B0; /* Your Huglou purple */
  font-size: 1.1em;
  line-height: 1.6;
}


.huglou-news {
  flex: 2;
  min-width: 250px;
  max-width: 400px;
  margin-top: 0em;
  padding: 1.0em;
  text-align: center;
border-bottom: 4px solid #7183B0;


}


 /* huglou news title */

.huglou-news h3 {
  font-size: 1.8em;
  margin-bottom: 0.4em;
  color: var(--text-color);
  border-bottom: 0px solid #7183B0;
  display: inline-block;
  padding-bottom: 0.2em;
}

.huglou-news .news-image {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}


.news-quote {
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 0.4em;
  text-align: left;
}

.huglou-news a {
  font-weight: bold;
}

@media (prefers-color-scheme: dark) {
  .huglou-news {
   
  }

  .huglou-news a {
    color: #66aaff;
  }
}


@media (max-width: 200px) {
  .huglou-news {
    padding: 1em;
    border-radius: 6px;
  }

  .huglou-news h3 {
    font-size: 1.4em;
    margin-top: 0.0em; !important; /* adjust as needed */
  }

  .news-quote {
    font-size: 1em;
  }
}



#imageModal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#imageModal.active {
    display: flex;
}

#modalImage {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 25px #000;
}



#caption {
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Art of the Month Wrapper */

/* Art of the Month Styles */

.today-banner-wrapper {
  margin-bottom: 0rem;
}

.aom-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: flex-start;
  justify-content: left;
  padding: 1rem;
}

.aom-banner {
  padding: 0rem;
  border-radius: 10px;
}

.aom-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.5rem 0 0;
}

.aom-title-date {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.aom-flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.aom-image {
  flex: 1.5;
  min-width: 370px;
  max-width: 800px;
  max-width: 100%; /* ✅ add this */
  box-sizing: border-box; /* ✅ ensures padding/borders don't overflow */
}


.aom-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.aom-text {
  flex: 2;
  min-width: 280px;
}


.aom-artwork-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: .5em 0 0.5rem;
  text-align: left;
}

.aom-artwork-info {
  font-style: italic;
  font-size: 1.0em;
  margin: 0.0em 0 2em;
  text-align: left;
}

.aom-description,
.aom-links {
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
}


.aom-links a:hover {
  color: var(--hover-color, #990000);
}

@media (max-width: 800px) {
  .aom-flexbox {
    flex-direction: column;
    align-items: center;
  }

  .aom-image {
    width: 100%;
    max-width: 100%;
    flex: none;
    min-width: 0;
  }

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

  .aom-text {
    width: 100%;
    flex: none;
    padding: 0;
  }

  .aom-artwork-title,
  .aom-artwork-info {
    text-align: left;
  }
}

/*  alphabetical listing */

.alpha-wrapper {
    margin-left: 1.5rem !important;
    padding: 10px;
}

.alphabetical-list {
    
    padding-left: 0;
    margin: 0;
}

.alphabetical-list li {
    margin: 0.5rem 0;
    font-size: 1.5em;
    line-height: 1.3;
}

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

.alphabetical-list a {
 text-decoration: none;
    padding-left: 0rem;
}

.alphabetical-list a:hover {
    text-decoration: underline;
}

/* Responsive tweaks for smaller screens */
@media screen and (max-width: 600px) {
    .alpha-wrapper {
        margin-left: 0.5rem;
        padding: 0.5rem;
    }

    .alphabetical-list li {
        font-size: 1.1em;
        line-height: 1.5;
    }
}

/* In the press */
.press-item {
    text-align: center; /* Centers the image inside */
    margin-top: 0em;

}

.press-item p {
    text-align: left;
    margin: 0em 1.5em; /* Adds the left margin to the text */
    font-size: 1.1rem;
    line-height: 1.5;

}

.press-item img {
    width: 80%; /* Make the image smaller */
    max-width: 700px;

    margin-top: 1em;
    cursor: pointer;
  border-radius: 8px;
  margin-bottom: 0em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}


/* 
Footer
 */

.site-footer {
  background-color: #2f3651; /* dark slate blue */
  color: #fff;
  font-weight: normal;
  padding: 1.5em 1em;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 2em;
}


.site-footer {
  background-color: transparent;
  color: #a9a9a9;
  padding: 1.5em 1em;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 2em;
}

/* Huglou Publication: centered */
.footer-publication {
  font-weight: normal;
  font-size: .95rem;
  text-align: center;
  margin-bottom: 0.5em;
  color: #a9a9a9;
}

/* Footer main: left-aligned */
.footer-main {
  text-align: left;
 font-weight: normal;
  max-width: 960px;
  margin: 0 auto;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .site-footer {
    background-color: transparent;
    color: #a9a9a9;
  }

  .footer-publication {
    color: #a9a9a9;
  }
}
.site-footer::before {
  content: "";
  display: block;
  width: 1000px;
  max-width: 90%;
  margin: 0 auto 1em auto;
  border-top: 2px solid #a9a9a9; /* dark gray line */
}



/*   about the artist */
.artist-photo-wrapper {
    float: left;
    margin: 1rem 1.5rem 1.5rem;
    max-width: 200px;
    text-align: center;
}

.artist-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.artist-caption {
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    
    margin-top: 6px;
}


.artist-intro {
    font-size: 1.1em;
     margin: 0 1.5rem; 

}

/* 📱 Mobile-friendly adjustments */
@media (max-width: 768px) {
  .artist-photo-wrapper {
    float: none;
    margin: 0 auto 1.5rem;
    text-align: center;
    max-width: 80%;
  }

  .artist-photo {
    max-width: 100%;
  }

  .artist-caption {
    text-align: center;
    font-size: 0.95em;
  }

  .artist-intro {
    margin: 0 1rem;
    font-size: 1.1em;
  }
}

/* Optional clearfix for safe layout below float */
.artist-intro::after {
    content: "";
    font-size: 1.1em;
 
    display: table;
    clear: both;
}


.watercolor-wrapper {
    text-align: center;
    margin-top: 40px;
}

.watercolor-wrapper img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.watercolor-caption {
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    font-style: italic;
    
}

/* about the art */

/*   about the artist */
.aboutart-photo-wrapper {
    float: right;
    margin: 1rem 1.5rem 1.5rem;
    max-width: 250px;
    text-align: center;
}

.aboutart-photo {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.aboutart-caption {
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    
    margin-top: 6px;
}


.aboutart-intro {
    font-size: 1.1em;
     margin: 0 1.5rem; 

}

.cartoon-wrapper {
   float: left;
    margin: 1rem 1.5rem 2rem;
    max-width: 300px;
    text-align: center;



}

.cartoon-wrapper img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cartoon-caption {
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    font-style: italic;
    
}

 /* Artwork Row Layout */

.gal-card {
  
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
 margin-bottom: 1.0rem;
 border-bottom: 4px solid #7183B0;
 
}

.gal-left {
  flex: 0 0 auto;
  width: 800px;
  max-width: 60%;
}

.gal-image {
  width: 100%;
  height: auto;

  object-fit: contain;
    margin-bottom: 1rem;
      border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gal-right {
  flex: 1;
  max-width: 40%;
}

.gal-title {
  font-size: 1.8rem;
  font-weight: Bold;
  font-style: Normal;
  margin-bottom: 1.0rem;
}


.gal-meta {

  font-size: 1.0em;
  font-style: italic;
  margin: 0.0em 0 2em;
  /* margin-bottom: 0.75rem; */
  
}

.gal-inspire {
 
  max-width: 100%;
  margin: 0.5rem 0;
  border-radius: 6px;
    margin: 0.5rem auto; /* top/bottom spacing and center horizontally */
  width: 150px;
  display: block;
 border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gal-description {
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .gal-card {
    flex-direction: column;
    align-items: left;
    padding: 1rem 0.5rem;
  }

  .gal-left,
  .gal-right {
    max-width: 100%;
    width: 100%;
  }

  .gal-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem auto;
  }

  .gal-title {
    font-size: 1.5rem;
    text-align: left;
  }

  .gal-meta,
  .gal-description {
    font-size: 1.1rem;
    text-align: left;
  }

  .gal-inspire {
    margin: 1rem auto;
    width: 120px;
  }
}


/* contact page  */
.contact-intro {
  max-width: 600px;
  margin: 0 1.5rem ;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

.contact-form {
  max-width: 600px;
  width: 100%;
  margin: 0; /* no auto centering */
  padding: 1rem;
  background-color: transparent;
  text-align: left;
 
}


.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;


}

.contact-form button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #3399ff; /* Nice sky blue */
  font-size: 14px;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #1a8cff; /* Slightly darker blue */
}
/* 
 Contact send alert
 
 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: var(--background-color, #cbe9f5);
  color: var(--text-color, #000);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--accent-color, #007BFF);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: var(--highlight-hover, #0056b3);
}

/* Galleries */

.gallery-intro {

  max-width: 900px;
  margin: 0 1.5rem ;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;

}


.oil-layout {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: space-between; /* Ensures even spacing between items */
}

.oil-categories {
  flex: 1 1 300px; /* Allows flexibility while keeping a minimum width */
  min-width: 200px; /* Ensures it doesn't get smaller than this */
  max-width: 400px; /* Optional, limits the width on larger screens */
  padding: 20px;
}

.oil-categories ul {
  list-style-type: disc; /* Bulleted list */
  padding-left: 20px; /* Adds space between the bullet and text */
  font-size: 1.5em; /* Increase font size */
  line-height: 1.3; /* 1.5 line spacing */
}

.oil-categories li {
  margin-bottom: 10px; /* Adds space between list items */
}

.oil-categories a {

  text-decoration: none;
  font-weight: bold;
}

@media (prefers-color-scheme: dark) {
    a {
        color: #66aaff;
    }
}

.oil-featured {
  flex: 1 1 100%; /* Full width on smaller screens */
  max-width: 450px; /* Prevents it from becoming too wide */
  margin: 0; /* Center content horizontally */
  padding: 20px;
}

.oil-featured img.featured-image {
  width: 100%; /* Ensures the image is responsive */
  max-width: 670px; /* Keeps the image width in check */
    border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Adds shadow effect */
margin-top: 1rem;
}

.oil-featured h1 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 15px;
}

.part-of-text {
  font-size: 1.1em;
  text-align: left;
  margin-top: 1rem;
}



.oil-featured img.featured-image {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Adjust the shadow as needed */
}


/* To collaps the about the oil, water ect */

.gallery-intro-container {
  max-width: 900px;
  margin: 0rem 0;
}

.gallery-toggle {
  display: none; /* Hidden by default on desktop */
  font-size: 1rem;
  background-color: #7183B0;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

/* Ensure the gallery-intro is visible by default on desktop */
.gallery-intro {
   max-width: 900px;
  margin: 0 1.5rem ;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  border-bottom: 4px solid #7183B0;
}

/* Mobile view */
@media (max-width: 768px) {
  /* Display toggle button on mobile */
  .gallery-toggle {
    display: inline-block; /* Show the toggle button on mobile */
  }

  /* Hide gallery intro initially on mobile */
  .gallery-intro {
    display: none;
  }
}

/* Dark mode override for <a> links */
@media (prefers-color-scheme: dark) {
  a {
    color: #66aaff;
  }
}



