/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --menu-color: #d32f2f;
    --reservation-bg: #232635;
    --button-color: #d69b53;
    --logo-bg: #d32f2f;
    --text-light: #ffffff;
    --text-dark: #333333;
    --sidebar-width-closed: 100px;
    --sidebar-width-open: 300px;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.main-content {
    margin-left: 0;
    min-height: 100vh;
    background: #f5f5f5;
    width: 100%;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width-closed);
    height: 100vh;
    background: var(--menu-color);
    color: var(--text-light);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.closed {
    /* Kapalıyken dar */
    width: var(--sidebar-width-closed);
}

.sidebar:not(.closed) {
    /* Açıkken geniş */
    width: var(--sidebar-width-open);
}

.sidebar-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-width: 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.closed .sidebar-content {
    padding: 30px 10px;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    transition: margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    max-width: 120px;
    height: auto;
    background: var(--logo-bg);
    padding: 10px;
    border-radius: 50%;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
}

/* Menü kapalıyken logo küçük ama aynı yerde */
.sidebar.closed .logo-container {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar.closed .logo {
    max-width: 60px;
    padding: 5px;
}

.sidebar-nav {
    flex: 1;
    position: relative;
    margin-top: 40px;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav .nav-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav .nav-link:hover {
    opacity: 0.8;
}

.menu-label {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--menu-color);
    font-weight: bold;
}

/* Menü açıkken sağ tarafta MENU yazısı */
.menu-label-open {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 100;
}

.menu-label-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--menu-color);
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
}

.menu-line-open-top {
    width: 1px;
    height: 50px;
    background: var(--menu-color);
    opacity: 0.8;
}

.menu-line-open-bottom {
    width: 1px;
    height: 50px;
    background: var(--menu-color);
    opacity: 0.8;
}

/* Menü Kapalı Durumu */
.menu-closed-state {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    padding-top: 120px; /* Logo için alan bırak */
}

.sidebar.closed .menu-closed-state {
    display: flex;
}

.sidebar:not(.closed) .menu-closed-state {
    display: none;
}

.menu-closed-center {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    position: relative;
}

.menu-line-top {
    width: 1px;
    height: 50px;
    background: var(--text-light);
    opacity: 0.8;
    margin-bottom: 10px;
}

.menu-line-bottom {
    width: 1px;
    height: 50px;
    background: var(--text-light);
    opacity: 0.8;
    margin-top: 10px;
}

.menu-label-closed {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1.6;
    text-align: center;
    transition: opacity 0.3s;
}

.menu-closed-center:hover .menu-label-closed {
    opacity: 0.8;
}

.menu-closed-phone {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    text-decoration: none;
}

.menu-closed-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.menu-closed-phone svg {
    width: 24px;
    height: 24px;
}

/* Menü Açık Durumu */
.menu-open-state {
    display: flex;
    flex-direction: column;
    flex: 1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sidebar.closed .menu-open-state {
    display: flex;
    opacity: 0;
    pointer-events: none;
}

.sidebar:not(.closed) .menu-open-state {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.sidebar-contact {
    margin: 30px 0;
    text-align: center;
}

.phone-link {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    transition: opacity 0.3s;
}

.phone-link:hover {
    opacity: 0.8;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

.call-us-btn {
    background: var(--button-color);
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
    width: 100%;
}

.call-us-btn:hover {
    opacity: 0.9;
}

.sidebar-location {
    text-align: center;
    margin: 20px 0 0 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.location-main {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.location-sub {
    font-size: 14px;
    opacity: 0.8;
}

/* Section spacing */
.section {
    scroll-margin-top: 80px;
}

/* Header */
.main-header {
    background: transparent;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

/* Desktop'ta dil değiştirici sağda */
@media (min-width: 769px) {
    .header-right {
        margin-right: 0;
        padding-right: 0;
    }
}

.header-left {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 0;
}

.language-selector {
    position: relative;
}

.current-lang {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 14px;
    gap: 5px;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.3);
}

.current-lang svg {
    transition: transform 0.3s;
}

.language-selector:hover .current-lang svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown .lang-link {
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.language-dropdown .lang-link:last-child {
    margin-bottom: 0;
}

.language-dropdown .lang-link:hover {
    opacity: 0.7;
    transform: scale(1.1);
}


/* Rezervasyon Bar */
.reservation-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--reservation-bg);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.reservation-btn {
    background: var(--button-color);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}


/* Page Header */
.page-header {
    background: var(--menu-color);
    color: var(--text-light);
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

/* Room Cards */
.accommodation-section {
    padding: 60px 0;
}

.room-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-card:nth-child(even) {
    flex-direction: row-reverse;
}

.room-image {
    flex: 1;
    min-height: 300px;
}

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

.room-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--menu-color);
}

.room-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Dining Section */
.dining-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--menu-color);
}

.dining-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dining-image {
    flex: 1;
    min-height: 300px;
}

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

.dining-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dining-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--menu-color);
}

