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

:root {
    --primary-color: #337a02; /* Yeni ana renk */
    --secondary-color: #4CAF50; /* Orijinal orta yeşil */
    --accent-color: #81C784; /* Orijinal açık yeşil */
    --dark-color: #1B5E20; /* Orijinal en koyu yeşil */
    --light-color: #E8F5E9; /* Orijinal en açık yeşil */
    --text-dark: #2C3E50; /* Koyu metin rengi */
    --text-light: #FFFFFF; /* Açık metin rengi */
    --gold: #D4AF37; /* Altın rengi */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header Styles */
.top-bar {
    background: var(--dark-color);
    color: var(--text-light);
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.1;
}

.top-bar .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1010px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    min-height: 32px;
    gap: 0;
    min-width: 0;
    white-space: nowrap;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.top-bar-content span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-light);
}

.top-bar-content span i {
    margin-right: 6px;
}

.top-bar-content .language-selector {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    flex: 0 1 auto;
    justify-content: flex-end;
    line-height: 1.1;
}

.language-selector a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 6px;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    line-height: 1.1;
}

.language-selector a.active,
.language-selector a:hover {
    opacity: 1;
    color: var(--gold);
}

/* Telefon ve mail linklerini normal metin gibi göster */
.top-bar-content span a,
.top-bar-content a[href^="tel"],
.top-bar-content a[href^="mailto"] {
    color: var(--text-light) !important;
    text-decoration: none !important;
    font-weight: 500;
    cursor: pointer;
}
.top-bar-content span a:hover,
.top-bar-content a[href^="tel"]:hover,
.top-bar-content a[href^="mailto"]:hover {
    color: var(--gold) !important;
}

.main-nav {
    background: var(--text-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 15px 0;
    min-height: 90px;
    gap: 12px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 4px;
}

.logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 80px;
    flex: 1;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 80px;
    white-space: nowrap;
}

.nav-links li a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 8px;
    white-space: nowrap;
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Mobil Menü Stilleri */
.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2c3e50;
}

.mobile-menu.active i:before {
    content: "\f00d";
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/anasayfa.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    display: none; /* Artık arka plan resmi kullanıyoruz */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.slide-content h2 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.08;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Arka plan üzerine koyu overlay ekleyelim */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Yarı saydam siyah overlay */
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-color);
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
}

.rooms h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.room-features {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
}

