/* CSS Custom Properties */
:root {
    --primary: #8B2635;
    --secondary: #2F4F2F;
    --accent: #DAA520;
    --text: #2C2C2C;
    --bg: #FFFFFF;
    --light-bg: #FAF8F5;
    --cream: #F5F2E8;
    --burgundy: #8B2635;
    --forest-green: #2F4F2F;
    --aged-gold: #DAA520;
}

/* Font Display */
@font-face {
    font-display: swap;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
}

.navbar-brand:hover .brand-text {
    color: var(--accent);
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #722029;
    border-color: #722029;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: white;
    color: white;
    background-color: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: white;
    border-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(139,38,53,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream) 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--light-bg);
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Sections */
section {
    padding: 4rem 0;
}

.about-preview,
.rooms-preview,
.menu-preview,
.location {
    padding: 5rem 0;
}

/* Menu Cards */
.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.menu-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-body h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.menu-card-body p {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent);
}

/* Room Features */
.room-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.room-features li {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream) 100%);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.testimonial-card.large {
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--text);
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}

/* Menu Sections */
.menu-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.menu-section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.menu-section-subtitle {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-items {
    margin-top: 2rem;
}

.menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item.featured {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: none;
    margin: 1rem 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.menu-item-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent);
    margin-left: 1rem;
}

.menu-item-description {
    color: var(--text);
    margin: 0;
    font-size: 0.95rem;
}

.menu-item-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.dietary {
    background: var(--secondary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Room Cards */
.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 2rem;
}

.room-name {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.room-description {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-amenities li {
    margin-bottom: 0.5rem;
}

/* Feature Cards */
.feature-card,
.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover,
.value-card:hover {
    transform: translateY(-5px);
}

.feature-icon,
.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-card h4,
.value-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Location Cards */
.location-card {
    text-align: center;
    padding: 1.5rem;
}

.location-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-card h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Contact Cards */
.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Forms */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,