:root {
    --primary-color: #FFD700; /* Altın sarısı */
    --secondary-color: #333333; /* Koyu gri */
    --background-color: #F5F5F5; /* Açık gri arka plan */
    --text-color: #333333;
    --light-text: #777777;
    --darks-text: #555555;
    --price-color: #666666; /* Gri fiyat rengi */
}

* {
    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;
}

header {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 0; /* Daha az padding */
    text-align: center;
    position: relative;
}

.logo-image {
    height: 200px; /* Daha küçük bir yükseklik */
    width: auto;
    max-width: 100%;
    margin-bottom: 5px; /* Daha az boşluk */
    object-fit: contain;
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* 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-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1;
}

.language-dropdown:hover .language-options {
    display: block;
}

.language-option {
    color: var(--secondary-color);
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.language-option:hover {
    background-color: #f1f1f1;
}

.flag-icon {
    border: 1px solid #ddd;
}

/* 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: var(--secondary-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

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-color: var(--secondary-color);
}

.language-selector a {
    color: rgba(0, 0, 0, 0.39);
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.language-selector a.active {
    color: var(--secondary-color);
    font-weight: bold;
}

.language-selector a:hover {
    color: var(--text-color);
}

.hero {
    position: relative;
    height: 400px; /* Daha kısa bir yükseklik */
    overflow: hidden;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
}

.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(0, 0, 0, 0.7);
    color: white;
    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(0, 0, 0, 0.9);
    transform: scale(1.1);
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.room-option {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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: var(--secondary-color);
    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: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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(--secondary-color);
    font-size: 1.1rem;
}

.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;
}

@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: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.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(--secondary-color);
    margin-right: 15px;
}

.nearby-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.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: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nearby-list li:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.nearby-list li i {
    margin-right: 10px;
    color: var(--secondary-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: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nearby-table-row:hover {
    background-color: #f0f0f0;
}

.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: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e1e1e1;
}

.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: white;
}

.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: none;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

@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: absolute;
        left: 10px;
        top: 10px;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    nav ul.show {
        display: flex;
    }
    
    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;
    }
}

@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: 1.5rem;
    }
    
    .room-image {
        height: 150px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}