.dining-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* Entertainment Section */
.entertainment-section {
    padding: 60px 0;
}

.entertainment-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Spa Section */
.spa-section {
    padding: 60px 0;
}

.spa-hero {
    display: flex;
    gap: 40px;
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spa-image {
    flex: 1;
    min-height: 400px;
}

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

.spa-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spa-subtitle {
    font-size: 36px;
    color: var(--menu-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.spa-desc {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.spa-full-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Concierge Section */
.concierge-section {
    padding: 60px 0;
}

.concierge-content {
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.concierge-content h2 {
    font-size: 32px;
    color: var(--menu-color);
    margin-bottom: 20px;
}

.concierge-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
/* Partner Logos */
.partner-logos {
    background: #f8f9fa;
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.partner-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.partner-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

.partner-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.main-footer {
    background: var(--reservation-bg);
    color: var(--text-light);
    padding: 40px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 100px; /* Rezervasyon butonu için alan */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-contact {
    text-align: center;
    margin-bottom: 20px;
}

.footer-phone,
.footer-email {
    margin: 10px 0;
    font-size: 16px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Call Form Modal */
.call-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.call-form-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--menu-color);
}

.form-description {
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: var(--menu-color);
}

.time-slot input[type="radio"] {
    margin-right: 10px;
}

.time-slot input[type="radio"]:checked + span {
    color: var(--menu-color);
    font-weight: 600;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--button-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background: var(--text-light);
}

.welcome-section h2 {
    font-size: 36px;
    color: var(--menu-color);
    margin-bottom: 20px;
    text-align: center;
}

.welcome-section p {
    font-size: 18px;
    text-align: center;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobil Menü */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobil menü başlangıçta kapalı olmalı */
.mobile-menu-overlay:not(.active) {
    display: none !important;
    opacity: 0 !important;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--menu-color);
    color: var(--text-light);
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-logo img {
    max-width: 120px;
    height: auto;
    background: var(--logo-bg);
    padding: 10px;
    border-radius: 50%;
}

.mobile-menu-logo a {
    display: block;
    text-decoration: none;
}

.mobile-menu-nav ul {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu-nav .mobile-nav-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s;
}

.mobile-menu-nav .mobile-nav-link:hover {
    opacity: 0.8;
}

.mobile-menu-contact {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-phone-link {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
}

.mobile-social-media {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-menu-location {
    text-align: center;
}

.mobile-location-main {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.mobile-location-sub {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        justify-content: space-between;
        padding: 15px 20px;
        gap: 15px;
    }

    .header-left {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-right {
        margin-left: auto;
        margin-right: 0;
    }

    .sidebar {
        display: none !important;
    }

    .main-content {
        margin-left: 0;
    }

    .menu-label {
        display: none;
    }
}

    .room-card,
    .dining-card,
    .spa-hero {
        flex-direction: column;
    }

    .room-card:nth-child(even) {
        flex-direction: column;
    }

    .time-slots {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages */
.page-header {
    background: linear-gradient(135deg, var(--menu-color) 0%, #1a4d3a 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 2px;
}

.policy-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    font-size: 32px;
    color: var(--menu-color);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.policy-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.policy-section-item h3 {
    font-size: 24px;
    color: var(--menu-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.policy-section-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.policy-section-item strong {
    color: var(--menu-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .policy-section-item h3 {
        font-size: 20px;
    }

    .partner-logos {
        padding: 30px 15px;
    }

    .partner-logos-container {
        gap: 20px;
    }

    .partner-logo img {
        max-height: 40px;
    }
}

