/* Website Specific Styles - Hotel Am Ring 2025 */

/* Base & Typography */
:root {
    --primary: #c0a062;
    /* Gold/Luxury */
    --secondary: #1a1a1a;
    /* Dark Elegant */
    --accent: #e53e3e;
    /* Red for actions */
    --text-light: #f7fafc;
    --text-dark: #2d3748;
    --bg-dark: #111827;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Mobile Image Fixes */
img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .gallery-img {
        height: auto !important;
        max-height: 300px;
        object-position: center;
    }
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    /* Elegant Serif */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

.delay-500 {
    animation-delay: 0.5s;
}

/* Hero Section */
.hero-bg {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Fix for mobile parallax */
    position: relative;
}

@media (min-width: 768px) {
    .hero-bg {
        background-attachment: fixed;
    }
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

/* Custom Buttons */
.btn-gold {
    background: linear-gradient(45deg, #c0a062, #d4af37);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #d4af37, #f7d54e);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(192, 160, 98, 0.5);
}

/* Gallery Grid */
.gallery-img {
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* Navigation Scrolled State */
.nav-scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Admin/Staff Only */
.staff-trigger {
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.staff-trigger:hover {
    opacity: 1;
}