:root {
    --green-sage: #8FBC8F;
    --green-euca: #5F8575;
    --green-gold: #C5A009;
    --green-white: #FFFFFF;
    --green-bg: #FAFAF8;
    --green-text: #4A5D50;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--green-bg);
    color: var(--green-text);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--green-euca);
    letter-spacing: 1px;
}

h2,
h3 {
    font-family: var(--font-heading);
    color: var(--green-euca);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--green-euca);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--green-gold);
}

/* Components */
.green-card {
    background: var(--green-white);
    border: 1px solid rgba(95, 133, 117, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(95, 133, 117, 0.05);
    position: relative;
    overflow: hidden;
}

/* Gold geometric accent corner */
.green-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-top: 1px solid var(--green-gold);
    border-left: 1px solid var(--green-gold);
    pointer-events: none;
}

.green-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-bottom: 1px solid var(--green-gold);
    border-right: 1px solid var(--green-gold);
    pointer-events: none;
}

.btn-green {
    background-color: var(--green-euca);
    color: white;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 1px;
    padding: 12px 35px;
    border-radius: 0;
    border: 1px solid var(--green-euca);
    transition: all 0.4s ease;
}

.btn-green:hover {
    background-color: transparent;
    color: var(--green-euca);
    text-decoration: none;
}

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

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

.category-tag {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--green-sage);
    margin-bottom: 15px;
    display: block;
}

.hero-image {
    width: 250px;
    height: 350px;
    object-fit: cover;
    margin: 30px auto;
    box-shadow: 15px 15px 0px rgba(235, 240, 235, 1);
    /* Offset shadow style */
}

/* Countdown */
.green-countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.count-item {
    text-align: center;
}

.count-item span {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--green-euca);
    display: block;
    line-height: 1;
}

.count-item small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-sage);
}

/* Leaf Animation Canvas */
#leafCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.btn-music-green {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--green-euca);
    color: var(--green-euca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-music-green:hover {
    background: var(--green-euca);
    color: white;
}