:root {
    --primary-color: #D4AF37;
    --secondary-color: #1b3a2d;
    --background-color: #102a22;
    --text-color: #e8e2cf;
    --light-text: #c9bea3;
    --darks-text: #c9bea3;
    --price-color: #D4AF37;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background: radial-gradient( circle at 20% 10%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 40% ),
                linear-gradient(180deg, #132f24 0%, #0f251d 100%);
}

header {
    background: linear-gradient(180deg, #193b2c 0%, #123022 100%);
    color: var(--text-color);
    padding: 5px 0;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    height: 200px; /* Daha küçük bir yükseklik */
    width: auto;
    max-width: 100%;
    margin: 0 auto 5px; /* Ortala */
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

header p {
    color: var(--text-color);
    display: inline-block;
    border-bottom: 2px solid rgba(212,175,55,0.5);
    padding-bottom: 6px;
}

/* CSS eklemeleri */
footer {
  background-color: #2a2a2a;
  padding: 40px 20px 20px;
  color: white;
  font-family: 'Georgia', serif;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 30px; 
}

.footer-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 184, 0, 0.3);
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 184, 0, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  margin-bottom: 30px;
}

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffb800;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffb800;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #999;
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .footer-logo-img {
    width: 100px;
    height: 100px;
  }
  
  .footer-links {
    gap: 15px 25px;
  }
  
  .footer-link {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    width: 80px;
    height: 80px;
  }
  
  .footer-links {
    gap: 12px 20px;
  }
  
  .footer-link {
    font-size: 14px;
  }
  
  footer {
    padding: 30px 15px 15px;
  }
}

