/* Reset and base styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: lightgray;
    color: #333;
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    background: linear-gradient(to right, #001279, #0047ab);
    color: white;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-content img.logo {
    height: 50px;
    width: auto;
}

/* Navigation styles */
nav#main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav#main-nav ul li a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav#main-nav ul li a:hover, 
nav#main-nav ul li a.active {
    color: #ffdd00;
    text-decoration: underline;
}

/* Main content styles */
main {
    flex-grow: 1;
    padding: 20px;
    margin: auto;
    max-width: 960px;
}

/* Footer styles */
footer {
    width: 100%;
    background-color: #002244;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* Weather and contact popup styles */
.weather-info, .contact-popup {
    text-align: center;
    padding: 10px;
    background-color: #7BAFD4;
    color: white;
    font-size: 18.5px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.contact-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #dc3545;
    border-radius: 5px;
    display: none;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content, nav#main-nav ul {
        flex-direction: column;
    }

    .header-content img.logo {
        width: 120px;
    }

    nav#main-nav ul li {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    nav#main-nav ul {
        flex-direction: column;
    }

    nav#main-nav ul li {
        margin-bottom: 10px;
    }
}

/* Form styles */
form {
    max-width: 400px;
    margin: auto;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

button {
    background-color: #0047ab;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #003087;
}

/* Product grid styles */
.product-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
}

/* Clickable phone links */
a[href^="tel:"] {
    color: #0047ab;
    text-decoration: none;
    font-weight: bold;
}

a[href^="tel:"]:hover {
    color: #002244;
    text-decoration: underline;
}

/* FAQ Section */
#faq h2 {
    color: #00447c;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.faq-section {
    margin-top: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-section h3 {
    color: #003366;
}

.faq-section p {
    color: #333;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 960px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Location and Social Media */
.location, .social-media {
    background-color: #f8f9fa;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
}

.social-links a:hover {
    color: #007BFF;
}

/* Hamburger menu button */
.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Navigation links hidden on mobile */
.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        background-color: #333;
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.gallery h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.gallery ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.gallery li {
    flex: 1 1 200px;
    max-width: 90vw;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.gallery li:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery li {
        flex-basis: 100%;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.slogan {
    font-family: 'Great Vibes', cursive; /* Make sure this font is applied */
    font-size: 2em; /* Adjust as needed */
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Ensure mobile uses the same font */
@media (max-width: 768px) {
    .slogan {
        font-size: 1.8em; /* Slightly smaller but same font */
    }
}

/* Ensure logo maintains aspect ratio and doesn't squish */
.logo {
    height: auto; /* Keeps aspect ratio */
    max-height: 90px; /* Adjust as needed */
    width: auto; /* Keeps aspect ratio */
    max-width: 100%; /* Prevents overflow */
}

/* Adjust header layout for mobile */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers items */
        text-align: center;
    }

    .logo {
        max-height: 110px; /* Slightly smaller logo for mobile */
    }
}

/* Adjust for very small screens */
@media (max-width: 1000px) {
    .logo {
        max-height: 90px; /* Even smaller logo for tiny screens */
    }
}
.header-content img.logo {
    height: 170px;
    width: 1000px;
}

/* FAQ Accordion Styles */
.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1em;
}

.faq-item {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 5px;
}

/* Style for expanded answers */
.faq-item.expanded .faq-answer {
    max-height: 500px; /* Adjust based on content */
    padding: 1em;
}

@font-face {
    font-family: Rocher;
    src: url(https://assets.codepen.io/9632/RocherColorGX.woff2);
    font-family: Rocher;
    base-palette: 9;
  }
  
  
  .grays {
    font-palette: --Grays;
  }

  
  
