/* ===== CSS Variables ===== */
:root {
    --primary: #2d5a27;
    --primary-dark: #1e3d1a;
    --primary-light: #4a8c42;
    --secondary: #d4a54a;
    --secondary-dark: #b8923d;
    --accent: #e8dcc4;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --success: #10b981;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 24px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.1), rgba(74, 140, 66, 0.1));
    border-radius: 30px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--white);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== Mobile Touch Helpers ===== */
.gallery-item.touch-active .gallery-overlay {
    opacity: 1;
}

/* Touch-friendly tap areas */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        min-width: 48px;
    }

    .btn-sm {
        min-height: 44px;
        padding: 0.7rem 1.4rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .gallery-overlay {
        opacity: 0.7;
        background: linear-gradient(to top, rgba(30, 61, 26, 0.6), transparent);
    }

    .faq-question {
        min-height: 56px;
        padding: 1rem 1.25rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .route-icon {
        width: 48px;
        height: 48px;
    }
}

/* ===== Navbar ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

#navbar.scrolled .logo-text,
#navbar.scrolled .nav-links a {
    color: var(--dark);
}

#navbar.scrolled .nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.nav-cta:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

#navbar.scrolled .mobile-menu-btn span {
    background: var(--dark);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
#hero {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('image/bulutlar.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 61, 26, 0.85), rgba(45, 90, 39, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 100px 2rem 2rem;
    width: 100%;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-title span {
    display: block;
    font-size: 0.4em;
    color: var(--secondary);
    font-weight: 400;
    margin: 0.5rem 0;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ===== About Section ===== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 1.5rem;
    border-radius: var(--radius);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.experience-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-text {
    color: var(--gray);
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== Rooms Section ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.section-alt .room-card {
    background: var(--light);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.room-badge.premium {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.room-badge.family {
    background: #6366f1;
}

.room-content {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.room-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.room-amenities i {
    color: var(--primary);
}

.room-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.room-footer .btn {
    justify-content: center;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    flex: 1;
    min-width: 0;
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Restaurant Section ===== */
.restaurant-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.restaurant-text {
    color: var(--gray);
    margin-bottom: 2rem;
}

.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.menu-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateX(10px);
}

.menu-icon {
    font-size: 1.25rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--white);
    transition: var(--transition);
}

.menu-item:hover .menu-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.menu-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.menu-info p {
    font-size: 0.875rem;
    color: var(--gray);
}

.restaurant-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.restaurant-img-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

.restaurant-img-grid .img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.restaurant-img-grid .img-2 {
    grid-column: 2 / 3;
}

.restaurant-img-grid .img-3 {
    grid-column: 2 / 3;
}

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 61, 26, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ===== Activities Section ===== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.activity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.activity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.activity-card p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ===== FAQ Section ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question span i:first-child {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.faq-question:hover {
    background: rgba(45, 90, 39, 0.05);
}

.faq-arrow {
    color: var(--gray);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.925rem;
}

/* ===== Location Section ===== */
.location-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.location-info h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.location-routes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.route-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.route-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 1rem;
}

.route-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.route-text p {
    font-size: 0.85rem;
    color: var(--gray);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* ===== Footer Season ===== */
.footer-season p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-season p i {
    color: var(--secondary);
    width: 16px;
    text-align: center;
}

/* ===== Contact Section ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-text p {
    color: var(--gray);
}

.contact-text a {
    color: var(--primary);
}

.contact-text a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== Map Section ===== */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
}

.map-overlay-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.map-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.map-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.map-card h4 i {
    color: var(--primary);
}

.map-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.footer-wave {
    color: var(--dark);
    margin-bottom: -5px;
}

.footer-wave svg {
    display: block;
}

