/* Swaraj Inn - Shared Styles */

:root {
    --primary-orange: #ff6b35;
    --primary-gold: #f7931e;
    --warm-red: #dc2626;
    --deep-teal: #0f766e;
    --warm-brown: #92400e;
    --cream: #fef7ed;
    --soft-peach: #fed7aa;
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

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

.hero-carousel {
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Interactive Elements */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-scroll {
    scroll-behavior: smooth;
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #de7f1a);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Section Backgrounds */
.section-warm {
    background: linear-gradient(135deg, #fef7ed, #fed7aa, #fdba74);
}

.section-cool {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1, #99f6e4);
}

/* Decorative Elements */
.decorative-dots {
    background-image: radial-gradient(circle at 25% 25%, var(--primary-orange) 2px, transparent 2px), 
                      radial-gradient(circle at 75% 75%, var(--primary-gold) 2px, transparent 2px);
    background-size: 50px 50px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-carousel {
        animation-duration: 25s;
    }
    
    .floating-animation {
        animation-duration: 8s;
    }
    
    .card-hover:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-animation,
    .hero-carousel {
        animation: none;
    }
    
    .card-hover {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .floating-animation,
    .hero-carousel {
        animation: none;
    }
    
    .gradient-text {
        color: var(--primary-orange) !important;
        -webkit-text-fill-color: var(--primary-orange) !important;
    }
}
