:root {
    --sky-top: #E0F7FA;
    --sky-bottom: #B2EBF2;
    --cloud-white: #FFFFFF;
    --text-color: #607D8B;
    --accent-yellow: #FFD700;
    --accent-pink: #FF69B4;
    --font-heading: 'Chewy', cursive;
    --font-body: 'Comfortaa', cursive;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: linear-gradient(to bottom, var(--sky-top), var(--sky-bottom));
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
}

.big-font {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-color);
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.5);
}

.medium-font {
    font-size: 2.5rem;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Cloud Shapes & Containers */
.cloud-container {
    background: var(--cloud-white);
    border-radius: 50% 20% / 10% 40%;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 2rem auto;
    max-width: 800px;
    z-index: 10;
}

.cloud-shape-1 {
    border-radius: 50% 20% / 10% 40%;
}

.cloud-shape-2 {
    border-radius: 20% 50% / 40% 10%;
}

.cloud-shape-3 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Full Width Cloud Divider */
.cloud-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.cloud-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cloud-divider-top svg,
.cloud-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.cloud-divider-top .shape-fill,
.cloud-divider-bottom .shape-fill {
    fill: var(--cloud-white);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.floating-elephant {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--cloud-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Background Clouds Animation */
.bg-cloud {
    position: absolute;
    opacity: 0.6;
    z-index: 1;
    animation: drift linear infinite;
}

.bg-cloud i {
    color: var(--cloud-white);
}

@keyframes drift {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100vw);
    }
}

/* Stars */
.star {
    position: absolute;
    color: var(--accent-yellow);
    animation: twinkle 2s infinite alternate;
    z-index: 5;
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Countdown Stars */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.star-box {
    width: 90px;
    height: 90px;
    background: var(--accent-yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cloud-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Buttons */
.btn-cloud {
    background-color: var(--accent-pink);
    color: var(--cloud-white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-cloud:hover {
    background-color: #ff85c0;
    color: var(--cloud-white);
    transform: translateY(-3px) scale(1.05);
    text-decoration: none;
}

/* Music Control */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-music-cloud {
    width: 60px;
    height: 60px;
    background-color: var(--cloud-white);
    color: var(--accent-pink);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
    font-size: 1.5rem;
}

.btn-music-cloud:hover {
    transform: scale(1.1);
    color: var(--accent-yellow);
}

.btn-music-cloud.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Parents Cloud Frames */
.parents-cloud {
    width: 160px;
    height: 160px;
    background: var(--cloud-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.parents-cloud::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--cloud-white);
    border-radius: 50%;
    top: 10px;
    right: -10px;
}

.parents-cloud::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--cloud-white);
    border-radius: 50%;
    bottom: 10px;
    left: -10px;
}

.parents-cloud i {
    position: relative;
    z-index: 2;
}

/* Gallery Cloud Grid */
.elefante-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.gallery-item-cloud {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid var(--cloud-white);
}

.gallery-item-cloud:hover {
    transform: rotate(2deg) scale(1.05);
}

.gallery-item-cloud img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--cloud-white);
    border-right: 4px dashed var(--text-color);
    opacity: 0.5;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 1rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--cloud-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--accent-pink);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-time {
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

/* Accommodation Cards */
.accom-card {
    background: var(--cloud-white);
    padding: 2rem;
    border-radius: 50% 20% / 10% 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accom-card:hover {
    transform: translateY(-5px);
}

/* Footer */
footer a:hover {
    color: var(--accent-pink) !important;
}

/* Section Padding */
.section-padding {
    padding: 4rem 1rem;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .timeline-icon {
        left: 0;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        left: 0;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
}