/* ===== RESPONSIVE STYLES ===== */

/* Desktop Large */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .slide-content h1 {
        font-size: 3.5rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Grid adjustments */
    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .col-md-4 {
        width: 50%;
    }
    
    .col-md-8 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Booking form tablet */
    .booking-form-container {
        bottom: 30px;
        width: calc(100% - 30px);
    }
    
    .booking-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .booking-btn {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
    
    /* About section */
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    /* Contact section */
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    /* Rooms grid */
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    /* Grid adjustments */
    .col-md-4 {
        width: 100%;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    /* Header */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span {
        margin: 0 10px;
        font-size: 12px;
    }
    
    .logo img {
        height: 50px;
    }
    
    /* Hero section */
    .hero {
        height: 100vh;
    }
    
    .booking-form-container {
        bottom: 20px;
        width: calc(100% - 20px);
    }
    
    /* Booking form responsive */
    .booking-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .booking-form {
        padding: 20px;
        border-radius: 15px;
    }
    
    .booking-btn {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
    
    .booking-form input,
    .booking-form select {
        padding: 14px 16px;
        min-height: 50px;
        font-size: 14px;
    }
    
    .booking-form label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Rooms grid */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .room-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .room-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .room-features span {
        font-size: 14px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        max-width: 350px;
        margin: 0 auto;
        padding: 30px 25px;
    }
    
    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Contact form */
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Medium */
@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* Header adjustments */
    .top-bar {
        padding: 8px 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info span {
        margin: 0;
        font-size: 11px;
    }
    
    /* Button adjustments */
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Room content */
    .room-content {
        padding: 20px;
    }
    
    .room-price {
        font-size: 1.3rem;
    }
    
    .room-price span {
        font-size: 0.9rem;
    }
    
    /* Service cards */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    /* Gallery adjustments */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Contact form */
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Newsletter form */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Booking form mobile */
    .booking-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .booking-form {
        padding: 15px;
        border-radius: 12px;
    }
    
    .booking-btn {
        margin-top: 5px;
        padding: 14px 20px !important;
        font-size: 13px !important;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    /* Typography */
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    /* About image */
    .about-image img {
        height: 300px;
    }
    
    /* Room features */
    .room-features span {
        font-size: 12px;
    }
    
    /* Contact items */
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-item i {
        font-size: 20px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .booking-form-container {
        padding: 15px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .room-content {
        padding: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .booking-form-container {
        padding: 15px 0;
    }
}

/* Animation optimizations for mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .slide-bg::before {
        background: rgba(0, 0, 0, 0.7);
    }
} 