/* CSS Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
}

:root {
    /* Renk Paleti */
    --primary-gold: #d4af37;
    --secondary-gold: #b8941f;
    --cream: #f5f5dc;
    --dark-green: #2f4f2f;
    --light-green: #8fbc8f;
    --earth-tone: #8b7355;
    --dark-brown: #5d4037;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Vintage Texture Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(47, 79, 47, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%);
    background-size: 400px 400px, 300px 300px, 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 220, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-gold);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(245, 245, 220, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--dark-green);
    margin: 0;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-style: italic;
    display: block;
    margin-top: -5px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-mobile {
    display: none;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.dropdown-btn.active {
    background: var(--primary-gold);
    color: var(--white);
}

.dropdown-icon {
    transition: var(--transition);
    font-size: 0.8rem;
}

.dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-gold);
    padding: 1rem 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu .nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu .nav-link:hover {
    background: var(--cream);
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
    padding-left: 25px;
}

.dropdown-menu .nav-link::after {
    display: none;
}

.reservation-btn-nav .btn-reservation {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-btn-nav .btn-reservation:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Navigation */
.nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    list-style: none;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    margin: 0;
    text-align: center;
}

.nav-menu .nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.nav-menu .nav-link:hover {
    background: var(--cream);
    color: var(--primary-gold);
}

.nav-menu .nav-link::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(47, 79, 47, 0.3) 0%,
        rgba(212, 175, 55, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background: var(--primary-gold);
    border-radius: 1px;
}

/* Welcome Section */
.welcome {
    padding: var(--section-padding);
    background: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text h2 {
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.welcome-text p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--dark-green);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--dark-green);
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Title */
.section-title {
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

/* Rooms Section */
.rooms {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.room-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.room-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-features span {
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-room {
    background: linear-gradient(135deg, var(--dark-green), var(--light-green));
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 79, 47, 0.3);
}

/* History Section */
.history {
    padding: var(--section-padding);
    background: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.history-text h2 {
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--dark-gray);
    font-size: 1rem;
}

.history-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: var(--dark-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-gold);
}

.social-header {
    display: flex;
    gap: 1rem;
}

.social-header a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-header a:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Main Slider */
.main-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 120px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-subtitle {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-slide {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    animation: slideInUp 1s ease-out 0.8s both;
}

.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.8);
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.indicator:hover {
    border-color: var(--white);
    transform: scale(1.1);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gold);
    width: 0%;
    transition: width 5s linear;
}

/* Slide Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Transition Effects */
.slide.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide.slide-left {
    animation: slideLeft 1s ease-in-out;
}

.slide.slide-right {
    animation: slideRight 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Slider Pause Indicator */
.main-slider.paused .progress-bar {
    animation-play-state: paused;
}

/* Loading Animation for Slides */
.slide.loading {
    background-color: #f0f0f0;
}

.slide.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-gold);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Quick Reservation */
.quick-reservation {
    background: var(--primary-gold);
    padding: 2rem 0;
    margin-top: -2px;
}

.reservation-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reservation-box h3 {
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-row-quick {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 200px;
    gap: 1.5rem;
    align-items: end;
}

.form-group-quick {
    display: flex;
    flex-direction: column;
}

.form-group-quick label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.form-group-quick input,
.form-group-quick select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group-quick input:focus,
.form-group-quick select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.btn-search {
    background: linear-gradient(135deg, var(--dark-green), var(--light-green));
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    height: 50px;
    text-transform: uppercase;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 79, 47, 0.3);
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--dark-green);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.7;
}

.btn-about {
    background: transparent;
    color: var(--primary-gold);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
}

.btn-about:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Rooms Section */
.rooms-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.rooms-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.room-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.room-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.room-item:hover .room-image img {
    transform: scale(1.05);
}

.room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
}

