/* =========================================
   03 Boho Henna (Horizontal Scroll)
   ========================================= */

:root {
    --terracotta: #E07A5F;
    --beige: #F4F1DE;
    --sage: #81B29A;
    --dark-blue: #3D405B;
    
    --font-heading: 'Caveat', cursive;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--beige);
    color: var(--dark-blue);
}

.vertical-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Slides / Sections */
.h-slide {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    gap: 40px;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

.boho-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.card-bg {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(61, 64, 91, 0.05);
}

.boho-icon {
    font-size: 4rem;
    color: var(--sage);
    margin-bottom: 20px;
}
.boho-icon-small {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.names {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.9;
    color: var(--terracotta);
    margin-bottom: 20px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
}
.desc {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.time {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--sage);
    margin-bottom: 30px;
}

.boho-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}
.boho-date span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--dark-blue);
}
.boho-date hr {
    width: 100%;
    border: none;
    border-top: 2px solid var(--terracotta);
    margin: 5px 0;
}

.boho-image-placeholder {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: 70vh;
    border-radius: 200px 200px 0 0; /* Arch shape */
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-1 { background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&q=80&w=800'); }
.img-2 { background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&q=80&w=800'); border-radius: 0 0 200px 200px; }

.btn-boho {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--terracotta);
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.btn-boho:hover {
    background-color: var(--terracotta);
    color: var(--beige);
}

/* Form */
.boho-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.boho-form input,
.boho-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--white);
    outline: none;
}
.boho-form input:focus,
.boho-form select:focus {
    border-color: var(--sage);
}

.btn-boho-solid {
    padding: 15px;
    background-color: var(--sage);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-boho-solid:hover {
    background-color: var(--dark-blue);
}

.form-message {
    text-align: center;
    color: var(--terracotta);
    font-weight: 600;
    margin-top: 10px;
}

.slide-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}
.slide-footer a {
    color: var(--terracotta);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .boho-image-placeholder {
        display: none; /* Hide decorative images on small screens to save space */
    }
    .names {
        font-size: 5rem;
    }
    .h-slide {
        padding: 40px 20px;
    }
}
