@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* White background restored */
    color: #3D3D3D; /* Dark gray for readability */
    margin: 0;
    padding: 0;
}

/* Navigation Menu */
header {
    background-color: #eeedf3; /* Athens Grey */
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it stays above other content */
    display: flex;
    justify-content: center; /* Center menu headings */
    align-items: center;
    height: 50px; /* Reduced height */
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Ensure menu wraps on smaller screens */
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #6f5c92; /* Kimberly font color */
    font-weight: bold;
    white-space: nowrap; /* Prevents menu items from breaking onto multiple lines */
    transition: color 0.3s ease;
}

.menu a:hover {
    color:  #fecf8b; /* Chardonnay */
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #6f5c92;
    background: none;
    border: none;
    padding: 10px;
}

/* Title Section */
.title-section {
    background-color: #97C4BB; /* Shadow Green */
    width: 100%;
    height: 220px; /* Ensures enough space for title */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 50px; /* Adjusted to match new menu height */
    text-align: center;
}

.title-section h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: normal;
    color: #fecf8b; /* Chardonnay */
    position: relative;
    top: 0;
    transform: translateY(0%);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh; /* Ensures hero section has fixed height */
    width: 100%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    display: block;
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    color: #6f5c92;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 20px;
    margin-top: 10px;
}

/* About Section */
.about-section {
    width: 80%;
    max-width: 800px;
    height: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
    color: #333333;
}

.about-section p {
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.8;
}

/* Title 2, Title 3, Title 4, Title 5 & Title 6 Sections */
.title2-section, .title3-section, .title4-section, .title5-section, .title6-section {
    width: 100%;
    height: 100px;
    background-color: #ffffff; /* Matches previous title sections */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    color: #6f5c92; /* Matches font color of previous titles */
}

/* Services Section */
#services {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
    color: #333333; /* Charcoal color applied globally */
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    width: 100%;
}

/* Service Item Styling */
.service-item {
    text-align: center;
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    line-height: 1.6;
    color: #333333; /* Charcoal color */
    border-bottom: 1px solid #ddd;
}

/* Ensures the "Price from:" text is also in Charcoal */
.service-item strong {
    display: block;
    margin-top: 10px; /* Adds spacing between elements */
    color: #333333; /* Charcoal color */
}

/* Make "Price from:" italic */
.price-text {
    font-style: italic;
    color: #333333; /* Keeps it in charcoal */
}


/* Gallery Grid - 4x2 Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 15px; /* Spacing between images */
    width: 80%; /* Keeps it balanced */
    max-width: 900px; /* Prevents it from stretching too wide */
    margin: 20px auto; /* Centers the grid */
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit neatly */
    border-radius: 5px; /* Optional rounded corners */
}

/* Lightbox Styling */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Close lightbox when clicked */
.lightbox.active {
    display: flex;
}



/* Opening Times Section */
#opening-times {
    display: flex;
    justify-content: center; /* Centers the container */
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.opening-container {
    background-color: #f7f7f7; /* Light neutral background */
    padding: 20px;
    border-radius: 10px; /* Soft rounded edges */
    width: 60%; /* Constrains width for a neat appearance */
    max-width: 500px; /* Prevents it from getting too wide */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds subtle shadow for depth */
}

.opening-times ul {
    list-style: none; /* Removes default bullet points */
    padding: 0;
}

.opening-times li {
    font-size: 18px; /* Adjust font size for readability */
    color: #6f5c92; /* Matches Title 3/4 font color */
    padding: 8px 0; /* Adds spacing between lines */
    font-weight: bold;
}


.opening-times li:last-child {
    color: #d9534f; /* Highlights CLOSED days in a different color */
}

/* Google Map Styling */
.map {
    display: flex;
    justify-content: center; /* Centers the map */
    margin-top: 15px;
}

.map iframe {
    width: 100%; /* Makes it responsive */
    max-width: 500px; /* Controls max size */
    height: 300px; /* Keeps height consistent */
    border-radius: 10px; /* Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */
}

