    /* Custom styles for Lake Barkley Shoreline Vacation Rentals */
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Selection color */
    ::selection {
        background-color: rgba(13, 148, 136, 0.3);
        color: #0f172a;
    }
    
    /* Scroll reveal animations */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered reveal delays */
    .scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
    .scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
    .scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
    .scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
    .scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
    .scroll-reveal:nth-child(6) { transition-delay: 0.6s; }
    
    /* Navbar scroll state */
    #navbar.scrolled {
        background-color: rgba(8, 14, 26, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    
    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile links */
    .mobile-link {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mobile-link:last-child {
        border-bottom: none;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #14b8a6;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #0d9488;
    }
    
    /* Focus styles */
    input:focus, textarea:focus {
        outline: none;
    }
    
    /* Image loading placeholder */
    img {
        background-color: #e2e8f0;
    }
    
    /* Dark section image overlay */
    section.bg-slate-950 img.opacity-10 {
        filter: grayscale(30%);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .font-serif {
            font-size: clamp(2rem, 8vw, 3.5rem);
        }
    }
    
    /* Print styles */
    @media print {
        nav, #mobile-menu, .scroll-reveal {
            display: none !important;
        }
        
        body {
            color: #000;
            background: #fff;
        }
    }
