:root {
    --sunset-orange: #FF7E5F;
    --sunset-pink: #FEB47B;
    --ocean-teal: #00B4DB;
    --sand-beige: #FFF5E1;
    --palm-green: #2E8B57;
    --text-color: #333;
    --font-heading: 'Kaushan Script', cursive;
    --font-body: 'Open Sans', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 400;
    min-height: 100vh;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Open+Sans:wght@300;400;700&display=swap');

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    transform: rotate(-3deg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--palm-green);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: none;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--sunset-orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Components */
.tropical-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.tropical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--sunset-orange), var(--ocean-teal));
}

.btn-tropical {
    background: var(--ocean-teal);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-tropical:hover {
    background: var(--palm-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
    color: white;
    text-decoration: none;
}

/* Hero */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#leavesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.hero-photo-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.hero-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
}

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

.btn-music-tropical {
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--sunset-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.btn-music-tropical:hover {
    color: var(--palm-green);
    transform: rotate(360deg);
}

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

.time-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.time-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.time-box small {
    color: var(--sand-beige);
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* Footer */
footer {
    background: var(--ocean-teal);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: scaleX(1.5);
}