.language-selector {
    position: relative;
    text-align: right;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    z-index: 1000;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-button {
    background-color: transparent;
    color: white;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.language-button:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.current-language {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
}

.language-options {
    display: none;
    position: absolute;
    right: 0;
    background: linear-gradient(180deg, #193b2c 0%, #123022 100%);
    border: 1px solid rgba(212,175,55,0.18);
    min-width: 120px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    border-radius: 10px;
    z-index: 1;
}

.language-dropdown:hover .language-options {
    display: block;
}

.language-option {
    color: var(--text-color);
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.language-option:hover {
    background-color: rgba(212,175,55,0.12);
}

.flag-icon {
    border: 1px solid rgba(212,175,55,0.25);
}

/* Aktif dil için stil */
.language-option.active {
    color: var(--primary-color);
    font-weight: bold;
}

header p {
    margin: 0;
    font-size: 1.1rem;
}

nav {
    background-color: #6b1a1a;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.25s ease, opacity 0.25s ease, max-height 0.25s ease;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
}

nav.menu-open {
    max-height: none;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 56px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    box-sizing: border-box;
    width: 100%;
}

nav ul.show {
    max-height: 100vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow: visible;
}

nav li {
    margin: 5px 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-block;
}

nav a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.language-selector {
    text-align: right;
    padding: 10px 20px;
    background: linear-gradient(180deg, #193b2c 0%, #123022 100%);
    color: var(--text-color);
}

.language-selector a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.language-selector a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.language-selector a:hover {
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 400px; /* Daha kısa bir yükseklik */
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 27px;
    bottom: 27px;
    left: 48px;
    right: 48px;
    border: 2px solid #8fd3a1;
    border-radius: 12px;
    box-shadow: 0 0 0 2px rgba(143,211,161,0.25), 0 0 14px rgba(143,211,161,0.35);
    pointer-events: none;
}

.hero.hero-neon-wide::before {
    left: 15px;
    right: 15px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
    border-radius: 12px;
}

.hero-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Butonlar arası boşluk */
    padding: 0 20px;
}

.hero-nav button {
    background-color: rgba(212, 175, 55, 0.2);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; /* Margin'i sıfırla */
}

.hero-nav button:hover {
    background-color: rgba(212, 175, 55, 0.35);
    transform: scale(1.1);
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #cf3a3a;
    border-bottom: 2px solid rgba(212,175,55,0.5);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 4.8rem;
    font-family: 'Harry P', serif;
    -webkit-text-stroke: 0.2px rgba(106,26,26,0.35);
    text-shadow: 0 0 10px rgba(52, 4, 4, 0.35), 0 0 3px rgba(106,26,26,0.25);
}

h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.room-option {
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.room-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 3px;
}

.room-option button {
    background-color: var(--primary-color);
    color: #6b1a1a;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.room-option button:hover {
    background-color: #e6c200;
}

.opening-hours {
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.theme-switcher { display: none; }

.snowflakes { 
    position: fixed; 
    left: 0; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    pointer-events: none; 
    z-index: 60; 
    display: block; 
}

.snowflakes span { 
    position: absolute; 
    top: -10px; 
    animation: snowDrift var(--fall, 12s) linear infinite; 
    opacity: 0.7; 
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)); 
    will-change: transform, opacity;
}

.snowflakes span::after {
    content: "❄";
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: var(--size, 12px);
    line-height: 1;
    text-shadow: 0 0 6px rgba(255,255,255,0.25);
    animation: snowSpin var(--spin, 10s) linear infinite;
}

@keyframes snowDrift { 
    0% { transform: translate3d(0, -10px, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate3d(calc(var(--driftX, 12px) * -0.5), 25vh, 0) rotate(60deg); }
    50% { transform: translate3d(calc(var(--driftX, 12px) * 0.6), 50vh, 0) rotate(120deg); }
    75% { transform: translate3d(calc(var(--driftX, 12px) * -0.7), 85vh, 0) rotate(170deg); }
    100% { transform: translate3d(calc(var(--driftX, 12px) * 0.9), 110vh, 0) rotate(200deg); opacity: 0.15; }
}

@keyframes snowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.snowflakes span:nth-child(1){left:5%;animation-duration:12s;animation-delay:0s;--driftX:10px;--size:12px}
.snowflakes span:nth-child(2){left:15%;animation-duration:13s;animation-delay:1s;--driftX:14px;--size:14px}
.snowflakes span:nth-child(3){left:25%;animation-duration:11s;animation-delay:2s;--driftX:12px;--size:11px}
.snowflakes span:nth-child(4){left:35%;animation-duration:12s;animation-delay:0.5s;--driftX:9px;--size:12px}
.snowflakes span:nth-child(5){left:45%;animation-duration:14s;animation-delay:1.5s;--driftX:16px;--size:15px}
.snowflakes span:nth-child(6){left:55%;animation-duration:12s;animation-delay:0.8s;--driftX:11px;--size:12px}
.snowflakes span:nth-child(7){left:65%;animation-duration:13s;animation-delay:1.2s;--driftX:15px;--size:13px}
.snowflakes span:nth-child(8){left:75%;animation-duration:11s;animation-delay:0.3s;--driftX:13px;--size:12px}
.snowflakes span:nth-child(9){left:85%;animation-duration:12s;animation-delay:1.8s;--driftX:10px;--size:11px}
.snowflakes span:nth-child(10){left:50%;animation-duration:15s;animation-delay:0.7s;--driftX:18px;--size:16px}
.snowflakes span:nth-child(11){left:30%;animation-duration:16s;animation-delay:1.1s;--driftX:8px;--size:10px}
.snowflakes span:nth-child(12){left:70%;animation-duration:13s;animation-delay:2.2s;--driftX:12px;--size:12px}

body.theme-noel {
    --primary-color: #D4AF37;
    --secondary-color: #1b3a2d;
    --background-color: #102a22;
    --text-color: #e8e2cf;
    --light-text: #c9bea3;
    --price-color: #D4AF37;
    background: radial-gradient( circle at 20% 10%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 40% ),
                linear-gradient(180deg, #132f24 0%, #0f251d 100%);
    color: var(--text-color);
}

header::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.7), transparent);
    box-shadow: 0 0 12px rgba(212,175,55,0.35);
}
.gallery-item { background-color: rgba(255,255,255,0.06); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

/* Features Section */
.features-section {
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--text-color);
    min-width: 25px;
    margin-top: 3px;
}

.feature-content h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0;
}
.feature-content h4::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #123022, #D4AF37);
    border-radius: 2px;
    margin-top: 4px;
}

.feature-content p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.opening-hours strong {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.opening-hours p {
    margin: 5px 0;
}

.opening-hours em {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: var(--light-text);
}

.menu-category {
    margin-bottom: 30px;
}

.menu-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--light-text);
}

.menu-item-name {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.menu-item-price {
    float: right;
    color: var(--price-color);
    font-weight: bold;
}

/* Galeri Stilleri */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* Lightbox Modal Stilleri */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin: 60px auto;
    animation: zoomIn 0.3s;
}

