body { 
    background-color: var(--body-color);
    margin: 0px;
    padding: 0px;
    color: var(--text-color);
    font-family: 'Cinzel Decorative', serif;
}



.logo {
    width: 100%;
    max-width: 250px;
    min-width: 100px;
    height: auto;
    border-radius: 50%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* HERO SECTION START */
.hero-section {
    max-height: 1500px;
    color: var(--text-color);
    /* Use relative clamp/vw padding so spacing adapts cleanly on zoom */
    padding: clamp(1rem, 2vw, 3rem) clamp(5vw, 10vw, 15vw);
    background-size: cover;          
    background-position: bottom center;
    background-repeat: no-repeat;    
    animation: heroPan 180s ease-in-out infinite alternate;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 5rem);
}

@keyframes heroPan {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 0%;
    }
}

.hero-image-container, 
.hero-content {
    /* Using clamp for flex-basis/min-width ensures it scales down fluidly before stacking */
    flex: 1 1 clamp(250px, 40vw, 500px); 
    min-width: 0; /* Prevents flex items from overflowing with wide content */
}

.hero-image-container {
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: 800px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.hero-content h2 {
    margin-top: 0;
    font-size: clamp(1.5rem, 5vw, 4rem);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 4rem);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
/* HERO SECTION END */


.packages-container {
    text-align: center;
    background-color: var(--main-color);
    padding:  2vw;
}

.packages-container p {
    font-size: clamp(0.8rem, 1vw, 4.1rem);
    margin: 0;
    padding: 0;
}

/* Restored Content & Layout Classes */
.shared-text::before {
    content: var(--company-name);
}

.company-email::before {
    content: var(--company-email);
}

.company-phone::before {
    content: var(--company-phone);
}

.centered-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    padding-bottom: 2vw;
}

.shadow-div {
    box-shadow: 0 0.5vw 0.8vw rgba(var(--shadow-color), 0.1);
    padding: 2vw;
}

.mid-section {
    color: var(--text-color);
    border-bottom: 0.1vw solid var(--secondary-color); 
    padding-bottom: 1rem; 
    margin-top: 2vw;
}

.mid-section p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 2rem);
}

.mid-section h3 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 2rem);
}

table {
    font-size: clamp(0.75rem, 1.5vw + 0.5rem, 1.75rem);
    width: 100%;
    border-collapse: collapse;
}

caption {
    background-color: var(--secondary-color);
    color: var(--button-text-color);
    padding: 0.75vw;
}

tr {
    font-size: clamp(0.7rem, 1.2vw + 0.4rem, 1.4rem);
}

th, td {
    text-align: center;
    padding: 0.6em 1.2em; 
    margin: 0px;
}

.hours-map-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hours-wrapper, .map-wrapper {
    flex: 1;
    min-width: 100px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 990px) {
    .hours-map-container {
        flex-direction: column;
    }
}

footer {
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    align-items: center;
}

footer > div {
    flex: 1;
}

.contact-details {
    font-size: clamp(0.6rem, 5vw, 0.9rem);
}

.footer-logo {
    text-align: right;
}

.footer-logo-img {
    width: 20%;
    border-radius: 200px;
}

@media (max-width: 900px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    footer > div {
        flex: none;
        width: 100%;
    }

    .footer-logo {
        text-align: center;
    }
}