/* Base Styles */
@font-face {
    font-family: 'Castledown';
    src: url('../fonts/castledown-regular (2).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Castledown';
    src: url('../fonts/castledown-heavy (2).ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --primary: #1A1A1A;
    --secondary: #2D5A27;
    --brand-green: #7DDA58;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Image Drop Shadow for the Girl */
.hero-girl-shadow {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Unified Gradient Button Style */
.btn-gradient {
    background-image: linear-gradient(to right, #7DDA58, #9BEB7D, #D2F5C3);
    background-size: 200% auto;
    color: #1A1A1A !important;
    font-weight: 700;
    border: none;
    box-shadow: none !important;
    transition: background-position 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
    background-position: left center;
}

.btn-gradient:hover {
    background-position: right center;
    color: #1A1A1A !important;
    box-shadow: none !important;
}

