/* Custom CSS for Bosa Donuts */

:root {
    --forest-dark: #1B4332;
    --forest-medium: #2D6A4F;
    --forest-light: #52B788;
    --off-white: #FAF9F6;
    --amber: #D4A574;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--forest-dark);
    line-height: 1.6;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--forest-medium);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--forest-dark);
    color: var(--off-white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--forest-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--forest-dark);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--forest-dark);
}

.btn-secondary:hover {
    background-color: var(--forest-dark);
    color: var(--off-white);
    transform: translateY(-2px);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-medium);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--forest-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 1rem 0;
        animation: none;
    }
    
    .card-1, .card-2 {
        margin: 1rem 0;
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
