/* Custom Styles for Casey's Cowtown Club */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F9F7F2;
    color: #111d11;
    overflow-x: hidden;
}

/* Geometric Background Decorations */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.geo-circle--1 {
    width: 400px;
    height: 400px;
    background: #FACC15;
    top: 10%;
    left: -100px;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: #6BA36B;
    bottom: 20%;
    right: -50px;
    animation-delay: -10s;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.08;
    animation: rotate 30s linear infinite;
}

.geo-triangle--1 {
    border-width: 0 100px 173px 100px;
    border-color: transparent transparent #FACC15 transparent;
    top: 30%;
    right: 10%;
}

.geo-rect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #9BC59B;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: float 15s ease-in-out infinite reverse;
}

.geo-rect--1 {
    bottom: 15%;
    left: 5%;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #FACC15;
    transition: width 0.3s ease;
}

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

.nav-logo-text {
    transition: color 0.3s ease;
}

#navbar.scrolled .nav-logo-text {
    color: #111d11;
}

#navbar.scrolled .nav-link {
    color: #294429;
}

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

.mobile-menu-link:hover {
    transform: translateX(10px);
}

/* Feature Items */
.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Menu Cards */
.menu-card {
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #315231;
    border-radius: 5px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .geo-circle--1 {
        width: 200px;
        height: 200px;
    }
    
    .geo-circle--2 {
        width: 150px;
        height: 150px;
    }
    
    .geo-triangle--1 {
        border-width: 0 50px 87px 50px;
    }
    
    .geo-rect--1 {
        width: 75px;
        height: 75px;
    }
}