.price-label {
    font-size: 0.8rem;
    display: block;
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.room-info p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-room-detail {
    background: var(--primary-gold);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
}

.btn-room-detail:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.slider-controls {
    text-align: center;
    gap: 1rem;
    display: flex;
    justify-content: center;
}

.prev-btn, .next-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--primary-gold);
    background: var(--cream);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-service {
    background: transparent;
    color: var(--primary-gold);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-service:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* History Brief */
.history-brief {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 10px;
    flex: 1;
}

.highlight-item .year {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.highlight-item .event {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-item {
    cursor: pointer;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    opacity: 1;
}


/* Detailed Reservation */
.detailed-reservation {
    padding: var(--section-padding);
    background: var(--dark-green);
    color: var(--white);
}

.detailed-reservation .section-title {
    color: var(--white);
}

.detailed-reservation .section-title::after {
    background: var(--primary-gold);
}

.detailed-reservation .reservation-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.detailed-reservation .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detailed-reservation .form-row.full-width {
    grid-template-columns: 1fr;
}

.detailed-reservation .form-group {
    display: flex;
    flex-direction: column;
}

.detailed-reservation .form-group.full-width {
    grid-column: 1 / -1;
}

.detailed-reservation .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
    font-size: 1rem;
}

.detailed-reservation .form-group input,
.detailed-reservation .form-group select,
.detailed-reservation .form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.detailed-reservation .form-group input:focus,
.detailed-reservation .form-group select:focus,
.detailed-reservation .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.detailed-reservation .btn-submit {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    width: 100%;
    margin-top: 1rem;
}

.detailed-reservation .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 1rem 0;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.newsletter-form button {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-gold);
}

.social-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-footer a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-footer a:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-gold);
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        gap: 1.5rem;
    }
    
    .dropdown-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .reservation-btn-nav .btn-reservation {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .main-banner {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        padding: 3rem 2rem;
    }
    
    .banner-text h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detailed-reservation .reservation-form {
        padding: 2rem;
    }
    
    .detailed-reservation .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row-quick {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-row-quick .form-group-quick:nth-child(3),
    .form-row-quick .form-group-quick:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-slider {
        margin-top: 140px;
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .form-row-quick {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-slider {
        grid-template-columns: 1fr;
    }
    
    .history-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .reservation-box {
        padding: 1.5rem;
    }
    
    .detailed-reservation .reservation-form {
        padding: 1.5rem;
    }
    
    .detailed-reservation .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner-text h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reservation-box {
        padding: 1rem;
    }
    
    .detailed-reservation .reservation-form {
        padding: 1rem;
    }
    
    .detailed-reservation .form-group input,
    .detailed-reservation .form-group select,
    .detailed-reservation .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .detailed-reservation .btn-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .service-item,
    .news-item {
        padding: 1.5rem;
    }
}

/* Newsletter Form Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-slider {
        height: 70vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .btn-slide {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section .contact-details {
        text-align: left;
        max-width: 300px;
        margin: 1.5rem auto;
    }
    
    .map-link {
        display: block;
        margin: 15px auto;
        max-width: 250px;
        text-align: center;
    }
    
    .newsletter-form button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.mobile-reservation {
        margin-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        padding-top: 2rem;
    }
    
    .btn-mobile-reservation {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        color: var(--white);
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        display: inline-block;
        text-align: center;
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 2px solid var(--primary-gold);
    }
    
    .btn-mobile-reservation:hover {
        background: transparent;
        color: var(--primary-gold);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    }
    
    .reservation-btn-nav {
        display: none;
    }

/* Menu open state */
body.menu-open {
    overflow: hidden;
}

body.dropdown-open {
    overflow: visible;
}

.footer-section .contact-details {
    margin-top: 1.5rem;
}

.footer-section .contact-details p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.footer-section .contact-details strong {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

.map-link {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-green) !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.map-link:hover {
    background: transparent;
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(201, 176, 55, 0.4);
}

.footer-section a[href^="tel:"] {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.footer-section a[href^="tel:"]:hover {
    color: white;
}

.footer-section a[href^="mailto:"] {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.footer-section a[href^="mailto:"]:hover {
    color: white;
}
