/* Azure Dreams - Luxury Hotel Main Styles */

:root {
    /* Luxus Farbpalette */
    --gold: #D4AF37;
    --gold-light: #F4E87C;
    --gold-dark: #B8941F;
    --midnight: #191970;
    --midnight-light: #2E2E8B;
    --midnight-dark: #0F0F3D;
    --cream: #FFFDD0;
    --cream-light: #FFFEF7;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;
    
    /* Breakpoints */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
    --wide: 1400px;
    
    /* Animations */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-luxury: 0 30px 100px rgba(25, 25, 112, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--midnight);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 2rem); }
h5 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h6 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1em;
    color: var(--gray-dark);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--gold-dark);
}

/* Luxury Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.luxury-logo {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-lg);
}

.logo-text {
    fill: var(--gold);
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
    animation: goldShimmer 2s ease-in-out infinite;
}

.loading-text {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { 
        opacity: 0.7;
        filter: brightness(1);
    }
    50% { 
        opacity: 1;
        filter: brightness(1.3);
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-subtle);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-azure {
    color: var(--midnight);
}

.logo-dreams {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--midnight);
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white) !important;
    padding: 0.875rem 2rem !important;
    border-radius: var(--radius-full);
    font-weight: 500 !important;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-luxury);
    border: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--midnight);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--midnight);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

.hero:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(25, 25, 112, 0.7) 0%,
        rgba(212, 175, 55, 0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line-1,
.title-line-2 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.title-line-2 {
    color: var(--gold);
    animation-delay: 0.3s;
    font-weight: 700;
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-luxury);
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
}

.hero-button.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
}

.hero-button.primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: var(--white);
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: var(--white);
}

.button-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.hero-button:hover .button-arrow {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
}

.hero-scroll-indicator span {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 1rem;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { 
        transform: translateY(0) rotate(45deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(10px) rotate(45deg);
        opacity: 1;
    }
}

/* Quick Booking Bar */
.quick-booking {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.booking-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem;
    max-width: var(--wide);
    margin: 0 auto;
    align-items: end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-field label {
    font-weight: 500;
    color: var(--midnight);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.booking-field input,
.booking-field select {
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition-smooth);
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-submit {
    background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.booking-submit:hover {
    background: linear-gradient(135deg, var(--midnight-dark), var(--midnight));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Container & Layout */
.container {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--midnight);
}

.section-title.light {
    color: var(--white);
}

.title-accent {
    color: var(--gold);
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Rooms Section */
.rooms {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-luxury);
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.room-card.luxury::before {
    content: 'Luxury';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    z-index: 5;
}

.room-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 4;
}

.room-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.room-card:hover .room-image-container img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 112, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-view-360 {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.room-card:hover .room-view-360 {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

.room-view-360 svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--midnight);
    margin-bottom: 1rem;
}

.room-description {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--midnight);
    padding: 0.5rem 1rem;
    background: var(--cream);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
}

.price-night {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.room-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.room-book-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    padding: var(--space-xxl) 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 112, 0.85);
    z-index: 2;
}

.parallax-section .container {
    position: relative;
    z-index: 3;
}

/* Dining Section */
.dining {
    background: var(--midnight);
    color: var(--white);
}

.dining-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-luxury);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    background: rgba(255, 255, 255, 0.08);
}

.restaurant-image {
    height: 250px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.restaurant-content {
    padding: 2rem;
}

.restaurant-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.restaurant-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.25rem;
}

.michelin {
    background: var(--gold);
    color: var(--midnight);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.restaurant-info {
    margin-bottom: 1rem;
}

.award {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--gold);
}

.restaurant-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.restaurant-features {
    list-style: none;
    margin-bottom: 2rem;
}

.restaurant-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.restaurant-features li:last-child {
    border-bottom: none;
}

.restaurant-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.75rem;
}

.restaurant-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--midnight);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.restaurant-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--midnight);
}

/* Spa Section */
.spa {
    padding: var(--space-xxl) 0;
    background: var(--cream-light);
}

.spa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spa-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.spa-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: var(--cream-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 1rem;
}

.contact-address {
    margin-bottom: 2rem;
}

.contact-address p {
    color: var(--gray-medium);
    font-size: 1.125rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--midnight);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
}

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

.form-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-submit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(5px);
}

/* Footer */
.luxury-footer {
    background: var(--midnight);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-awards .award {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-social h4 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-certifications span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spa-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-xxl: 5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .booking-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dining-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .contact-form,
    .contact-card {
        padding: 2rem;
    }
    
    .service-card,
    .restaurant-content {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
@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;
    }
    
    .parallax-bg {
        background-attachment: scroll;
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .booking-modal,
    .loader {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        height: auto !important;
        page-break-after: always;
    }
}