body { font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
.text-emerald { color: #0f5132; }
.bg-emerald { background-color: #0f5132 !important; }
.bg-dusty { background-color: #7da2a9 !important; }

.btn-emerald {
    background-color: #0f5132; color: #fff; transition: all 0.3s ease;
}
.btn-emerald:hover { background-color: #0a3d26; }

.hero {
    height: 100vh;
    color: #fff; display: flex; justify-content: center; align-items: center; text-align: center;
}

.section-title { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 1px; }
.nav-link { color: #0f5132 !important; transition: 0.2s; }
.nav-link:hover { color: #7da2a9 !important; }

#photos img, .gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}
#photos img:hover, .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

input, select, textarea { border-radius: 10px !important; }

#countdown .time-box {
    background: rgba(15, 81, 50, 0.8); /* Emerald overlay */
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 90px;
    transition: transform 0.3s ease;
}
#countdown .time-box:hover {
    transform: scale(1.1);
}
.time-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}
.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
