* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #d32f2f;
    --accent-color: #ff9800;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo img {
    max-height: 120px;
    width: auto;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    display: inline-block;
}

nav a:hover {
    color: var(--primary-color);
    background-color: #e8e8e8;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6a9e 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.tagline {
    font-size: 1.3em;
    margin-bottom: 10px;
    opacity: 0.95;
}

.location-note {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 18px;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #e68900;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.services-image-link {
    display: block;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-image-link:hover {
    transform: scale(1.02);
}

.services-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 4px;
    display: block;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.owner-image {
    text-align: center;
}

.owner-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.owner-image.clickable-image {
    cursor: pointer;
}

.owner-image.clickable-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.owner-bio h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 15px;
}

.owner-name {
    color: var(--primary-color);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.owner-bio p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
    background-color: var(--white);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    padding: 15px;
    background-color: var(--white);
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.info-item p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.map-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-color);
    min-width: 100px;
}

.time {
    color: #666;
    text-align: right;
}

.note-small {
    font-size: 0.85em;
    color: #999;
    font-style: italic;
    width: 100%;
    margin-top: 5px;
    padding-left: 100px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
    opacity: 0.9;
}

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.contact-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.3s;
}

.contact-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.contact-modal-close:hover {
    color: var(--primary-color);
}

.modal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-info-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.modal-info-item p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 10px;
}

.modal-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: 500;
}

.modal-info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: center;
        padding: 15px 20px;
    }

    .logo img {
        max-height: 80px;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 1.1em;
        margin-bottom: 8px;
    }

    .location-note {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
        min-height: 44px;
    }

    .services,
    .about,
    .gallery,
    .contact {
        padding: 50px 15px;
    }

    .services h2,
    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .services-image-container {
        padding: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .owner-image img {
        max-width: 100%;
    }

    .owner-bio h3 {
        font-size: 1.6em;
    }

    .owner-name {
        font-size: 1.2em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-item h3 {
        font-size: 1.3em;
    }

    .hours-row {
        flex-direction: column;
        gap: 5px;
    }

    .time {
        text-align: left;
    }

    .note-small {
        padding-left: 0;
    }

    .contact-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-width: none;
    }

    .contact-modal-content h2 {
        font-size: 1.6em;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .modal-content {
        max-width: 95%;
    }
}

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

    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.6em;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1em;
    }

    .location-note {
        font-size: 1em;
        padding: 10px 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .services h2,
    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.8em;
    }

    .services,
    .about,
    .gallery,
    .contact {
        padding: 40px 15px;
    }

    .services-image-container {
        padding: 10px;
    }

    .owner-bio h3 {
        font-size: 1.4em;
    }

    .owner-bio p {
        font-size: 15px;
    }

    .gallery-item img {
        height: 180px;
    }

    .contact-modal-content {
        padding: 25px 15px;
    }

    .contact-modal-content h2 {
        font-size: 1.4em;
    }

    .modal-info-item h3 {
        font-size: 1.2em;
    }

    .modal-info-item p,
    .modal-info-item a {
        font-size: 15px;
    }
}

