/* Color scheme variables */
:root {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --yam-primary: #8C4817; /* Main yam color */
    --yam-secondary: #D4A76A; /* Lighter complementary yam color */
    --yam-accent: #F3E9D9; /* Very light accent color */
    --cardano-blue: #0033AD;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.animate-heartbeat {
    animation: heartbeat 1.3s infinite;
    display: inline-block;
    color: #ff3366;
    margin: 0 0.2rem;
}

.sponsor-link {
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.sponsor-link:hover {
    color: var(--yam-secondary);
    text-shadow: 0 0 8px rgba(212, 167, 106, 0.3);
}

/* Logo styles */
.site-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.1);
}

/* Navigation styles */
nav a {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--yam-secondary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--yam-secondary);
}

/* Mobile navigation */
#mobile-menu a {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
}

#mobile-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--yam-secondary);
    transition: width 0.3s ease;
}

#mobile-menu a:hover::after,
#mobile-menu a.active::after {
    width: 100%;
}

#mobile-menu a:hover,
#mobile-menu a.active {
    color: var(--yam-secondary);
}



body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

nav {
    background-color: var(--yam-primary) !important;
    color: white !important;
}

.bg-yam-primary {
    background-color: var(--yam-primary) !important;
}

.bg-yam-secondary {
    background-color: var(--yam-secondary) !important;
}

.bg-yam-accent {
    background-color: var(--yam-accent) !important;
}

.text-yam-primary {
    color: var(--yam-primary) !important;
}

.text-yam-secondary {
    color: var(--yam-secondary) !important;
}

.bg-white {
    background-color: var(--bg-secondary) !important;
}

.text-gray-600 {
    color: var(--text-secondary) !important;
}

section {
    background-color: var(--bg-primary);
}

section.bg-gray-100 {
    background-color: var(--bg-secondary);
}
