/* ============================================
   Warm & Magical Theme for All Pages
   "Magical outings for families – easy to book"
   ============================================ */

/* Global Warm & Playful Styles */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.7;
}

/* Warm, friendly typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #1f2937;
}

/* More images, less text - Image-first sections */
.image-first-section {
    position: relative;
    overflow: hidden;
}

.image-first-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Warm, playful cards */
.warm-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.warm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15) !important;
}

/* Trustworthy, clearly guided sections */
.trust-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(20, 184, 166, 0.03) 100%);
    padding: 4rem 0;
}

/* Emotion-first hero sections */
.emotion-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.emotion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    z-index: 1;
}

.emotion-hero .container {
    position: relative;
    z-index: 2;
}

/* Playful but not kitschy - rounded, soft elements */
.playful-element {
    border-radius: 20px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Image galleries - more images, less text */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-gallery img {
    border-radius: 12px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Warm color accents */
.warm-accent {
    color: var(--bs-violet);
}

.warm-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

/* Text reduction - shorter, more impactful */
.text-concise {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
}

.text-concise p {
    margin-bottom: 1.5rem;
}

/* Emotion-first CTAs */
.emotion-cta {
    background: linear-gradient(135deg, var(--bs-violet) 0%, var(--bs-violet-dark) 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.emotion-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Clearly guided sections */
.guided-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Real experience images */
.real-experience-img {
    border-radius: 16px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Section spacing - more breathing room */
.section-spacing {
    padding: 5rem 0;
}

/* Remove excessive text, focus on visuals */
.text-minimal {
    max-width: 600px;
    margin: 0 auto;
}

/* Trust indicators */
.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 8px;
    color: var(--bs-turquoise);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Playful but professional icons */
.playful-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    color: var(--bs-violet);
    font-size: 1.5rem;
}

/* Responsive image containers */
.img-container-warm {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.img-container-warm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-container-warm:hover img {
    transform: scale(1.08);
}

/* Warm section backgrounds */
.section-warm {
    background: #fafafa;
    padding: 4rem 0;
}

.section-warm-alt {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 4rem 0;
}