.footer-content {
    padding: 1.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: 99;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--white);
    background: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {

    .about-wrapper,
    .restaurant-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow);
        z-index: 100;
    }

    .nav-links.active a {
        color: var(--dark);
        padding: 0.75rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-links.active a:last-child {
        border-bottom: none;
    }

    .hero-content {
        padding: 90px 1.25rem 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.75rem);
        margin-bottom: 0.75rem;
    }

    .hero-title span {
        margin: 0.25rem 0;
    }

    .hero-description {
        font-size: 0.9rem;
        margin: 0 auto 1.25rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }

    .hero-feature i {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    #hero {
        /* height:auto kaldırıldı; 100dvh/--vh fallback'lar ana kuralından geliyor */
        min-height: 580px;
    }

    .scroll-indicator {
        display: none;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-overlay-info {
        position: relative;
        bottom: 0;
        left: 0;
        padding: 1rem;
    }

    .location-section {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .about-img-secondary {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 1rem;
    }

    .about-experience {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        margin-top: 1rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.75rem;
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .menu-item {
        padding: 0.75rem;
    }

    .menu-icon {
        width: 44px;
        height: 44px;
    }

    .restaurant-img-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-img-grid .img-1 {
        grid-column: auto;
        grid-row: auto;
    }

    .restaurant-img-grid img {
        height: 200px;
    }

    .footer-season h4 {
        font-family: 'Poppins', sans-serif;
    }
}

@media (max-width: 480px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-feature {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 180px);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .about-wrapper,
    .restaurant-wrapper,
    .contact-wrapper {
        gap: 2rem;
    }

    .room-image {
        height: 200px;
    }

    .activity-card {
        padding: 1.5rem 1rem;
    }

    .activity-icon {
        width: 56px;
        height: 56px;
    }

    .contact-form h3 {
        font-size: 1.25rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* ===== Events Section ===== */
.events-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.event-filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.event-filter-btn:hover,
.event-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.25);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-card.hidden {
    display: none;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    text-align: center;
    z-index: 2;
    min-width: 52px;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.35);
}

.event-month {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-day {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-category {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.event-content {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.event-description {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-light);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.event-meta i {
    color: var(--primary);
    font-size: 0.8rem;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.event-tag {
    background: rgba(45, 90, 39, 0.08);
    color: var(--primary);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(45, 90, 39, 0.15);
}

.events-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.06), rgba(74, 140, 66, 0.08));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 90, 39, 0.12);
}

.events-cta p {
    color: var(--gray);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.events-cta .btn {
    display: inline-flex;
    gap: 0.5rem;
}

/* Events empty state */
.events-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.04), rgba(74, 140, 66, 0.06));
    border: 2px dashed rgba(45, 90, 39, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.events-empty-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.events-empty h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.events-empty p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    background: transparent;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.25);
}

/* Featured single event card */
.events-grid:has(.event-card-featured:only-child) {
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
}

.event-card-featured .event-image {
    height: 320px;
}

.event-card-featured .event-image img {
    object-position: center top;
}

.event-edition {
    display: inline-block;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.event-card-featured .event-title {
    font-size: 1.4rem;
}

.event-card-featured .event-description {
    font-size: 0.95rem;
}

.event-card-featured .event-date-badge {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
}

/* ===== Horizontal Event Card Layout ===== */
.event-card-horizontal {
    flex-direction: row !important;
    max-width: 900px;
    margin: 0 auto;
    min-height: 520px;
}

.event-poster {
    width: 340px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.event-details {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.event-category-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(30, 136, 229, 0.1);
    color: #1565c0;
    border: 1px solid rgba(30, 136, 229, 0.25);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.event-card-horizontal .event-title {
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.25;
}

.event-card-horizontal .event-description {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* Info list rows */
.event-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.event-info-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.event-info-item div:not(.event-info-icon) {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.event-info-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
}

.event-info-item span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
}

/* Hotel open notice */
.event-hotel-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.07), rgba(74, 140, 66, 0.1));
    border: 1px solid rgba(45, 90, 39, 0.2);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.notice-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.notice-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.notice-text p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
    margin: 0;
}

.event-reserve-btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

/* Single card grid center */
.events-grid:has(.event-card-horizontal:only-child) {
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .event-card-horizontal {
        flex-direction: column !important;
        min-height: unset !important;
    }

    .event-poster {
        width: 100% !important;
        height: 280px !important;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .event-details {
        padding: 1.5rem !important;
    }

    .event-card-horizontal .event-title {
        font-size: 1.3rem !important;
    }

    .event-reserve-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .event-poster {
        height: 240px !important;
    }

    .event-details {
        padding: 1.25rem !important;
        gap: 0.85rem !important;
    }

    .event-card-horizontal .event-title {
        font-size: 1.15rem !important;
    }

    .event-hotel-notice {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
}

/* ===== Mobile Optimizations ===== */
/* Better touch targets */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Nav font size for many items */
    .nav-links.active a {
        font-size: 1rem;
        padding: 0.65rem 0;
    }

    /* Events section */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .event-image {
        height: 180px;
    }

    .event-card {
        flex-direction: row;
        align-items: stretch;
    }

    .event-image {
        width: 130px;
        height: auto;
        flex-shrink: 0;
    }

    .event-date-badge {
        top: 0.75rem;
        left: 0.75rem;
    }

    .event-content {
        padding: 1rem 1rem 1rem 1.25rem;
    }

    .event-title {
        font-size: 1rem;
    }

    .event-description {
        font-size: 0.82rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .event-meta {
        gap: 0.6rem;
    }

    .events-filter {
        gap: 0.5rem;
        margin-bottom: 1.75rem;
    }

    .event-filter-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.82rem;
    }

    .events-cta {
        padding: 1.75rem 1.25rem;
    }

    /* Better touch targets for all buttons */
    .btn,
    .faq-question,
    .event-filter-btn,
    .back-to-top,
    .social-link,
    .nav-cta,
    .mobile-menu-btn {
        min-height: 44px;
    }

    /* Smooth scroll improvement on iOS */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Fix horizontal scroll */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Room footer wrapping */
    .room-footer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .price-amount {
        font-size: 1rem;
    }

    /* FAQ on mobile */
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.92rem;
    }

    /* Contact form on mobile */
    .contact-form-wrapper {
        margin: 0;
        border-radius: var(--radius);
    }

    /* Section spacing tighter on mobile */
    .section {
        padding: 3rem 0;
    }

    /* About section improvements */
    .about-wrapper {
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {

    /* Events: full vertical stack on very small screens */
    .event-card {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        height: 170px;
    }

    .event-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /* Filter buttons smaller */
    .event-filter-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }

    /* Hero adjustments */
    .hero-content {
        padding: 90px 1.25rem 1.5rem;
    }

    /* Footer on tiny screens */
    .footer-grid {
        gap: 2rem;
    }

    .footer-season p {
        justify-content: center;
    }

    /* Better map on tiny screens */
    .map-container iframe {
        height: 220px;
    }

    /* Contact icon smaller */
    .contact-icon {
        width: 42px;
        height: 42px;
    }

    /* Fix button text wrapping in hero */
    .hero-buttons .btn span {
        white-space: nowrap;
    }

    /* Tighter section headers */
    .section-header {
        margin-bottom: 1.5rem;
    }

    /* Events cta */
    .events-cta {
        padding: 1.25rem 1rem;
    }

    .events-cta p {
        font-size: 0.9rem;
    }
}

/* Safe area support for notched phones */
@supports(padding: max(0px)) {
    .nav-container {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .whatsapp-btn {
        bottom: max(2rem, calc(env(safe-area-inset-bottom) + 0.5rem));
        left: max(2rem, env(safe-area-inset-left));
    }

    .back-to-top {
        bottom: max(2rem, calc(env(safe-area-inset-bottom) + 0.5rem));
        right: max(2rem, env(safe-area-inset-right));
    }
}

/* ===== Instagram In-App Browser Fixes ===== */
/*
 * Instagram WebView sorunları:
 * 1. 100vh adres çubuğunu saymıyor → 100dvh ile çözüldü
 * 2. backdrop-filter bazen desteklenmiyor → fallback eklendi
 * 3. Hero content üst üste biniyor → padding-top ile çözüldü
 * 4. Room footer buton taşıyor → flex-wrap + gap ile çözüldü
 */

/* Backdrop-filter desteklenmiyor ise opak arka plan kullan */
@supports not (backdrop-filter: blur(1px)) {
    .nav-cta {
        background: rgba(45, 90, 39, 0.85) !important;
    }

    .hero-feature {
        background: rgba(30, 61, 26, 0.75) !important;
    }

    .btn-outline {
        background: rgba(30, 61, 26, 0.6) !important;
    }

    #navbar.scrolled {
        background: rgba(255, 255, 255, 0.99) !important;
    }
}

/* Tüm küçük mobil ekranlar (Instagram genellikle bu aralıkta) */
@media screen and (max-width: 430px) {

    /* Hero: Instagram toolbar yüksekliği (~50px) + navbar (~65px) */
    #hero {
        min-height: 550px;
        /* Fallback: 100svh (Small Viewport Height) */
        height: 100svh;
    }

    .hero-content {
        padding: 90px 1rem 2.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        font-size: 0.82rem;
        padding: 0.5rem 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Oda fiyat + buton taşmasını önle */
    .room-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-footer .btn {
        width: 100%;
        justify-content: center;
    }

    /* Scroll indicator Instagram'da görünürlük */
    .scroll-indicator {
        display: none;
    }
}

/* ===== .instagram-browser Class ile Hedefli Instagram Düzeltmeleri =====
   Bu class, JavaScript'teki UA tespiti sayesinde sadece Instagram'a
   uygulanır. Diğer tarayıcılar hiç etkilenmez.
============================================================ */

/* Hero content: navbar altına düzgün yerleşmesi için */
.instagram-browser .hero-content {
    padding-top: 100px !important;
}

.instagram-browser .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
}

.instagram-browser .hero-subtitle {
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 0.75rem !important;
}

.instagram-browser .hero-description {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
}

.instagram-browser .hero-features {
    margin-bottom: 1.25rem !important;
    gap: 0.5rem !important;
}

.instagram-browser .hero-feature {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(20, 50, 18, 0.8) !important;
    padding: 0.4rem 0.8rem !important;
    font-size: 0.78rem !important;
}

.instagram-browser .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.65rem !important;
}

.instagram-browser .hero-buttons .btn {
    width: 85% !important;
    max-width: 260px !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
}

/* Room footer: tam genişlik buton (sadece Instagram'da) */
.instagram-browser .room-footer {
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.instagram-browser .room-footer .btn {
    width: 100% !important;
    justify-content: center !important;
}

.instagram-browser .price-amount {
    font-size: 1rem !important;
    line-height: 1.4;
}

.instagram-browser .btn-outline {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(20, 50, 18, 0.7) !important;
}

/* Navbar: Instagram'da yarı saydam arka plan */
.instagram-browser #navbar {
    background: rgba(10, 40, 10, 0.65) !important;
}

/* Yatay taşmayı mutlak keser */
.instagram-browser body,
.instagram-browser html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Container genişlik sorunu önle */
.instagram-browser .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Oda kartı: width sorunlarını önle */
.instagram-browser .room-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Scroll indicator gizle */
.instagram-browser .scroll-indicator {
    display: none !important;
}

/* Event card horizontal: Instagram'da her zaman dikey */
.instagram-browser .event-card-horizontal {
    flex-direction: column !important;
    min-height: unset !important;
}

.instagram-browser .event-poster {
    width: 100% !important;
    height: 250px !important;
}
