/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Images (10).jpg');
    background-size:contain;
    background-position: center;
    color: white;
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    transition: all 0.3s;
}

.navbar.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Gallery Carousel */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

/* Services Cards */
.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}
/* Gallery Styling */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Thumbnails Styling */
.thumbnails-wrapper {
    width: 100%;
    padding: 10px 0;
}

.thumbnails-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
}

.thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid #28a745;
}

/* Scrollbar Styling */
.thumbnails-container::-webkit-scrollbar {
    height: 8px;
}

.thumbnails-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 4px;
}

/* Business Hours Dropdown Fix */
.today-hours {
    position: relative;
    padding: 15px;
}

.hours-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hours-toggle {
    position: relative;
    background: transparent;
    border: none;
    padding: 5px;
    margin-left: 10px;
    cursor: pointer;
}

.hours-toggle i {
    transition: transform 0.3s;
}

.hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}
/* Fix dropdown arrow */
.hours-toggle {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 15px;
}

.hours-toggle i {
    font-size: 16px;
    transition: transform 0.3s;
}

.hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Adjust today's hours layout */
.today-hours {
    position: relative;
    padding-right: 40px;
}
/* Fix dropdown arrow */
.hours-toggle {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: -5px;
}

.hours-toggle i {
    font-size: 16px;
    transition: transform 0.3s;
}

.hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Adjust today's hours layout */
.today-hours {
    position: relative;
    padding-right: 40px;
}


/* Services Section Styling */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Business Hours Accordion Styling */
.accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.business-hours {
    background-color: #ffffff;
}

.hours-item {
    transition: background-color 0.3s ease;
}

.hours-item:hover {
    background-color: #f8f9fa;
}

/* Animation for accordion */
.accordion-collapse {
    transition: all 0.3s ease;
}

/* Current day highlight */
.hours-item.current-day {
    background-color: #e7f1ff;
    font-weight: 500;
}

/* About Section Styling */
.about-intro {
    border-left: 4px solid #28a745;
    padding-left: 1rem;
}

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

.nutrition-info, .benefits-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

.text-success {
    color: #28a745 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-intro {
        border-left: none;
        padding-left: 0;
    }
}

/* Centered About Section Styling */
.main-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #28a745;
    margin: 0 auto 2rem;
}

/* Card Styling */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

.nutrition-info, .benefits-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

.text-success {
    color: #28a745 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .col-lg-10 {
        padding: 0 15px;
    }
}

/* Contact Section Styling */
.contact-section {
    background-color: #f8f9fa;
    position: relative;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #28a745;
    margin: 0 auto;
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card-header {
    background: #28a745;
    color: white;
    padding: 20px;
}

.contact-card-header h4 {
    margin: 0;
    font-weight: 600;
}

.contact-card-body {
    padding: 25px;
}

/* Form Styling */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #28a745;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
}

/* Hours Styling */
.today-hours {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.hours-label {
    font-weight: 500;
    color: #6c757d;
}

.hours-time {
    font-weight: 600;
    color: #28a745;
}

.hours-toggle {
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* All Hours */
.all-hours {
    margin-top: 10px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.day-row:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 500;
}

.day-hours {
    color: #28a745;
}

.day-hours.closed {
    color: #dc3545;
}

/* Contact Info */
.contact-info {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.contact-info h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.info-item i {
    margin-right: 10px;
    color: #28a745;
    font-size: 1.1rem;
}

/* Bootstrap Icons - Include in head */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");


/* Green Navigation Bar */
.navbar {
    background-color: #28a745 !important; /* Bootstrap green color */
    transition: all 0.3s;
}

.navbar-light .navbar-brand {
    color: white !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: white !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1) brightness(1.5);
}


/* Fix dropdown arrow positioning */
.today-hours .d-flex {
    position: relative;
    display: flex !important;
    justify-content: center !important;
    gap: 10px;
}

.hours-toggle {
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-toggle i {
    transition: transform 0.3s;
}

.hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.hours-time {
    color: #28a745;
    font-weight: 600;
}


/* Center all text */
body {
    text-align: center;
}

h1, h2, h3, h4, h5, h6, p, .lead {
    text-align: center;
}

.card-body {
    text-align: center;
}

/* Keep certain elements from being centered */
.day-row {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.info-item {
    text-align: left;
}

@media (max-width: 768px) {
    .info-item {
        text-align: center;
        justify-content: center;
    }
    
    .day-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}