/* Coyote Cove RV Resort — Custom Styles */

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

body {
    font-family: 'Lato', sans-serif;
    color: #374151;
    background-color: #fdf8f6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: #8b1a2b;
    color: #fff;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdf8f6;
}
::-webkit-scrollbar-thumb {
    background: #8b1a2b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7a1726;
}

/* Hero parallax feel */
.hero-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Staggered children */
.fade-in.stagger-1 { transition-delay: 0.1s; }
.fade-in.stagger-2 { transition-delay: 0.2s; }
.fade-in.stagger-3 { transition-delay: 0.3s; }
.fade-in.stagger-4 { transition-delay: 0.4s; }
.fade-in.stagger-5 { transition-delay: 0.5s; }
.fade-in.stagger-6 { transition-delay: 0.6s; }

/* Gold line */
.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #8b1a2b, #d47758);
}

/* Primary button */
.btn-primary {
    background: #8b1a2b;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #7a1726;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 26, 43, 0.35);
    color: #fff;
}

/* Amenity card hover */
.amenity-card {
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
    transition: transform 0.4s ease;
}

/* Navbar scroll */
.nav-scrolled {
    background: rgba(139, 26, 43, 0.97) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.open {
    max-height: 400px;
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.1);
}

/* Image hover zoom */
img {
    transition: transform 0.7s ease;
}

/* Print styles */
@media print {
    nav, .hero-bg, #contact {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}