.lightbox-content img {
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

@keyframes zoomIn {
    from {transform: scale(0.9);}
    to {transform: scale(1);}
}

.lightbox-caption {
    margin: 15px auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 0;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

/* Nearby Section Styles */
.nearby-container {
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.nearby-category {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.nearby-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nearby-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.nearby-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.nearby-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    padding-bottom: 0;
    position: relative;
}
.nearby-header h3::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, #123022, #D4AF37);
    border-radius: 2px;
    margin-top: 6px;
}

.nearby-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.nearby-list li {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nearby-list li:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nearby-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.nearby-place {
    flex-grow: 1;
    font-weight: 500;
}

.nearby-distance {
    color: var(--light-text);
    font-size: 0.9rem;
}

.nearby-table {
    display: grid;
    gap: 10px;
}

.nearby-table-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nearby-table-row:hover {
    background-color: rgba(255,255,255,0.1);
}

.nearby-table-row .nearby-distance {
    min-width: 60px;
    margin-right: 15px;
    font-weight: 500;
    color: #666666;
}

.nearby-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    text-align: center;
}

/* FAQ Section */
#faq {
    padding: 2rem;
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background-color: rgba(255,255,255,0.06);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    color: var(--text-color);
}

.faq-question:hover {
    background-color: rgba(255,255,255,0.1);
}

.faq-question:after {
    content: '+';
    float: right;
    font-weight: bold;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: transparent;
}

/* Yeni Eklenen Datenschutz Linki Stilleri */
.footer-privacy {
    margin: 20px 0;
    text-align: center;
}

.privacy-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: #ffb800;
    border-bottom-color: #ffb800;
}

/* Responsive tasarım için mobil ayarları */
@media (max-width: 768px) {
    .privacy-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .privacy-link {
        font-size: 12px;
    }
}

.faq-answer.show {
    padding: 1rem;
    max-height: 500px;
}

@media (max-width: 768px) {
    .nearby-list {
        grid-template-columns: 1fr;
    }
    
    .nearby-table-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nearby-table-row .nearby-distance {
        margin-bottom: 5px;
        margin-right: 0;
    }
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    cursor: pointer;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive ayarlar */
@media only screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
        margin: 100px auto 15px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px;
        font-size: 24px;
    }
}

.menu-item-description {
    color: var(--light-text);
    margin-top: 5px;
    font-size: 0.9rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.contact-info {
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar (gerekirse) */
    margin-top: 20px;
    
}

.social-icon {
    margin-right: 15px;
    
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.map-container {
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

.mobile-menu-button {
    display: block;
    position: fixed;
    left: calc(12px + env(safe-area-inset-left, 0px));
    top: calc(12px + env(safe-area-inset-top, 0px));
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px 12px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-button.menu-btn-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        height: 300px; /* Mobilde daha kısa */
    }
}

@media (max-width: 480px) {
    .hero {
        height: 200px; /* Küçük ekranlarda daha kısa */
    }
    .logo-image {
        height: 120px; /* Mobilde daha küçük logo */
    }
}

/* Mobil için ayarlar */
@media (max-width: 768px) {
    .hero-nav {
        bottom: 15px;
    }
    
    .hero-nav button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-nav {
        bottom: 10px;
        gap: 15px;
    }
    
    .hero-nav button {
        width: 32px;
        height: 32px;
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .hero {
        height: 350px;
    }
    
    .mobile-menu-button {
        display: block;
        position: fixed;
        left: calc(12px + env(safe-area-inset-left, 0px));
        right: auto;
        top: calc(12px + env(safe-area-inset-top, 0px));
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    nav li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: block;
        width: 100%;
        padding: 10px;
    }
    
    .room-option {
        padding: 15px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    section {
        padding: 30px 15px;
    }
    h2 {
        font-size: 2.6rem;
        color: #d54a4a;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .language-selector {
        text-align: center;
        padding: 10px;
    }
    
    .language-selector a {
        display: inline-block;
        margin: 0 5px;
    }
    
    .hero {
        height: 250px;
    }
    
    h2 {
        font-size: 2.6rem;
        color: #d54a4a;
    }
    
    .room-image {
        height: 150px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}
nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

nav.nav-visible {
    transform: translateY(0);
    opacity: 1;
}
