body { 
    background-color: var(--body-color);
    margin: 0px;
    padding: 0px;
    font-family: 'Cinzel', serif;
    color: var(--text-color);
}

.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;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

button {
    background-color: var(--secondary-color);
    color: var(--button-text-color);
    border: 0px;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
}


/* LINKS */

a:link {
    color: var(--link-color-unvisited);
}

a:visited {
    color: var(--link-color-visited);
}

a:active {
    color: var(--link-color-active);
}

a:hover {
    color: var(--link-color-hover);
}

.discretelink {
    color: inherit;         
    text-decoration: none;   
    font: inherit;           
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}


/* HEADER START */
header {
    background-color: var(--header-bg-color);

    padding: 2px 2px;
    height: 32px;
    font-size: clamp(0.9rem, 0.8vw + 0.75rem, 1.15rem);
    overflow: hidden;
}

/* Dark/light mode Buttons */
header .std-button {
    font-size: 16px;
    height: 30px;
    padding: 4px;
    margin-right: 10px;
}

/* Mini Buttons */
.mini-buttons {
    background-color: transparent;
    background-size: cover; 
    font-size: 16px;
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

/* mini Buttons */

.std-button {
    float: left;
}

.small-title {
    margin-right: 50vw;
    padding: 0px;
    margin: 0px;
    float: right;
}

/* HEADER END */

.colored-div {
    background: linear-gradient(transparent, var(--main-color));

    justify-content: center;
}

.solid-colored-div {
    background:var(--main-color);
    
    justify-content: center;
}

.centered-div {
    justify-content: center;
    text-align: center;
}

/* HERO SECTION START */
.hero-section {
    color: var(--button-text-color);
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: var(--hero-image);
    background-size: 200% auto; /* key line */

    background-position: 0% center;
    animation: heroPan 180s ease-in-out infinite alternate;
}


@keyframes heroPan {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 100% center;
    }
}


@keyframes heroAnimation {
    0% {
        opacity: 0%;
        transform: translateX(-20px);
    }
    100% {
        opacity: 100%;
        transform: translateX(0);
    }
}

.title {
    font-size: clamp(2rem, 18vw, 8rem);
    font-weight: bold;

    padding: 0;
    margin: 0;

    animation-name: heroAnimation;
    animation-duration: 1s;

}

.slogan {
    font-size: clamp(0.5rem, 6vw, 4rem);
    font-weight: bold;
    margin: 0;
    padding: 0;

    animation-name: heroAnimation;
    animation-duration: 1s;
}

#my-what {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}


.desc {
    font-size: clamp(0.5rem, 3vw, 2rem);
    width: 40vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom:25px;
    font-family: 'Times New Roman', serif;

    animation-name: heroAnimation;
    animation-duration: 1s;
}

@keyframes heroButtonAnimation {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
   100% {

   }
}

.basic-button {
    border: 0px;
    color: var(--button-text-color);
    font-size: clamp(1rem, 5vw, 4rem);
    width: 60vw;
    border-radius: 5px;

    animation-name: heroButtonAnimation;
    animation-duration: 1s;

    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, 6vw, 4.1rem);
    font-weight: bold;
}

.basic-button, p {
    padding: 5px;
}
/* HERO SECTION END */

/* PACKAGE CONTAINER START */
.package-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Forces all cards to match the height of the tallest one */
    padding: 4vw;
    gap: 2vw;
}

