body { 
    background-color: var(--body-color);
    margin: 0px;
    padding: 0px;
    color: var(--text-color);
    font-family: 'Cinzel Decorative', serif;
}

.animated-div {
    animation-name: heroButtonAnimation;
    animation-duration: 1s;
}

@keyframes heroButtonAnimation {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
   100% {
    opacity: 1;
   }
}

.shared-text::before {
    content: var(--company-name);
}

.logo-styling {
    border-radius: 2vw;
    width: clamp(100px, 16vw, 500px);
}

.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;
}

.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;
}


.discrete-link {
    color: var(--button-text-color);
    text-decoration: none;
}

/* HEADER START */
header {
    background-color: var(--main-color);
    padding: 2px 2vw;
    height: 32px;
    font-size: clamp(0.9rem, 0.8vw + 0.75rem, 1.15rem);
    overflow: hidden;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .std-button {
    font-size: 16px;
    height: 30px;
    padding: 4px;
    margin-right: 10px;
}

.small-title, .small-title-second {
    display: inline;
    font-size: clamp(0.9rem, 3vw, 1.8rem);
    color: var(--secondary-color);
    margin-right: 50vw;
    padding: 0px;
    margin: 0px;
}
/* HEADER END */

/* HERO SECTION START */
.hero-section {
    height: 40vw;
    max-height: 200px;
    color: var(--button-text-color);
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: cover;          
    background-position: bottom center; /* Centers horizontally, anchors to the bottom so the top half is cropped out */
    background-repeat: no-repeat;    

    animation: heroPan 180s ease-in-out infinite alternate;
}

@keyframes heroPan {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 0%;
    }
}

.basic-button {
    display: block; /* Makes the anchor tag respect width and padding like a button */
    box-sizing: border-box; /* Ensures padding doesn't push the 100% width past its container */
    width: 100%;
    border: 0px;
    font-size: clamp(1rem, 1.8vw, 4rem);
    border-radius: 5px;
    animation-name: heroButtonAnimation;
    animation-duration: 1s;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);

    background-color: var(--secondary-color);
    color: var(--button-text-color);

    text-decoration: none; /* Removes the default anchor underline */
    text-align: center;    /* Centers the text since it's a link now */
    transition:
        width 0.25s ease,
        padding 0.25s ease,
        font-size 0.25s ease;
}

.basic-button:hover {
    padding: 0.8vw;
    font-size: clamp(1.1rem, 2vw, 4.1rem);
    font-weight: bold;
}

.basic-button, p {
    padding: 5px;
}
/* HERO SECTION END */

/* Info & CTA */

.info {
    text-align: center; 
    font-size: 1rem; 
    padding: 1rem 10vw 1rem 10vw;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.shadow-div {
    box-shadow: 0 0.5vw 0.8vw rgba(var(--shadow-color), 0.1);
    padding: 2vw;
}

/* PACKAGES */
.packages-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    padding: 2vw 4vw;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--main-color);
}

.package {
    flex: 1;
    min-width: 0;

    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow:hidden;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.package-img {
    width: 100%;
    height: 300px; /* Change this to whatever fixed pixel height you want */
    object-fit: cover;
    object-position: center; /* Ensures the crop happens from the center */
    border-radius: 6px;
    margin-bottom: 10px;
}

.package h2 {
    font-size: clamp(0.8rem, 2vw, 2rem);
    color: var(--text-color);
    text-decoration: underline;
    margin: 0 0 10px 0;
}

@media (max-width: 900px) {
    .packages-container {
        flex-direction: column;
        align-items: center;
    }

    .package {
        width: 100%;
        max-width: 400px;
    }
    
    .package h2 {
        white-space: normal;
    }
}
/* PACKAGES END */
/* OPEN HOURS END */

table {
    font-size: clamp(0.6rem, 5vw, 2rem);
}

caption {
    background-color: var(--secondary-color);
    color: var(--button-text-color);
}

tr {
    font-size: clamp(0.6rem, 3vw, 1.5rem);
}

th, td {
    text-align: center;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    padding-bottom: 0.5vw;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
    margin: 0px;
}

/* OPEN HOURS END */

.price-list-table td {
    font-size: clamp(0.6rem, 3vw, 1rem);
}
/* ABOUT US START */

.about-us {

}

.about-us p {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(0.6rem, 3vw, 1.5rem);
}


/* ABOUT US END */

/* CONTACT US */
.contact-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0.5vw 0.8vw rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: -0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00146b; /* Matching your secondary color style */
    box-shadow: 0 0 0 3px rgba(0, 20, 107, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .notice {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0.25rem 0;
}

.contact-form .button-wrapper {
    margin-top: 0.5rem;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background-color: #00146b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #000f4f;
}

.contact-form button[type="submit"]:active {
    transform: scale(0.98);
}
/* cONTACT US END */
/* FOOTER START */
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, 1rem);
}

.footer-logo {
    text-align: right;
}

@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;
    }
}
/* FOOTER END */


