/* Classic Luxury Hotel - Elegant Traditional Styles */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: #374151;
    background-color: #fffdf7;
}

/* Typography */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

/* Color Palette */
.bg-navy {
    background-color: #1e293b;
}

.bg-deep-navy {
    background-color: #0f172a;
}

.bg-forest {
    background-color: #164e63;
}

.bg-emerald {
    background-color: #065f46;
}

.bg-gold {
    background-color: #d4af37;
}

.bg-light-gold {
    background-color: #f7e98e;
}

.bg-cream {
    background-color: #fefce8;
}

.bg-ivory {
    background-color: #fffdf7;
}

.text-navy {
    color: #1e293b;
}

.text-deep-navy {
    color: #0f172a;
}

.text-forest {
    color: #164e63;
}

.text-emerald {
    color: #065f46;
}

.text-gold {
    color: #d4af37;
}

.text-light-gold {
    color: #f7e98e;
}

.text-cream {
    color: #fefce8;
}

.text-ivory {
    color: #fffdf7;
}

.text-charcoal {
    color: #374151;
}

.text-warm-gray {
    color: #6b7280;
}

.border-gold {
    border-color: #d4af37;
}

.border-gold\/30 {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Header Styles */
#header {
    background: rgba(255, 253, 247, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(255, 253, 247, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navigation Links */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.mobile-menu.active {
    max-height: 500px;
}

/* Button Styles */
.btn-classic {
    background: #1e293b;
    color: #d4af37;
    padding: 16px 40px;
    border: 2px solid #1e293b;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.btn-classic:hover {
    background: #d4af37;
    color: #1e293b;
    border-color: #d4af37;
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    padding: 16px 40px;
    border: 2px solid #d4af37;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: #d4af37;
    color: #1e293b;
}

/* Suite Cards */
.suite-card {
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Amenity Icons */
.amenity-icon {
    transition: all 0.3s ease;
}

.amenity-icon:hover {
    background: #d4af37;
    color: #1e293b;
    transform: scale(1.1);
}

/* Gallery Swiper */
.gallery-swiper {
    padding: 20px 0 60px;
}

.gallery-swiper .swiper-slide {
    margin-right: 30px;
}

.gallery-swiper .swiper-pagination {
    position: static;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: rgba(212, 175, 55, 0.4);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #d4af37;
    transform: scale(1.4);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Form Styles */
form input,
form textarea,
form select {
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Image Hover Effects */
.suite-card img {
    transition: transform 0.7s ease;
}

.suite-card:hover img {
    transform: scale(1.05);
}

/* Classic Shadows */
.shadow-classic {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.shadow-luxury {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Text Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #1e293b;
}

::-moz-selection {
    background: rgba(212, 175, 55, 0.3);
    color: #1e293b;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #b8941f);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b8941f, #d4af37);
}

/* Traditional Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

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

.animate-slide-up {
    animation: slideUp 1.2s ease-out;
}

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

/* Hero Section Enhancements */
#home {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

/* Decorative Elements */
.decorative-border {
    border: 2px solid #d4af37;
    position: relative;
}

.decorative-border::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Traditional Patterns */
.pattern-classic {
    background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Contact Form Enhancement */
.contact-form {
    background: #fffdf7;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    border: 2px solid #1e293b;
    background: #fefce8;
    padding: 16px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    background: #fffdf7;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e293b;
    margin-bottom: 12px;
    display: block;
    font-family: 'Cormorant Garamond', serif;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

footer a:hover {
    color: #d4af37;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .text-6xl,
    .text-7xl,
    .text-8xl {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .text-5xl {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .text-4xl {
        font-size: 2.2rem;
    }

    .text-5xl {
        font-size: 2.5rem;
    }

    .suite-card,
    .amenity-card {
        margin-bottom: 2rem;
    }

    .btn-classic,
    .btn-outline {
        padding: 14px 28px;
        font-size: 16px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .text-3xl {
        font-size: 1.8rem;
    }

    .text-4xl {
        font-size: 2rem;
    }

    .grid-mobile-1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .px-mobile-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-mobile-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .bg-navy,
    .bg-emerald,
    .bg-deep-navy {
        background: white !important;
        color: black !important;
    }

    .text-gold {
        color: #000000 !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-bounce {
        animation: none;
    }

    #home::before {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .text-warm-gray,
    .text-cream {
        color: #000000 !important;
    }

    .border-gold,
    .border-gold\/30 {
        border-color: #000000 !important;
    }

    .bg-navy,
    .bg-emerald {
        background-color: #000000 !important;
    }

    .bg-gold {
        background-color: #ffff00 !important;
        color: #000000 !important;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Performance Optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Traditional Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Classic Typography Enhancements */
.drop-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    line-height: 0.8;
    margin: 0.1em 0.1em 0.1em 0;
    color: #d4af37;
}

/* Elegant Borders */
.elegant-border {
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.elegant-border::before,
.elegant-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
}

.elegant-border::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.elegant-border::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.aspect-classic {
    aspect-ratio: 4 / 3;
}

.aspect-portrait {
    aspect-ratio: 3 / 4;
}

/* Backdrop Blur Support */
@supports (backdrop-filter: blur(15px)) {
    .backdrop-blur-classic {
        backdrop-filter: blur(15px);
    }
}

@supports not (backdrop-filter: blur(15px)) {
    .backdrop-blur-classic {
        background: rgba(255, 253, 247, 0.9);
    }
}