@keyframes packagesAnimation {
    0% { transform: scale(0.7); }
    35% { transform: scale(1.05); }
    60% { transform: scale(1); }
    80% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.packages {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: var(--border);
    border-radius: 10px;
    background-color: var(--main-color);
    padding: 10px;
    min-width: 110px;
    justify-content: space-between; /* Pushes the button to the bottom evenly */
    text-align: center;
    opacity: 0.7;

    transition:
        width 0.25s ease,
        padding 0.25s ease,
        transform 0.25s ease, /* Swapped margin-top for transform */
        opacity 0.25s ease;

    animation: packagesAnimation 1.5s ease-out;
}

.packages:hover {
    opacity: 1;
    transform: translateY(-8px); /* Smoothly lifts the card up instead of shifting layout flow */
}

.package-img {
    margin-top: 30px;
    width: 6vw;
    max-width: 50px;
}

.packages .package-title, .package-desc {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.package-title {
    font-weight: bold;
    text-decoration: underline;
    font-size: clamp(20px, 2vw, 30px);
    height: auto; /* Removed fixed height trap so it wraps cleanly */
    width: 100%;
    margin: 0;          
    padding: 0;        
}

.package-subtitle {
    font-size: clamp(18px, 1.8vw, 22px);
}

.package-desc {
    font-style: italic;
    font-size: clamp(14px, 1.8vw, 22px);
    height: auto; /* Removed fixed height trap */
    margin-bottom: 20px;
    background-color: var(--mid-color);
    border-radius: 12px;
}

.package-button {
    width: 90%;
    font-size: clamp(15px, 1.8vw, 22px);
    padding: 10px;
    font-weight: bold;
    margin-top: auto; /* Locks button cleanly to the bottom */
}

@media (max-width: 1000px) {
    .package-container {
        flex-direction: column;
        align-items: center; /* Centers the stacked cards horizontally */
        height: auto;
        gap: 40px;
        padding: 20px;
    }

    .packages {
        width: 100%;
        max-width: 600px;
        height: auto;
        align-items: center; /* Ensures content inside stays centered when stacked */
    }

    .package-img {
        width: clamp(40px, 10vw, 80px);
    }
}
/* PACKAGES CONTAINER END */

/* WHY-US-SECTION START */
.why-us-section {
    padding-top: 20px;
}

.why-us-title {
    font-weight: bold;
    font-size: clamp(1rem, 5vw, 4rem);
    text-decoration: underline;
}

.reasons-conatiner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
}



.reasons-title {
    font-weight: bold;
    font-size: 20px;
    text-decoration: underline;
}
/* WHY-US-SECTION END */

/* MEET ME START */
.meet-me {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 40px;
}


.meet-me-img {
    text-align: right;
    overflow: hidden;
    border-radius: 10px;

    width: clamp(300px, 40vw, 600px);
    height: clamp(200px, 30vw, 400px);

    background-image: url("images/wedding.jpeg");
    background-size: cover;
    background-position: center;
}


.meet-me-desc {
    text-align: left;
    justify-content: left;
}

@media (max-width: 900px) {
    .meet-me {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .meet-me-img {
        width: 100%;
        max-width: 600px;
    }

    .meet-me-desc {
        text-align: left;
        width: 100%;
        margin-top: 20px;
    }
}


/* MEET ME 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);
}

.cta-buttons {
    justify-content: center;
    text-align: center;
}

.contact-details ul, .cta-buttons ul {
    list-style: none;
}

.cta-buttons li {
    margin-bottom: 2px;
}

.footer-logo {
    text-align:right;
}

.footer-logo p {
    font-weight: bold;
    font-size: clamp(2rem, 5vw, 4rem);
}

@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;
    }
}

/* CONTACT.HTML START */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: clamp(250px, 50vw, 500px);
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: clamp(14px, 1.2vw, 20px);
    border: var(--secondary-color);
    border-radius: 6px;
}

.contact-form textarea {
    height: 200px;
}

.contact-form button {
    padding: 12px;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: bold;
    background-color: var(--secondary-color);
    color: var(--button-text-color);
    border-radius: 6px;
    cursor: pointer;
}

.contact-form .button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-section {

    padding-bottom: 30px;
    padding-top: 30px;
}

.contact-section notice {
    font-size: clamp(0.875rem, 2vw + 0.5rem, 1.25rem);
}

/*  PRIVACY POLICY */

.policy-container {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.policy-title {
    font-size: clamp(1rem, 3vw, 4rem);
}

.policy-container .policy-section {
    border: var(--border); 
} 

.policy-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 10px;
}

.policy-section p {
    font-size: clamp(1rem,2.5vw, 6rem);
}

/* PRICE ESTIMATOR */

.form-container form {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.form-container form > *:nth-child(even) {
    background-color: var(--main-color);
}

.form-container form > *:nth-child(odd) {
    background-color: var(--mid-color); 
}

.form-container fieldset {
    padding: 2vw;
    border: 1px solid white none none none;
    border-width: 1px 0 0 0;
    text-align: center;
        font-size: clamp(0.8rem,2.5vw, 6rem);

}

.form-container legend {
    padding: 0 10px;
    font-weight: bold;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.pricing-table th, 
.pricing-table td {
    text-align: center;
    border-bottom: 2px solid white;
}

.extras-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
}

.input-circle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    padding: 1em 1.5rem;
    
    background-color: var(--main-color, #ffffff);
    border: var(--border, 1px solid #ccc);
    border-radius: 8px;
    
    font-family: inherit;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.input-circle input[type="radio"] {
    accent-color: var(--secondary-color, #4a6b5d);
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
}

.input-circle:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.input-circle:has(input[type="radio"]:checked) {
    border-color: var(--secondary-color, #4a6b5d);
    box-shadow: 0 0 0 2px var(--secondary-color, #4a6b5d);
}

.extras-container .extras {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    
    display: flex;
    flex-direction: column;
    text-align: center;
}

.extras-inner {
    padding: 16px;
}

.extras-img-cont {
    height: 10vw;

}

.extras-img {
    display: block;
    width: 8vw;
    max-width: 150px;
    margin-inline: auto;
    margin-bottom: 10px;
    filter: invert(100%);
}

.quantity-control {
    width: 100%;
    max-height: 50px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin-top: auto; 
    overflow: hidden;
}

.quantity-control > * {
    flex: 1;
    width: auto;
    box-sizing: border-box;
    text-align: center;
    
    font-size: clamp(14px, 2vw, 25px);
    color: white;
}

.qty-btn {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;

    opacity: 0.5;
    border-radius: 0;
}

.qty-btn:hover {
    opacity: 1;
}

.forms-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    background: transparent;
    border: none;
    text-align: center;
}

.forms-input::-webkit-outer-spin-button,
.forms-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.forms-input::-webkit-outer-spin-button,
.forms-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* TEMPORARY STYLING

header button {
    display: none !important;
}

button {
    display: none !important;
} */