.room-features li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.room-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.room-card {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid var(--light-color);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.room-card p {
    padding: 0 20px 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.room-card .btn {
    margin: 0 20px 20px;
}

/* Footer */
footer {
    background: #23692a !important;
    color: var(--text-light);
    padding: 0 0 0 0;
    margin: 0;
    border-top: none !important;
    margin-top: 0 !important;
    box-shadow: none;
}
.hotel-photo-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    background: transparent !important;
}
.feed-discover-meet-box {
    border-bottom: none !important;
    background: transparent !important;
}
.footer-content {
    margin-bottom: 10px;
    background: #23692a !important;
}
.footer-bottom {
    padding-top: 8px;
    border-top: none;
    background: #23692a !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-logo-section {
    margin-right: 0 !important;
    padding-right: 0 !important;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section address a,
.footer-section address a:visited,
.footer-section address a:active,
.footer-section address a:hover,
.footer-section address a:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.social-links a {
    color: var(--text-light);
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-logo-section {
        justify-content: center !important;
        text-align: center;
    }
    .footer-logo-section img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Mobil Görünüm: Slider'lar Alt Alta Galeriye Dönüşür (Aspect Ratio Korumalı) */
    .silent-pool-slider,
    .kids-club-slider,
    .meeting-slider {
        height: auto;
    }

    .silent-pool-slider .slide,
    .kids-club-slider .slide,
    .meeting-slider .slide {
        position: relative !important;
        opacity: 1 !important;
        
        /* Aspect Ratio koruma (16:9) - FOTOĞRAFIN TAM GÖRÜNMESİNİ SAĞLAR */
        height: 0;
        padding-bottom: 56.25%; /* Bu oran (9 / 16), kutuyu 16:9 formatına zorlar */

        margin-bottom: 1rem;
        background-size: cover;
        background-position: center;
    }

    .silent-pool-slider .slide:last-child,
    .kids-club-slider .slide:last-child,
    .meeting-slider .slide:last-child {
        margin-bottom: 0; /* Son fotoğrafın altındaki boşluğu kaldır */
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar-content > span {
        display: block;
        margin: 5px 0;
    }

    .language-selector {
        margin-top: 10px;
        margin-left: 0;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: .9rem;
        letter-spacing: .15em;
    }
}

/* Page Content Styles */
.page-content {
    padding: 60px 0;
}

.page-content h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

/* Pool Content Styles */
.pool-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pool-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.pool-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.pool-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.pool-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.feature p {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pool-content {
        grid-template-columns: 1fr;
    }
    
    .pool-image {
        order: -1;
    }
}

/* Barlar Sayfası Stilleri */
.bars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bar-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bar-card:hover {
    transform: translateY(-5px);
}

.bar-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.bar-info {
    padding: 1.5rem;
}

.bar-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bar-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bar-features {
    list-style: none;
    padding: 0;
}

.bar-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.bar-features li i {
    color: #27ae60;
    font-size: 1.1em;
    min-width: 20px;
    text-align: center;
    line-height: 1;
    margin-right: 0;
    display: inline-block;
}

@media (max-width: 768px) {
    .bars-grid {
        grid-template-columns: 1fr;
    }
    
    .bar-card {
        margin-bottom: 1.5rem;
    }
}

/* Çocuk Kulübü Sayfası Stilleri */
.kids-club-content {
    margin-top: 2rem;
}

.kids-club-image {
    margin-bottom: 2rem;
}

.kids-club-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.kids-club-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.kids-club-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activity-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.activity-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.activity-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.club-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.club-features h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.club-features ul {
    list-style: none;
    padding: 0;
}

.club-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.club-features li i {
    color: #27ae60;
    margin-right: 1rem;
    width: 20px;
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        margin-bottom: 1rem;
    }
}

/* Toplantı Sayfası Stilleri */
.meeting-content {
    margin-top: 2rem;
}

.meeting-image {
    margin-bottom: 2rem;
}

.meeting-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meeting-info {
    margin-bottom: 3rem;
}

.meeting-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.meeting-info p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.meeting-room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.meeting-room-card:hover {
    transform: translateY(-5px);
}

.meeting-room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.room-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.room-features li i {
    color: #27ae60;
    margin-right: 0.5rem;
    width: 20px;
}

.meeting-services {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.meeting-services h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

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

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .meeting-rooms {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .meeting-room-card {
        margin-bottom: 1.5rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-content {
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-primary {
    background: #27ae60;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #219a52;
}

.map-container {
    margin-bottom: 3rem;
}

.map-container h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
}

/* Silent Pool Slider - Artık diğerleriyle aynı yapıda */
.silent-pool-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.silent-pool-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.silent-pool-slider .slide.active {
    opacity: 1;
}

/* About Page Font - Monomakh yerine Montserrat kullan */
.about-page h1,
.about-page h2,
.about-page .about-text p {
    font-family: 'Montserrat', Arial, sans-serif !important;
}
.about-page .about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

@font-face {
    font-family: 'Monomakh';
    src: url('../fonts/Monomakh-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
}
/* Green Anatolia Hotel ve Meet the Nature hariç */
.slide-content h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.08;
}
.hero-subtitle {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 38px;
    opacity: 0.92;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.18);
    display: block;
}
p, li, address, .footer-section, .about-text, .footer-bottom, .room-features, .room-features li, .bar-features, .bar-features li, .club-features, .club-features li, .meeting-info, .meeting-info p, .room-info, .room-info p, .bar-info, .bar-info p, .service-card, .service-card p, .info-card, .info-card p {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
}

.reservation-section {
    background: var(--light-color);
    padding: 40px 0 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.reservation-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.reservation-form input[type="text"] {
    height: 32px;
    font-size: 0.95rem;
    padding: 0 6px;
    border-radius: 5px;
    border: 1px solid #bbb;
    min-width: 60px;
    width: 110px;
    box-sizing: border-box;
    margin: 0 4px;
}
.reservation-form label {
    margin: 0 2px 0 8px;
    font-size: 1.01rem;
}
.reservation-form .btn {
    margin-left: 12px;
}
@media (max-width: 600px) {
    .reservation-form {
        flex-direction: column;
        gap: 10px;
    }
    .reservation-section {
        padding: 25px 0 20px;
    }
}

.hero-reservation-form {
    margin: 32px auto 0 auto;
    background: rgba(255,255,255,0.13);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 18px 28px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
.hero-reservation-form label {
    font-size: 1.05em;
    color: #fff;
}
.hero-reservation-form input[type="date"] {
    font-size: 1rem;
    padding: 8px 12px;
    min-width: 120px;
    height: 38px;
    background: rgba(255,255,255,0.85);
    color: #222;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: border-color 0.2s;
}
.hero-reservation-form .btn {
    font-size: 1rem;
    padding: 8px 22px;
    height: 38px;
    margin-left: 10px;
    border-radius: 5px;
}
@media (max-width: 600px) {
    .hero-reservation-form {
        width: 100vw;
        max-width: 100vw;
        min-width: unset;
        padding: 14px 0;
        margin: 18px 0 0 0;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        display: flex;
    }
    .reservation-form label,
    .reservation-form input[type="text"],
    .reservation-form .btn {
        width: 92vw;
        max-width: 350px;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        display: block;
        box-sizing: border-box;
        text-align: left;
    }
    .reservation-form .btn {
        margin-top: 10px;
        font-size: 1.1em;
        text-align: center;
    }
}

.hero-slogan {
    color: #f3f3f3;
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-top: 1.6rem;
    opacity: 0.92;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.13);
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    display: block;
}

.hotel-photo-section {
    width: 100vw;
    margin: 0;
    padding: 0 0 0 0;
    background: #e8f5e9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    border: none;
    box-shadow: none;
}
.hotel-main-photo {
    width: 100vw;
    height: 420px;
    object-fit: cover;
    border-radius: 0;
    background: #fff;
    display: block;
}
@media (max-width: 900px) {
    .hotel-main-photo {
        height: 240px;
    }
}
@media (max-width: 600px) {
    .hotel-main-photo {
        height: 160px;
    }
    .hotel-photo-section {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        max-height: 60px !important;
    }

    .hero-subtitle {
        letter-spacing: .2em;
        font-size: 1rem;
    }
    
    .top-bar .container {
        white-space: normal;
    }

    .top-bar-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav .container {
        justify-content: center;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        height: auto;
        flex: none;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
        height: auto;
    }

    .nav-links a {
        font-size: 1.2rem;
        height: auto;
    }

    .hero {
        height: 90vh;
    }
    .slide-content {
        top: 28%;
    }
    .slide-content h2 {
        font-size: 1.5rem;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .hero-slogan {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar-content > span {
        display: block;
        margin: 5px 0;
    }

    .language-selector {
        margin-top: 10px;
        margin-left: 0;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: .9rem;
        letter-spacing: .15em;
    }
}

/* Kids Club Slider */
.kids-club-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Yüksekliği tam ekran olarak ayarlandı */
    overflow: hidden;
}

.kids-club-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.kids-club-slider .slide.active {
    opacity: 1;
}

/* Kids Club Content Section */
.kids-club-info-section {
    padding: 80px 0;
    background: var(--light-color);
}

.kids-club-info-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.kids-club-info-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.kids-club-info-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 3rem;
    font-family: 'Monomakh', sans-serif !important;
}

.kids-club-info-section .kids-club-info h2 {
    color: var(--text-dark);
}

.kids-club-info-section .kids-club-info p {
    color: var(--text-dark);
    font-family: 'Monomakh', sans-serif !important;
}

@media (max-width: 768px) {
    .meeting-rooms {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .meeting-room-card {
        margin-bottom: 1.5rem;
    }
}

/* Meeting Page Slider & Content */
.meeting-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.meeting-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.meeting-slider .slide.active {
    opacity: 1;
}

.meeting-info-section {
    padding: 80px 0;
    background: var(--light-color);
}

.meeting-info-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 3rem;
    font-family: 'Montserrat', Arial, sans-serif !important;
}

.meeting-info-section p,
.meeting-info-section li {
    font-family: 'Montserrat', Arial, sans-serif !important;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.meeting-info-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.meeting-info-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.meeting-info-section li {
    padding-left: 0;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.meeting-info-section li::before {
    content: '•'; /* Madde işareti olarak yuvarlak kullan */
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em; /* Metinle hizala */
    position: absolute;
    left: 0.5em;
}

.meeting-info-section li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

@media (max-width: 768px) {
    .meeting-rooms {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .meeting-room-card {
        margin-bottom: 1.5rem;
    }
}

/* Silent Pool Page - New Layout */
.silent-pool-slider {
    height: 100vh;
}

.silent-pool-info-section {
    padding: 80px 0;
    background: var(--light-color);
}

.silent-pool-info-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 3rem;
    font-family: 'Monomakh', sans-serif !important;
}

.silent-pool-info-section p {
    font-family: 'Monomakh', sans-serif !important;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    .silent-pool-info-section h1 {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    .mobile-gallery-scroll {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding: 8px 0 16px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-gallery-scroll img {
        flex: 0 0 75vw;
        max-width: 75vw;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        border: 3px solid #e8f5e9;
        background: #fff;
        scroll-snap-align: center;
        padding: 6px;
        box-sizing: border-box;
        object-fit: contain;
        display: block;
    }
}
@media (min-width: 769px) {
    .mobile-gallery-scroll {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-simple-slider {
        position: relative;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 18px 0 18px 0;
    }
    .mobile-simple-slider img {
        width: 90vw;
        max-width: 400px;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        border: 3px solid #e8f5e9;
        background: #fff;
        padding: 6px;
        box-sizing: border-box;
        display: block;
    }
    .mobile-simple-slider .slider-arrow {
        display: none !important;
    }
    /* Diğer mobil galerileri gizle */
    .mobile-gallery,
    .mobile-gallery-scroll {
        display: none !important;
    }
    /* Slider masaüstünde gizli */
}
@media (min-width: 769px) {
    .mobile-simple-slider {
        display: none !important;
    }
}

.reservation-form input[type="text"] {
    height: 34px;
    font-size: 0.97rem;
    padding: 0 7px;
    border-radius: 6px;
    border: 1px solid #bbb;
    min-width: 80px;
    box-sizing: border-box;
}
.reservation-form label {
    margin-right: 4px;
    margin-left: 8px;
    font-size: 1.04rem;
}
.reservation-form .btn {
    margin-left: 16px;
}

/* Flatpickr ana rengi site yeşiline göre özelleştirildi */
.flatpickr-calendar.material_green .flatpickr-months,
.flatpickr-calendar.material_green .flatpickr-weekdays,
.flatpickr-calendar.material_green .flatpickr-day.selected,
.flatpickr-calendar.material_green .flatpickr-day.startRange,
.flatpickr-calendar.material_green .flatpickr-day.endRange,
.flatpickr-calendar.material_green .flatpickr-day.inRange {
    background: #337a02 !important;
    color: #fff !important;
    border-color: #337a02 !important;
}
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months {
    background: #337a02 !important;
    color: #fff !important;
    border: 1px solid #337a02 !important;
}
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months:focus,
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months:hover {
    background: #337a02 !important;
    color: #fff !important;
    border: 1.5px solid #337a02 !important;
}
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months option {
    background: #fff !important;
    color: #337a02 !important;
}
.flatpickr-calendar.material_green .flatpickr-current-month input.cur-year {
    background: #337a02 !important;
    color: #fff !important;
    border: 1px solid #337a02 !important;
}
.flatpickr-calendar.material_green .flatpickr-current-month input.cur-year:focus,
.flatpickr-calendar.material_green .flatpickr-current-month input.cur-year:hover {
    background: #337a02 !important;
    color: #fff !important;
    border: 1.5px solid #337a02 !important;
}

/* Flatpickr ay ve yıl kutusu için site yeşili zorunlu */
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months,
.flatpickr-calendar.material_green .flatpickr-current-month input.cur-year {
    background: #337a02 !important;
    color: #fff !important;
    border: 1px solid #337a02 !important;
    box-shadow: none !important;
}
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months:focus,
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months:hover,
.flatpickr-calendar.material_green .flatpickr-current-month input.cur-year:focus,
.flatpickr-calendar.material_green .flatpickr-current-month input.cur-year:hover {
    background: #337a02 !important;
    color: #fff !important;
    border: 1.5px solid #337a02 !important;
}
.flatpickr-calendar.material_green .flatpickr-monthDropdown-months option {
    background: #fff !important;
    color: #337a02 !important;
}

/* Anatolia Çocuk Kulübü slider mobilde de görünsün */
@media (max-width: 768px) {
    .kids-club-slider {
        display: block !important;
    }
}

.feed-discover-meet-box {
  width: 100vw;
  max-width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  border-bottom: none !important;
}
.feed-discover-meet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}
@media (max-width: 900px) {
  .feed-discover-meet-box {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .feed-discover-meet-box {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
  }
  .feed-discover-meet-img {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    object-fit: cover !important;
    object-position: center 50% !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
  html, body {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  .page-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .hotel-photo-section,
  .feed-discover-meet-box {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }
  .feed-discover-meet-img {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    display: block !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }
  footer {
    border-top: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (min-width: 601px) {
  .footer-section h3 {
    margin-top: 2.2rem;
  }
}

@media (min-width: 601px) {
  .feed-discover-meet-box {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    overflow: hidden !important;
    vertical-align: bottom !important;
  }
  .feed-discover-meet-img {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    object-fit: cover !important;
    display: block !important;
    vertical-align: bottom !important;
  }
  footer {
    border-top: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 600px) {
    .page-content {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .contact-content {
        margin-top: 1rem;
    }
    .contact-info {
        gap: 1rem;
    }
    .info-card {
        padding: 1.1rem;
        border-radius: 8px;
    }
    .info-card h3 {
        font-size: 1.1rem;
    }
    .info-card i {
        font-size: 1.7rem;
    }
    .info-card p {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.18rem !important;
    margin-bottom: 14px !important;
  }
  h2 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
  }
  h3 {
    font-size: 0.92rem !important;
    margin-bottom: 8px !important;
  }
  p, .about-text p, .footer-section, .footer-section ul li, .footer-bottom, .room-features li, .bar-features li, .club-features li, .meeting-info p, .room-info p, .bar-info p, .service-card p, .info-card p {
    font-size: 0.97rem !important;
    line-height: 1.5 !important;
  }
  .about-text p {
    font-size: 1rem !important;
  }
  h4, h5 {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
  }
  /* Alt başlıklar ve giriş cümleleri için */
  .meeting-info-section h2 + p,
  .meeting-info-section h1 + p,
  .about-text strong,
  .about-text b,
  .section-lead,
  .subtitle {
    font-size: 0.97rem !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    display: block !important;
  }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-button a i {
    font-size: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button a {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
  .meeting-info-section h1, .meeting-info-section > .container > h1 {
    font-size: 1.18rem !important;
    margin-bottom: 8px !important;
    margin-top: -16px !important;
    padding-bottom: 0 !important;
    line-height: 1.22 !important;
  }
}