/* Location Info Section */
.location-info {
    text-align: center; /* Centers the text */
    margin-top: 20px; /* Adds space between sections */
    background-color: #f7f7f7; /* Light neutral background */
    padding: 20px; /* Adds spacing inside the box */
    border-radius: 10px; /* Soft rounded edges */
    width: 60%; /* Constrains width for better readability */
    max-width: 600px; /* Prevents it from getting too wide */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.location-info p {
    font-size: 18px; /* Adjusts font size for readability */
    color: #6f5c92; /* Matches site branding */
    font-weight: bold; /* Enhances readability */
    line-height: 1.6; /* Improves text spacing */
    margin-bottom: 10px; /* Adds spacing between paragraphs */
}

/* Testimonials Section */
#testimonials {
    display: flex;
    justify-content: center; /* Centers the content */
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.testimonial-container {
    background-color: #f7f7f7; /* Light neutral background */
    padding: 20px;
    border-radius: 10px; /* Soft rounded edges */
    width: 80%; /* Constrains width for better readability */
    max-width: 700px; /* Prevents it from getting too wide */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between testimonials */
}

.testimonial {
    font-size: 18px; /* Adjusts font size for readability */
    color: #6f5c92; /* Matches your title color */
    font-style: italic; /* Gives a classic testimonial feel */
    padding: 15px;
    background-color: #ffffff; /* White background for contrast */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}


/* News & Events Section */
#news-events {
    display: flex;
    justify-content: center; /* Centers the container */
    width: 100%;
    margin-top: 20px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 20px; /* Adds spacing between news items */
    width: 80%;
    max-width: 900px; /* Prevents it from stretching too wide */
    background-color: #f7f7f7; /* Light neutral background */
    padding: 20px;
    border-radius: 10px; /* Soft rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
}

/* Individual News Items */
.news-item {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
    text-align: center;
}

.news-item h3 {
    font-size: 20px;
    color: #6f5c92; /* Matches brand color */
    margin-bottom: 10px;
}

.news-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Image Styling */
.news-item img {
    width: 100%; /* Makes images responsive */
    max-width: 350px; /* Limits width for uniformity */
    height: 225px; /* Sets consistent height */
    object-fit: cover; /* Crops images neatly without distortion */
    border-radius: 5px;
    margin-top: 10px;
}

/* Style for links inside news items */
.news-item a {
    color: #6f5c92; /* Matches branding color */
    font-weight: bold;
    text-decoration: none; /* Removes default underline */
}

.news-item a:hover {
    text-decoration: underline; /* Adds underline on hover */
}


/* Footer Styling */
footer {
    background-color: #97C4BB; /* Shadow Green - Matches Title Section */
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

/* Footer Text Styling */
footer p, footer a {
    font-family: 'Your-Main-Font', sans-serif; /* Replace with the font used elsewhere */
    font-size: 1.2rem; /* Adjust for readability */
    font-weight: normal;
    color: #fecf8b; /* Chardonnay */
    text-decoration: none; /* Removes underline from links */
}

/* Footer Links Hover Effect */
footer a:hover {
    text-decoration: underline; /* Adds underline on hover */
}

/* Social Media Icons in Footer */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fecf8b; /* Chardonnay color to match footer text */
    font-size: 24px; /* Adjust icon size */
    margin: 0 10px; /* Spacing between icons */
    transition: color 0.3s ease-in-out; /* Smooth hover effect */
}

.social-icons a:hover {
    color: #ffffff; /* Changes color on hover for a nice effect */
}

/* Enable Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent sections from hiding under fixed menu */
.title2-section,
.title3-section,
.title4-section,
.title5-section,
.title6-section {
    scroll-margin-top: 100px; /* Adjust based on your menu height */
}



.menu.open {
    display: flex; /* Ensure the menu opens */
    flex-direction: column;
}

/* Ensure all menu items are visible */
.menu.open a {
    display: block; /* Forces all menu items to be visible */
    color: #6f5c92; /* Ensure correct font color */
    padding: 10px 0;
}

/* Ensure the menu items are spaced correctly */
.menu.open li {
    margin: 5px 0;
    padding: 5px 0;
}


.menu {
    max-height: 100vh;
    overflow-y: auto; /* Allow scrolling if the menu is too long */
}


/* Floating Home Button - Mobile Only */
#home-button {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #6f5c92; /* Kimberly */
    color: #ffffff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Show Home Button Only on Mobile */
@media screen and (max-width: 768px) {
    #home-button {
        display: block;
    }
}

/* Hover Effect */
#home-button:hover {
    background: #fecf8b;
}



/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 5px 0;
    }
}


    @media screen {
        body {
            font-size: 14px;
        }

        @media screen and (max-width: 768px) {
            .menu {
                display: none; /* Hidden by default */
                flex-direction: column;
                background: #eeedf3;
                position: absolute;
                top: 50px;
                left: 0;
                width: 100%;
                text-align: center;
                z-index: 9999;
                padding: 6px 0;
                max-height: 100vh;
                overflow-y: auto;
            }

            .menu.open {
                display: flex;
            }

            .menu a {
                font-family: 'Kimberly', sans-serif;
                font-size: 16px;
                font-weight: bold;
                text-decoration: none;
                padding: 10px 0;
                display: block;
                color: #6f5c92;
                transition: color 0.3s ease-in-out;
            }

            .menu a:hover {
                color: #fecf8b;
            }

            /* Ensure menu icon is centered on mobile */
            .menu-toggle {
                display: block;
                font-size: 24px;
                color: #6f5c92;
                background: none;
                border: none;
                cursor: pointer;
                position: absolute;
                top: 10px;
                left: 50%; /* Move to center */
                transform: translateX(-50%); /* Adjust for exact centering */
                z-index: 10000;
            }

        }
    }

        @media screen and (max-width: 768px) {
            .news-container {
                grid-template-columns: 1fr; /* Single column on mobile */
                width: 90%; /* Prevents content from touching screen edges */
            }

            .news-item img {
                max-width: 100%; /* Ensures images resize proportionally */
                height: auto;
            }

            .title-section h1 {
                font-size: 3rem; /* Reduce from 4.5rem */
            }
        }

        /* Smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }














