body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background: url("images/Swaying\ Sunflowers\ Dance_loop_.gif") no-repeat center center fixed;
    background-size: cover;
    color: #6a008a;
}

/* ========== Header ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.85);
    flex-wrap: wrap;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #ff69b4;
    text-shadow: 1px 1px #ffa500;
    flex-grow: 1;
    text-align: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* ========== Navigation ========== */
nav.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #6a008a;
    font-weight: bold;
}

/* ========== Mobile Menu Toggle ========== */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #6a008a;
    cursor: pointer;
}

/* ========== Section Styling ========== */
.section {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.section h2 {
    margin-top: 0;
}

.book-now,
.main-book-now {
    background-color: #a62bca;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
}

.main-book-now {
    display: block;
    width: fit-content;
    margin: 2rem auto;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ========== Accordion (if reused elsewhere) ========== */
.accordion {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    padding: 1rem;
}

.panel {
    display: none;
}

/* ========== Footer ========== */
footer {
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #c7a2c7;
}

/* ========== About Page ========== */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.family-photo {
    max-width: 80%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Additional CSS for Learn More page */
.learn-section {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.learn-section h2 {
    margin-top: 0;
}

.learn-section img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.learn-section iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .learn-section {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    .learn-section img,
    .learn-section iframe {
        flex: 1;
    }

    .learn-section div {
        flex: 2;
    }
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
    .panel {
        display: block !important;
    }

    .about-wrapper {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .family-photo {
        max-width: 30%;
    }

    .learn-section img {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    nav.nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
        text-align: center;
    }

    nav.nav-menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        order: -1;
        text-align: left;
        width: 100%;
    }
}

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

.form-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: 'Quicksand', sans-serif;
}

form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

form input,
form select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #f6b93b;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
