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

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #0f2e22 0%, #1a3a2e 15%, #2d5a47 35%, #3d6b52 50%, #4a7c5f 65%, #5a8d6c 80%, #6b9d7a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #f5f5dc;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 230, 211, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 195, 74, 0.06) 0%, transparent 50%);
    animation: backgroundPulse 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Sparkle Container */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Header Styles */
.main-header {
    text-align: center;
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 10;
}

.header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    animation: logoFloat 6s ease-in-out infinite;
}

.header-logo {
    max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(139, 195, 74, 0.3)) 
            drop-shadow(0 5px 15px rgba(245, 230, 211, 0.2))
            drop-shadow(0 0 20px rgba(139, 195, 74, 0.2));
    animation: logoGlow 4s ease-in-out infinite alternate;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.header-logo:hover {
    filter: drop-shadow(0 20px 50px rgba(139, 195, 74, 0.5)) 
            drop-shadow(0 10px 25px rgba(245, 230, 211, 0.4))
            drop-shadow(0 0 40px rgba(139, 195, 74, 0.4));
    transform: scale(1.08);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 10px 30px rgba(139, 195, 74, 0.3)) 
                drop-shadow(0 5px 15px rgba(245, 230, 211, 0.2))
                drop-shadow(0 0 20px rgba(139, 195, 74, 0.2));
    }
    100% {
        filter: drop-shadow(0 15px 40px rgba(139, 195, 74, 0.4)) 
                drop-shadow(0 8px 20px rgba(245, 230, 211, 0.3))
                drop-shadow(0 0 30px rgba(139, 195, 74, 0.3));
    }
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    padding: 1rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

/* Navigation Card */
.navigation-card {
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.95) 0%, rgba(160, 130, 90, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(139, 195, 74, 0.2);
    max-width: min(90vw, 700px);
    width: 100%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 195, 74, 0.3);
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.nav-button:active {
    transform: translateY(0);
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-button-shop {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5437 100%);
}

.nav-button-shop:hover {
    background: linear-gradient(135deg, #9B7F57 0%, #7B6447 100%);
}

.nav-button-faq {
    background: linear-gradient(135deg, #8B7355 0%, #6B5A3F 100%);
}

.nav-button-faq:hover {
    background: linear-gradient(135deg, #9B8355 0%, #7B6A4F 100%);
}

.nav-button-contact {
    background: linear-gradient(135deg, #A0826D 0%, #7D5F4A 100%);
}

.nav-button-contact:hover {
    background: linear-gradient(135deg, #B0927D 0%, #8D6F5A 100%);
}

.nav-button-shirts {
    background: linear-gradient(135deg, #8B9A6B 0%, #6B7A4F 100%);
}

.nav-button-shirts:hover {
    background: linear-gradient(135deg, #9BAA7B 0%, #7B8A5F 100%);
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 139, 139, 0.2);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Sparkle Styles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 6px #fff, 0 0 12px #fff;
    animation: sparkleAnimation 2s ease-out forwards;
}

.sparkle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: sparklePulse 1s ease-in-out infinite;
}

.sparkle::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: sparkleRing 2s ease-out forwards;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.8) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

@keyframes sparklePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.6;
    }
}

@keyframes sparkleRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Nature particles */
.nature-particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 3rem 1rem 2rem;
    }
    
    .header-logo {
        max-width: 180px;
        max-height: 180px;
    }
    
    .main-content {
        padding: 0.5rem 1rem 1.5rem;
        min-height: auto;
    }
    
    .navigation-card {
        padding: 1.75rem 1.5rem;
        max-width: min(95vw, 700px);
    }
    
    .nav-button {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .social-icon {
        width: 65px;
        height: 65px;
    }
    
    .social-icon img {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .header-logo {
        max-width: 150px;
        max-height: 150px;
    }
    
    .navigation-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        max-width: min(98vw, 700px);
    }
    
    .nav-buttons {
        gap: 0.75rem;
    }
    
    .nav-button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
    
    .social-media-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon img {
        width: 42px;
        height: 42px;
    }
}

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

/* Selection color */
::selection {
    background: rgba(139, 195, 74, 0.3);
    color: #f5e6d3;
}

::-moz-selection {
    background: rgba(139, 195, 74, 0.3);
    color: #f5e6d3;
}


