body { 
    background-color: var(--body-color);
    margin: 0px;
    padding: 0px;
    font-family: 'Cinzel', serif;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

button {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: 0px;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
}

a {
    color: inherit;          /* same colour as surrounding text */
    text-decoration: none;   /* no underline */
    font: inherit;           /* same font */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}



/* HEADER START */
header {
    background-color: var(--header-bg-color);

    padding: 2px 2px;
    height: 32px;
    font-size: 16px;
}

/* 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;
}

.pirate-button {
    background-image: var(--skull-button-image);
}

.fantasy-button {
    background-image: var(--witch-button-image);
    background-color: transparent;
    background-size: cover; 
    font-size: 16px;
    height: 30px;
    width: 30px;
}
/* mini Buttons */

.header .toggle-button, .fantasy-button, .std-button {
    float: left;
}

h1 {
    margin-right: 50vw;
    padding: 0px;
    margin: 0px;
    float: right;
}

/* HEADER END */

.colored-div {
    background: linear-gradient(transparent, var(--main-color));

    justify-content: center;
}

.centered-div {
    justify-content: center;
    text-align: center;
}

/* HERO SECTION START */
.hero-section {
    height: 380px;
    padding-top: 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% {
        color: var(--button-text-color);
        transform: translateX(-20px);
    }
    100% {
        color: var(--text-color);
        transform: translateX(0);
    }
}

.title {
    font-size: 100px;
    font-weight: bold;
    height: 95px;

    animation-name: heroAnimation;
    animation-duration: 1s;
}

.slogan {
    font-size: 30px;
    font-weight: bold;
    margin-bottom:25px;

    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: 20px;
    width: 300px;
    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: 30px;
    width: 300px;
    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: 10px;
    width: 310px;
    font-size: 34px;
    font-weight: bold;
}

.basic-button, p {
    padding: 5px;
}
/* HERO SECTION END */

/* PACKAGE CONTAINER START */
.package-container {
  height: 380px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 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 {
    border: var(--border);
    border-radius: 10px;
    background-color: var(--main-color);
    height: 350px;
    width: 26vw;
    min-width: 200px;
    justify-content: center;
    text-align: center;
    opacity: 0.7;

    transition:
        width 0.25s ease,
        padding 0.25s ease,
        margin-top 0.25s ease;

    animation: packagesAnimation 1.5s ease-out;
}

.packages:hover {
    padding:10px;
    opacity: 1;
    margin-top: 20px;
}

.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(16px, 2vw, 40px);

    height: 50px;
    width: 100%;
    margin: 0;          
    padding: 0;        
}

.package-desc {
    font-style: italic;
    font-size: clamp(14px, 0.8vw, 20px);
    height: 58px;
}

.package-button {
    height: 60px;
    width: 90%;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 1000px) {
    .package-container {
        flex-direction: column;   /* stack vertically */
        height: auto;             /* let height grow naturally */
        gap: 40px;                /* spacing between packages */
        padding: 20px;            /* reduce padding at high zoom */
    }

    .packages {
        width: 100%;              /* full width */
        max-width: 600px;         /* optional cap */
        height: auto;             /* let content define height */
    }

    .package-img {
        width: clamp(40px, 10vw, 80px); /* scale image smoothly */
    }
}

/* PACKAGES CONTAINER END */

/* WHY-US-SECTION START */
.why-us-section {
    padding-top: 20px;
}

.why-us-title {
    font-weight: bold;
    font-size: 35px;
    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;   /* stack vertically */
        align-items: center;      /* optional: center content */
        text-align: center;       /* optional: center text */
    }

    .meet-me-img {
        width: 100%;              /* image fills the column */
        max-width: 600px;         /* cap size */
    }

    .meet-me-desc {
        text-align: left;         /* keep your original alignment */
        width: 100%;
        margin-top: 20px;
    }
}


/* MEET ME END */

/* FOOTER START */

footer {
    display: flex;
    justify-content: space-between; /* pushes left + center + right apart */
    align-items: center;
    padding: 20px 40px; 

}

footer > div {
    flex: 1;
}

.contact-details {

}

.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: 60px;
}

@media (max-width: 900px) {
    footer {
        flex-direction: column;     /* stack vertically */
        align-items: center;        /* center everything */
        text-align: center;         /* fix alignment drift */
        gap: 20px;                  /* spacing between items */
    }

    footer > div {
        flex: none;                 /* stop forced equal widths */
        width: 100%;                /* each section fills the column */
    }

    .footer-logo {
        text-align: center;         /* override right-align */
    }
}

/* 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: 2px solid #1d3b51;
    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(--button-bg-color);
    color: var(--button-text-color);
    border-radius: 6px;
    cursor: pointer;
}

.contact-form .button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-section {

    height: 800px;
    padding-top: 30px;
}



/* TEMPORARY STYLING

header button {
    display: none !important;
}

button {
    display: none !important;
} */
