/* ===========================
   RESET & BASE STYLES
   =========================== */

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

:root {
    --bg-primary: #F9F7F2;
    --bg-cream: #FFF8F0;
    --bg-light-cream: #FFFBF5;
    --bg-warm-cream: #F5EFE7;
    --bg-beige: #EDE6DB;
    --text-primary: #222222;
    --text-secondary: #666666;
    --accent: #8B7355;
    --accent-light: #A68968;
    --accent-warm: #C9B5A0;
    --white: #FFFFFF;
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.7;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(139, 115, 85, 0.2);
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(139, 115, 85, 0.2);
    touch-action: manipulation;
}

ul {
    list-style: none;
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 247, 242, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) contrast(1.1);
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar:not(.scrolled):not(.menu-open) .nav-link {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar:not(.scrolled):not(.menu-open) .logo {
    filter: brightness(0) invert(1) contrast(1.1);
}

.navbar:not(.scrolled):not(.menu-open) .logo-text {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar:not(.scrolled):not(.menu-open) .mobile-menu-toggle span {
    background: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.navbar:not(.scrolled):not(.menu-open) .nav-link::after {
    background: var(--white);
}

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

.nav-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: var(--transition);
}

.navbar:not(.scrolled) .nav-social-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.nav-social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.nav-booking-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.navbar:not(.scrolled) .nav-booking-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.nav-booking-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.75rem;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.3), rgba(139, 115, 85, 0.2)),
                url('https://images.unsplash.com/photo-1637262223444-5c43e3c9c26c?q=80&w=1051&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--bg-primary);
    transform: skewY(-2deg);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ===========================
   BUTTONS
   =========================== */

.cta-button,
.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
}

.cta-button {
    background: var(--accent);
    color: var(--white);
}

.cta-button:hover {
    background: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.secondary-button {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.secondary-button:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-primary);
    transform: skewY(-2deg);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===========================
   CONTENT GRID
   =========================== */

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

.content-text {
    padding: 2rem 0;
}

.rounded-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features-section {
    background: var(--bg-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 45c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-2c7.2 0 13-5.8 13-13s-5.8-13-13-13-13 5.8-13 13 5.8 13 13 13z' fill='%238B7355' fill-opacity='0.03'/%3E%3C/svg%3E");
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(139, 115, 85, 0.02) 0%, transparent 50%);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--bg-beige) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===========================
   ROOMS PREVIEW
   =========================== */

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

.room-card {
    background: var(--bg-light-cream);
    background-image: 
        radial-gradient(circle at 5% 95%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

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

.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.room-description {
    color: var(--text-secondary);
}

/* ===========================
   ROOM DETAIL CARDS
   =========================== */

.rooms-section {
    background: var(--bg-warm-cream);
}

.room-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-light-cream);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.room-detail-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.room-detail-card:nth-child(even) .room-detail-image {
    order: 2;
}

.room-detail-image {
    height: 100%;
    min-height: 400px;
}

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

.room-detail-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.room-detail-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.features-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 15px;
}

.room-info-item {
    font-size: 0.95rem;
}

.room-info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.gallery-section {
    background: var(--bg-light-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%238B7355' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--bg-cream);
    color: var(--text-primary);
    border: 2px solid var(--accent-warm);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 3/2;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===========================
   CONTACT PAGE
   =========================== */

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

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-text a {
    color: var(--accent);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--text-primary);
}

.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-beige);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-cream);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.social-button:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateX(5px);
}

.social-button svg {
    flex-shrink: 0;
}

/* ===========================
   CONTACT FORM
   =========================== */

.contact-form-wrapper {
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--bg-beige);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light-cream);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===========================
   MAP SECTION
   =========================== */

.map-section {
    background: var(--bg-warm-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238B7355' fill-opacity='0.03'/%3E%3C/svg%3E");
    position: relative;
}

.map-container {
    margin-top: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-light-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    background-image: 
        linear-gradient(135deg, var(--text-primary), var(--accent)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 34C40.6 34 33 41.6 33 51s7.6 17 17 17 17-7.6 17-17-7.6-17-17-17zm0 30c-7.2 0-13-5.8-13-13s5.8-13 13-13 13 5.8 13 13-5.8 13-13 13z' fill='%23FFFFFF' fill-opacity='0.05'/%3E%3C/svg%3E");
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

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

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

.cta-section .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--text-primary);
}

.cta-section .cta-button:hover {
    background: var(--bg-primary);
}

.cta-section .secondary-button {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .secondary-button:hover {
    background: var(--white);
    color: var(--text-primary);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--text-primary);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 45c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-2c7.2 0 13-5.8 13-13s-5.8-13-13-13-13 5.8-13 13 5.8 13 13 13z' fill='%23FFFFFF' fill-opacity='0.02'/%3E%3C/svg%3E");
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   ANIMATIONS
   =========================== */

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

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   CONTACT PREVIEW SECTION (HOMEPAGE)
   =========================== */

.contact-preview-section {
    background: var(--bg-warm-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 40h-5v-2h5v-4.13a4 4 0 1 1 2 0V54h5v2h-5v15.95A10 10 0 0 0 63.66 67l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 71.95V56z' fill='%238B7355' fill-opacity='0.04'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.contact-preview-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-primary);
    transform: skewY(-2deg);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.contact-preview-card {
    background: var(--white);
    background-image: 
        radial-gradient(circle at 50% 100%, rgba(139, 115, 85, 0.02) 0%, transparent 60%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--bg-beige);
    position: relative;
    overflow: hidden;
}

.contact-preview-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--bg-beige) 0%, transparent 70%);
    opacity: 0.4;
    border-radius: 50%;
}

.contact-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-warm);
}

