:root {
    --ocean-blue: #00B4D8;
    --turquoise: #90E0EF;
    --coral: #FF7F50;
    --sand: #F4A460;
    --deep-blue: #03045E;
    --font-heading: 'Pacifico', cursive;
    --font-body: 'Nunito', sans-serif;
}

body {
    background-color: #CAF0F8;
    color: var(--deep-blue);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2390e0ef' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:wght@400;700&display=swap');

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--deep-blue);
    font-weight: 400;
    /* Pacifico is naturally bold */
    letter-spacing: 1px;
}

h1.hero-title {
    font-size: 4.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: var(--coral);
}

h2.section-title::after {
    content: '🌺';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Components */
.moana-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
    border: 2px solid var(--turquoise);
    position: relative;
    overflow: hidden;
}

.moana-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(45deg, var(--sand), var(--sand) 10px, white 10px, white 20px);
}

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

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(180deg, #48CAE4 0%, #0077B6 100%);
    padding: 100px 0 150px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Wave Divider */
.custom-shape-divider-bottom-1681234567 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

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

.custom-shape-divider-bottom-1681234567 .shape-fill {
    fill: #CAF0F8;
}

/* Countdown */
.tropical-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
}

.count-shell {
    width: 70px;
    height: 70px;
    background: var(--sand);
    border-radius: 50% 50% 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.count-shell span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1;
}

.count-shell small {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Buttons */
.btn-moana {
    background: var(--coral);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
    transition: all 0.3s;
}

.btn-moana:hover {
    background: #FF6347;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.6);
    text-decoration: none;
}

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

.btn-music-tropical {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ocean-blue);
    color: white;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

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

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