/* ============================================
   RESPONSIVE STYLES - MOBILE FIRST
   ============================================ */

/* ============================================
   TABLET & SMALLER (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .slider-prev { left: 1rem; }
    .slider-next { right: 1rem; }
    
    /* Quick Info - maintain 2 columns on tablets */
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 2.5rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 400px;
    }
    
    /* Restaurant Section */
    .restaurant-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .restaurant-features {
        grid-template-columns: 1fr;
    }
    
    /* Location Section */
    .location-content {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   MOBILE & TABLET (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .nav-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero {
        margin-top: 60px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev { left: 0.5rem; }
    .slider-next { right: 0.5rem; }
    
    .scroll-indicator {
        font-size: 1.5rem;
    }
    
    /* Quick Info */
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-info-item {
        justify-content: center;
    }
    
    .quick-info-item i {
        font-size: 2rem;
    }
    
    /* About */
    .about-image img {
        height: 300px;
    }
    
    .about-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .about-badge strong {
        font-size: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Rooms */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .room-amenities {
        grid-template-columns: 1fr;
    }
    
    .room-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Restaurant */
    .restaurant-image-main {
        height: 250px;
    }
    
    .restaurant-image-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-image-grid img {
        height: 200px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-card {
        height: 250px;
    }
    
    /* Attractions */
    .attractions-grid {
        gap: 2rem;
    }
    
    .attraction-image {
        height: 250px;
    }
    
    .attraction-content {
        padding: 1.5rem;
    }
    
    .attraction-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .distance-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    /* Location */
    .location-map iframe {
        min-height: 300px;
    }
    
    /* Contact */
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Lightbox */
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
    
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    
    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ============================================
   MOBILE ONLY (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.125rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        width: 100%;
    }
    
    /* Hero */
    .hero {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    /* Quick Info */
    .quick-info {
        padding: 1.5rem 0;
    }
    
    .quick-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-info-item i {
        font-size: 1.75rem;
    }
    
    .quick-info-item h3 {
        font-size: 1.25rem;
    }
    
    /* About */
    .about-image img {
        height: 250px;
    }
    
    /* Rooms */
    .room-image {
        height: 200px;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-gallery {
        grid-template-columns: 1fr;
    }
    
    /* Restaurant */
    .feature-box {
        padding: 1rem;
    }
    
    .feature-box i {
        font-size: 2rem;
    }
    
    /* Attractions Mobile */
    .attraction-image {
        height: 220px;
    }
    
    .attraction-content {
        padding: 1.25rem;
    }
    
    .attraction-content h3 {
        font-size: 1.3rem;
    }
    
    .attraction-meta {
        gap: 1rem;
    }
    
    .attraction-highlights {
        padding: 1rem;
    }
    
    .attractions-cta {
        padding: 2rem 1.5rem;
    }
    
    .attractions-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .distance-guide {
        padding: 1.5rem;
    }
    
    .distance-guide h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .distance-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .distance-item {
        padding: 1rem;
    }
    
    .distance-item i {
        font-size: 2rem;
    }
    
    .distance-item h4 {
        font-size: 0.9rem;
    }
    
    .distance-item .distance {
        font-size: 1.1rem;
    }
    
    .restaurant-quote {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card {
        height: 220px;
    }
    
    /* Location */
    .location-map iframe {
        min-height: 250px;
    }
    
    /* Contact */
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* ============================================
   SMALL MOBILE (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .quick-info-item h3 {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   LANDSCAPE MOBILE (max-height: 500px)
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .nav-toggle,
    .slider-btn,
    .slider-dots,
    .scroll-indicator,
    .back-to-top,
    .lightbox,
    .btn {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        page-break-after: always;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
