/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Tüm elementlerin genişlik sınırlarını garanti et */
* {
    max-width: 100%;
}

/* Özel durumlar için istisnalar */
img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* scroll-behavior moved to bottom to avoid duplication */

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header ve Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.logo-placeholder i {
    color: white;
    font-size: 1.2rem;
}

.logo-text h2 {
    color: #e91e63;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e91e63;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: scale(1.05);
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
}

/* Hero Section */
.hero {
    height: 65vh;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    border-radius: 25px;
    margin-left: 30px;
    margin-right: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
    border: 1px solid rgba(233, 30, 99, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 60px);
    box-sizing: border-box;
}

.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    transition: transform 0.3s ease;
}



.slide-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(12px);
    text-align: left;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.slide-caption:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.slide-caption h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #e91e63;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.slide-caption p {
    margin: 0;
    font-size: 0.65rem;
    color: #555;
    opacity: 0.85;
    line-height: 1.1;
}

/* Hero overlay kaldırıldı - fotoğraflar net görünecek */

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.95);
    color: #e91e63;
    border: 2px solid #e91e63;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.3rem;
    opacity: 0;
    transform: scale(0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero:hover .gallery-prev,
.hero:hover .gallery-next {
    opacity: 1;
    transform: scale(1);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #e91e63;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.gallery-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.dot.active,
.dot:hover {
    background: #e91e63;
    transform: scale(1.3);
    border-color: #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #e91e63;
    color: white;
}

.btn-primary:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Section Stilleri */
section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #e91e63;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f5f5f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}
.about-text p {
    margin: 0 0 1rem 0;
    color: #555;
    line-height: 1.8;
}
.about-list {
    margin: 1rem 0 0 0;
    padding: 0;
    list-style: none;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.4rem 0;
    color: #333;
}
.about-list i {
    color: #e91e63;
}

.highlights-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.highlight-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.highlight-item i {
    font-size: 1.5rem;
    color: #e91e63;
}
.highlight-item h4 {
    margin: 0.6rem 0 0.25rem 0;
    font-size: 1.05rem;
}
.highlight-item p {
    margin: 0;
    color: #666;
}
.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(233, 30, 99, 0.12);
}

.faq {
    padding: 4rem 0;
    background: #f5f5f5;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 12px;
}
.faq-question:hover {
    background: #fdf1f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #e91e63;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.about-text ul {
    list-style: none;
}

.about-text li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-text li i {
    color: #e91e63;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Rooms Section */
.rooms {
    background: #f5f5f5;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.room-image {
    height: 200px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.room-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 2;
    pointer-events: none;
}

.room-image i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.room-image p {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    text-align: center;
}

.room-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.room-photo.active {
    opacity: 1;
}

.room-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #e91e63;
    border: 2px solid #e91e63;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 20;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.room-arrow i {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #e91e63;
    
}

.room-image:hover .room-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.room-arrow:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.room-arrow:hover i {
    color: white;
}

.room-arrow-left {
    left: 15px;
}

.room-arrow-right {
    right: 15px;
}


.room-content {
    padding: 2rem;
}

.room-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.room-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-features span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.room-features i {
    color: #e91e63;
    margin-right: 0.5rem;
}

.room-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e91e63;
}

/* Facilities Section */
.facilities {
    background: #f5f5f5;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.facility-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.facility-icon i {
    font-size: 2rem;
    color: white;
}

.facility-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.facility-item p {
    color: #666;
}

/* Contact Section */
.contact {
    background: #f5f5f5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact container'ı masaüstünde biraz daha genişlet */
.contact .container {
    max-width: 1320px;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e91e63;
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.map-link:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.map-link i {
    font-size: 1rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #eee;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.map-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 60vh;
        margin: 100px 20px 0 20px;
        width: calc(100% - 40px);
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    section {
        padding: 60px 0;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        width: 240px;
        max-height: calc(100vh - 100px);
        text-align: left;
        transition: 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 1rem 0;
        z-index: 999;
        border-radius: 0 0 12px 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.3rem 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 0.6rem 1.2rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        font-size: 0.95rem;
    }

    .nav-menu .nav-link:hover {
        background: rgba(233, 30, 99, 0.08);
        color: #e91e63;
        border-left-color: #e91e63;
        padding-left: 1.5rem;
    }

    .nav-menu .nav-link.is-active {
        color: #e91e63;
        background: rgba(233, 30, 99, 0.12);
        border-left-color: #e91e63;
    }

    /* Ripple efekti */
    .nav-menu .nav-link { position: relative; overflow: hidden; }
    .ripple {
        position: absolute;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(233,30,99,0.3) 0%, rgba(233,30,99,0.1) 50%, transparent 70%);
        animation: ripple-anim 400ms ease-out forwards;
        pointer-events: none;
        z-index: 0;
    }
    @keyframes ripple-anim {
        from { width: 0; height: 0; opacity: 0.6; }
        to { width: 200px; height: 200px; opacity: 0; }
    }

    /* Menü overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 998;
        pointer-events: none;
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Body scroll kilidi */
    body.menu-open { overflow: hidden; }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 50vh;
        margin: 100px 10px 0 10px;
        width: calc(100% - 20px);
        max-width: none;
    }

    .slide-caption {
        bottom: 20px;
        left: 15px;
        right: auto;
        padding: 0.3rem 0.5rem;
        max-width: 140px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .slide-caption h3 {
        font-size: 0.8rem !important;
        margin-bottom: 0.15rem;
        font-weight: 600;
    }

    .slide-caption p {
        font-size: 0.6rem !important;
        line-height: 1.1;
        font-weight: 400;
    }

    .gallery-controls {
        padding: 0 1rem;
    }

    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Mobilde oda ok butonları direkt görünür */
    .room-arrow {
        opacity: 1 !important;
        transform: translateY(-50%) scale(1) !important;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 0.5rem;
    }
    
    .gallery-dots {
        bottom: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .room-card {
        margin: 0;
        max-width: none;
    }

    .room-content {
        padding: 1.5rem;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .facility-item {
        padding: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .form-buttons .btn {
        width: 100%;
        padding: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        height: 45vh;
        margin: 80px 5px 0 5px;
        width: calc(100% - 10px);
    }
    
    .slide-caption {
        bottom: 15px;
        left: 10px;
        right: auto;
        padding: 0.25rem 0.4rem;
        max-width: 120px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(6px);
        border-radius: 5px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .slide-caption h3 {
        font-size: 0.75rem !important;
        margin-bottom: 0.1rem;
        font-weight: 600;
    }
    
    .slide-caption p {
        font-size: 0.55rem !important;
        line-height: 1.0;
        font-weight: 400;
    }

    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .logo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .logo-placeholder i {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .room-card {
        margin: 0;
    }

    .room-content {
        padding: 1rem;
    }

    .room-content h3 {
        font-size: 1.2rem;
    }

    .room-content p {
        font-size: 0.9rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .facility-item {
        padding: 0.8rem;
    }

    .facility-item h3 {
        font-size: 1.1rem;
    }

    .contact-content {
        gap: 1rem;
    }

    .contact-form {
        padding: 0.8rem;
    }

    .contact-info {
        padding: 0.8rem;
    }

    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .form-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .form-buttons .btn {
        width: 100%;
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .map-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

/* Optimized animations for better performance */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll ve padding ayarları */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Büyük ekranlar için hero boyutu */
@media (min-width: 1200px) {
    .hero {
        height: 60vh;
        max-width: 1100px;
    }
}

@media (min-width: 1400px) {
    .hero {
        height: 55vh;
        max-width: 1050px;
    }
}
