:root {
    --ocean-blue: #006994;
    --seafoam-green: #9FE2BF;
    --coral-pink: #FF7F50;
    --royal-purple: #6A0DAD;
    --sand-beige: #F4E4BC;
    --white: #ffffff;
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Quicksand', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--ocean-blue);
    background-color: #e0f7fa;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--royal-purple);
}

.btn-sirenita {
    background-color: var(--coral-pink);
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-family: var(--font-heading);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sirenita:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
    color: white;
    text-decoration: none;
}

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

.btn-music-shell {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--royal-purple);
    color: var(--royal-purple);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-music-shell:hover {
    transform: rotate(360deg);
    background-color: var(--royal-purple);
    color: var(--white);
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(180deg, #a1c4fd 0%, #c2e9fb 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    color: var(--royal-purple);
    text-shadow: 2px 2px 0px var(--seafoam-green);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--coral-pink);
    margin-bottom: 30px;
}

.hero-image-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 8px solid var(--seafoam-green);
    overflow: hidden;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(0, 105, 148, 0.2);
    position: relative;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bubbles Animation */
.bubble {
    position: absolute;
    bottom: -100px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-up 10s infinite ease-in;
    z-index: 1;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        bottom: 100%;
        transform: translateX(-20px);
    }
}

/* Countdown */
.hero-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.count-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 15px;
    min-width: 70px;
    border: 2px solid var(--ocean-blue);
    color: var(--ocean-blue);
}

.count-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.count-box small {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '★';
    display: block;
    color: var(--seafoam-green);
    font-size: 1.5rem;
    margin-top: 5px;
}

.sirenita-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 105, 148, 0.1);
    border: 2px solid var(--seafoam-green);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.icon-sea {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

/* Footer */
footer {
    background-color: var(--ocean-blue);
    color: white;
}

footer a {
    color: var(--seafoam-green);
}

/* Gallery */
.gallery-frame {
    border: 5px solid var(--seafoam-green);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    padding: 5px;
}

.gallery-frame:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
}

.gallery-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Timeline */
.timeline-item {
    border-bottom: 1px dashed var(--seafoam-green);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    width: 30%;
    text-align: right;
    padding-right: 20px;
}

.timeline-item .event {
    font-size: 1.2rem;
    width: 70%;
    text-align: left;
    padding-left: 20px;
    border-left: 2px solid var(--seafoam-green);
}