.contact-preview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
}

.contact-preview-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-preview-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.contact-preview-text a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.contact-preview-text a:hover {
    color: var(--text-primary);
}

.contact-preview-distance,
.contact-preview-info {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    font-style: italic;
}

.contact-preview-map {
    margin-top: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--white);
}

/* ===========================
   FAQ PAGE STYLES
   =========================== */

.faq-page-section {
    background: var(--bg-light-cream);
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
}

.faq-category {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: var(--bg-light-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-accordion-item:hover {
    border-color: var(--bg-beige);
}

.faq-accordion-item.active {
    border-color: var(--accent-warm);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.faq-accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-accordion-header:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   EGER PAGE STYLES
   =========================== */

.intro-section {
    background: var(--bg-light-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%238B7355' fill-opacity='0.02'/%3E%3C/svg%3E");
    position: relative;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin: 3rem 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--text-primary), var(--accent));
    opacity: 0.3;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    background: var(--bg-light-cream);
    background-image: 
        radial-gradient(circle at 95% 5%, rgba(139, 115, 85, 0.02) 0%, transparent 50%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.timeline-content:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(10px);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.timeline-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-distance {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.attraction-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.attraction-highlights li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

/* Experiences Grid */
.experiences-section {
    background: var(--bg-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6z' fill='%238B7355' fill-opacity='0.03'/%3E%3C/svg%3E");
    position: relative;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: var(--bg-cream);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.02) 0%, transparent 50%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--bg-beige) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
}

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

.experience-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.experience-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.experience-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Seasonal Section */
.seasonal-section {
    background: var(--bg-warm-cream);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B7355' fill-opacity='0.03'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.season-card {
    background: var(--bg-light-cream);
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(139, 115, 85, 0.02) 0%, transparent 50%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.season-card::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.season-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

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

.season-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Tips Section */
.tips-section {
    background: var(--bg-light-cream);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    position: relative;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    padding-top: 3.5rem;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.tip-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tip-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 968px) {
    /* Menü nyitva mindig sötét háttér */
    .navbar.menu-open {
        background: rgba(249, 247, 242, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .navbar.menu-open .logo {
        filter: grayscale(100%) contrast(1.1) !important;
    }

    .navbar.menu-open .logo-text {
        color: var(--text-primary) !important;
        text-shadow: none !important;
    }

    .navbar.menu-open .mobile-menu-toggle span {
        background: var(--text-primary) !important;
    }

    .navbar.menu-open .nav-social-link {
        color: var(--text-primary) !important;
        background: rgba(139, 115, 85, 0.1) !important;
    }

    .navbar.menu-open .nav-booking-link {
        color: var(--text-primary) !important;
        background: rgba(139, 115, 85, 0.1) !important;
    }

    .nav-container {
        justify-content: flex-start;
        padding: 1.25rem 1.5rem;
        min-height: 70px;
    }

    .logo {
        height: 45px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .nav-social-icons {
        margin-left: auto;
        margin-top: 0;
        order: 2;
    }

    .nav-social-link {
        min-width: 48px;
        min-height: 48px;
        width: 48px;
        height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-social-link svg {
        width: 22px;
        height: 22px;
    }

    .nav-booking-link {
        min-height: 48px;
        padding: 0.875rem 1.125rem;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 1.5rem 1rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        color: var(--text-primary);
        font-size: 1.5rem;
        padding: 1.25rem 1.5rem;
        text-shadow: none;
        display: block;
        width: 100%;
        min-height: 64px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(139, 115, 85, 0.1);
        border-radius: 12px;
        transition: all 0.2s ease;
        font-weight: 500;
    }

    .nav-menu .nav-link:active {
        background: rgba(139, 115, 85, 0.15);
        transform: scale(0.98);
    }

    .nav-menu .nav-link::after {
        background: var(--text-primary);
        display: none;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 2rem;
    }

    p, li {
        font-size: 1.125rem;
        line-height: 1.8;
    }

    .content-grid,
    .contact-grid,
    .room-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-detail-card:nth-child(even) .room-detail-image {
        order: 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* Eger page responsive */
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .timeline-content {
        grid-template-columns: 1fr;
    }

    .timeline-image {
        min-height: 250px;
    }

    .attraction-highlights {
        grid-template-columns: 1fr;
    }

    .experiences-grid,
    .seasons-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    /* Contact preview responsive */
    .contact-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* FAQ responsive */
    .faq-category {
        padding: 2rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-accordion-header {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .faq-accordion-content {
        padding: 0 1.5rem;
    }

    .faq-accordion-item.active .faq-accordion-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem 1.25rem;
        min-height: 65px;
    }

    .logo {
        height: 42px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-social-icons {
        gap: 0.35rem;
    }

    .nav-social-link {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
    }

    .nav-social-link svg {
        width: 22px;
        height: 22px;
    }

    .nav-booking-link {
        font-size: 0.85rem;
        padding: 0.625rem 0.875rem;
        min-height: 46px;
    }

    .mobile-menu-toggle {
        padding: 0.625rem;
        min-width: 46px;
        min-height: 46px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 3px;
    }

    .nav-menu .nav-link {
        font-size: 1.375rem;
        padding: 1.125rem 1.375rem;
        min-height: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    p, li {
        font-size: 1.0625rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-detail-content {
        padding: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Eger page mobile */
    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .timeline-item:not(:last-child)::before {
        left: 20px;
        top: 50px;
        bottom: -50px;
    }

    .timeline-text {
        padding: 1.5rem;
    }

    .timeline-title {
        font-size: 1.375rem;
    }

    .timeline-image {
        min-height: 200px;
    }

    /* FAQ mobile */
    .faq-category {
        padding: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.25rem;
    }

    .faq-accordion-header {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .faq-accordion-content {
        padding: 0 1.25rem;
    }

    .faq-accordion-item.active .faq-accordion-content {
        padding: 0 1.25rem 1rem 1.25rem;
    }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 1rem;
        gap: 0.35rem;
        min-height: 60px;
    }

    .logo {
        height: 38px;
    }

    .logo-text {
        display: none;
    }

    .nav-social-icons {
        gap: 0.25rem;
    }

    .nav-social-link {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-social-link svg {
        width: 20px;
        height: 20px;
    }

    .nav-booking-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 44px;
    }

    .mobile-menu-toggle {
        padding: 0.625rem;
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
    }

    .nav-menu {
        padding: 1rem 0.75rem;
    }

    .nav-menu .nav-link {
        font-size: 1.25rem;
        padding: 1rem 1.25rem;
        min-height: 56px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    p, li {
        font-size: 1.0625rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Very small devices (phones, less than 360px) */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.75rem 0.875rem;
        gap: 0.25rem;
        min-height: 58px;
    }

    .logo {
        height: 34px;
    }

    .logo-text {
        display: none;
    }

    .nav-booking-link {
        display: none;
    }

    .nav-social-icons {
        gap: 0.25rem;
    }

    .nav-social-link {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .nav-social-link svg {
        width: 19px;
        height: 19px;
    }

    .mobile-menu-toggle {
        min-width: 42px;
        min-height: 42px;
        padding: 0.625rem;
    }

    .mobile-menu-toggle span {
        width: 19px;
        height: 2.5px;
    }

    .nav-menu .nav-link {
        font-size: 1.15rem;
        padding: 0.9rem 1.125rem;
        min-height: 54px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    p, li {
        font-size: 1.0625rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* ===========================
   HOUSE RULES PAGE
   =========================== */

.house-rules-content {
    max-width: 900px;
    margin: 0 auto;
}

.rules-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    background: var(--bg-warm-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
}

.rules-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
}

.rules-section:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.rules-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.rules-title {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-beige);
}

.rules-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.rules-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.rules-list {
    list-style: none;
    padding-left: 0;
}

.rules-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--bg-beige);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}

.rules-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.rules-footer {
    margin-top: 3rem;
}

.rules-highlight {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-light));
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.rules-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.rules-highlight p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.rules-thanks {
    font-size: 1.1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.rules-signature {
    text-align: right;
    font-style: italic;
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

/* Responsive styles for house rules */
@media (max-width: 768px) {
    .rules-section {
        padding: 1.5rem;
    }

    .rules-title {
        font-size: 1.375rem;
    }

    .rules-subtitle {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .rules-icon {
        font-size: 2rem;
    }

    .rules-highlight {
        padding: 1.5rem;
    }
}
