/* Responsive Styles */

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .custom-cursor, .custom-cursor-inner {
    display: none !important;
  }
}

@media screen and (max-width: 1200px) {
    .slider-slide h1,
    .slider-slide h2 {
        font-size: 3.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .room-content {
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map {
        height: 350px;
    }
    
    .slider-content {
        max-width: 600px;
        margin-left: 0;
        text-align: center;
        padding-left: 30px;
        border-left: none;
    }
    
    .slider-slide h1,
    .slider-slide h2 {
        font-size: 3rem;
    }
    
    /* Language selector responsive */
    .language-selector {
        margin-left: 15px;
    }
    
    /* Contact responsive styles */
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-map-home {
        min-height: 350px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
    
    /* Room detail responsive */
    .room-content {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 80px !important; /* Match new navbar height */
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        width: 120px; /* Make logo smaller on mobile */
    }    .menu {
        position: fixed;
        top: 80px !important; /* Adjust top position for new navbar height */
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px) !important;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .slider-container {
        height: 70vh;
        min-height: 500px;
    }
    
    .slider-content {
        padding: 20px;
    }
    
    .slider-slide h1,
    .slider-slide h2 {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .room-gallery {
        margin-bottom: 30px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnails img {
        width: 70px;
        height: 50px;
    }
    
    .amenities-list ul {
        grid-template-columns: 1fr;
    }
    
    /* Language selector responsive */
    .language-selector {
        position: absolute;
        right: 70px;
    }
      /* Room card improvements */
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .rooms-grid .room-buttons,
    .rooms-carousel .room-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .rooms-grid .btn-secondary,
    .rooms-carousel .btn-secondary,
    .rooms-grid .whatsapp-room-btn,
    .rooms-carousel .whatsapp-room-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 0;
    }
    
    .rooms-grid .whatsapp-room-btn,
    .rooms-carousel .whatsapp-room-btn {
        margin-top: 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .slider-container {
        height: 60vh;
    }
    
    .slider-slide h1,
    .slider-slide h2 {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .rooms-intro p {
        font-size: 1rem;
    }
    
    .rooms-grid {
        gap: 30px;
    }
    
    .room-images {
        height: 220px;
    }
    
    .room-info {
        padding: 20px;
    }
    
    .room-info h3 {
        font-size: 1.5rem;
    }
    
    .info-details h3 {
        font-size: 16px;
    }
    
    .info-details p {
        font-size: 14px;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .room-details h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .room-description p {
        font-size: 14px;
    }
    
    .amenities-list h3 {
        font-size: 1.3rem;
    }
    
    .amenities-list li {
        font-size: 14px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Footer improvements */
    footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .social-links {
        margin-top: 20px;
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    /* Room detail page improvements */
    .room-amenities {
        gap: 10px;
    }
    
    .room-amenities span {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) {
    .slider-slide h1,
    .slider-slide h2 {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .room-detail {
        padding-top: 120px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnails img {
        width: 60px;
        height: 45px;
    }
    
    .reservation a {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    /* Improve room cards for very small screens */
    .room-images {
        height: 200px;
    }
    
    .image-nav button {
        width: 35px;
        height: 35px;
    }
    
    /* Cursor hide on small touch devices */
    .custom-cursor {
        display: none;
    }
}
