body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  min-height: 100vh;
}

h1, h2 {
  font-family: 'Pacifico', cursive;
}

.btn-magical {
  background: #b27dd9;
  color: white;
}

.btn-magical:hover {
  background: #9f6ec4;
}

.insta-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo image in hero */
header img {
  width: 160px;
  height: 160px;
}

/* Section background gradients */
#book {
  background: linear-gradient(to right, #fde2ff, #d7f5ff);
}

#contact {
  background-color: #f4fbe5;
}

/* Section headings with Pacifico font */
#contact h2,
#contact p.mt-4 {
  font-family: 'Pacifico', cursive;
}

.responsive-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Theme variables */
:root {
    --bg-primary: white;
    --bg-secondary: #f8f9fa;
    --text-primary: #212529;
    --text-muted: #6c757d;
    --accent-primary: #b27dd9;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --forest-overlay: rgba(26, 71, 42, 0.8);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #e9ecef;
    --text-muted: #adb5bd;
    --accent-primary: #c89ee6;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --forest-overlay: rgba(15, 35, 20, 0.9);
}

/* Main content container */
.main-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 1rem;
    padding: 2rem 1rem;
    position: relative;
    z-index: 4;
    box-shadow: 
        0 0 20px var(--shadow-color),
        0 0 40px rgba(42, 89, 58, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (min-width: 1400px) {
    .main-container {
        max-width: 1320px;
    }
}

/* Container sections */
.container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Additional aesthetic improvements */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-light {
    background-color: var(--bg-secondary) !important;
}

/* Theme toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--accent-primary);
    color: white;
}

/* Full-page background with enchanted forest effect */
.page-background {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    background: 
        linear-gradient(to bottom, var(--forest-overlay), rgba(26, 71, 42, 0.6)),
        url('/assets/img/forest-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: background 0.3s ease;
}

/* Center area gradient */
.page-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(237, 247, 243, 0.9) 0%,
        rgba(237, 247, 243, 0.7) 50%,
        rgba(237, 247, 243, 0) 100%
    );
    z-index: 1;
}

/* Sparkle overlay */
.page-background::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/sparkle-bg.svg');
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.8;
    animation: forestSparkle 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
}

/* Forest texture overlay */
.forest-texture {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(26, 71, 42, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 71, 42, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 3;
}

/* Sparkle animation */
@keyframes forestSparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

/* Forest particles effect */
.forest-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.forest-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 100, 0.7);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0.8;
    }
}

/* Carousel styling */
.carousel {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    height: 400px; /* Fixed height */
}

.carousel-inner {
    height: 100%; /* Make inner container fill carousel height */
}

.carousel-item {
    height: 100%; /* Make items fill carousel height */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: -3rem;
}

.carousel-indicators button {
    background-color: #b27dd9 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

.clickable-image {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.clickable-image:hover,
.clickable-image:focus {
  opacity: 0.8;
  outline: 3px solid #b27dd9; /* Matches your theme color */
  outline-offset: 2px;
}

/* Remove outline when using mouse */
.clickable-image:focus:not(:focus-visible) {
  outline: none;
}

.google-form-container {
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.google-form-container iframe {
    width: 100%;
    min-height: 1200px;
    border: none;
    overflow: hidden;
    scrolling: no;
    -webkit-overflow-scrolling: touch;
}

.btn-waiver {
    background: linear-gradient(145deg, #9b8aa8, #786785);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.btn-waiver:hover {
    background: linear-gradient(145deg, #a595b2, #837291);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-waiver:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-back {
    background: linear-gradient(145deg, #9b8aa8, #786785);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
}

.btn-back:hover {
    background: linear-gradient(145deg, #a595b2, #837291);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* If using the nav link version */
.nav-link-custom {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #786785;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #9b8aa8;
}

.nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

