:root {
    --background: #F9F6F2;
    --foreground: #333333;
    --olive-green: #556B2F;
    --lake-blue: #6B8EAD;
    --terracotta: #B87333;
    --gold: #D4AF37;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

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

.navbar {
    background-color: var(--olive-green);
    padding: 1rem;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.lang-btn {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background-color: var(--gold);
    color: var(--olive-green);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: #c8a02b;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    position: relative;
    transition: background 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    left: 0;
    transition: transform 0.2s ease-in-out;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-open .nav-links {
    transform: translateX(0);
}

.nav-open .hamburger {
    background: transparent;
}

.nav-open .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lake-blue);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: var(--terracotta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #a0642b;
    transform: scale(1.05);
}

.explore-rooms, .about-us, .gallery, .rooms, .contact {
    padding: 4rem 0;
}

.explore-rooms h2, .about-us h2, .gallery h1, .rooms h1, .contact h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.room-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.room-images img:hover {
    transform: scale(1.05);
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.iznik-link {
    text-align: center;
    margin-top: 2rem;
}

.iznik-link img {
    max-width: 200px;
    margin: 0 auto 1rem;
    cursor: pointer;
}

.footer {
    background-color: var(--olive-green);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.room-card {
    background-color: var(--lake-blue);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.map {
    flex: 1;
}

.contact-info {
    flex: 1;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  padding-top: 50px;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.phone-btn {
  margin-left: 15px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.phone-btn:hover {
  color: #007bff; /* highlight on hover */
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: var(--olive-green);
        color: white;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links a {
        margin: 1.5rem 0;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}