/*
* Paradise Hotel - Responsive Styles
* Media queries for responsive layout
*/

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    /* General styles */
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    /* Booking form */
    .booking-form {
        padding: 0 1rem;
    }
    
    .booking-form-group {
        margin: 0 5px 10px;
    }
    
    .booking-form button {
        margin: 10px 5px 0;
        width: 100%;
    }
    
    /* Rooms section */
    .room {
        grid-template-columns: 1fr;
    }
    
    .room-image {
        height: 350px;
    }
    
    /* Facilities section */
    .facility {
        grid-template-columns: 1fr;
    }
    
    .facility-image {
        height: 350px;
    }
    
    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        grid-row: 1;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact section */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Tablets and large phones */
@media (max-width: 768px) {
    /* General styles */
    html {
        font-size: 15px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Header */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    /* Booking form */
    .booking-form-container {
        padding: 15px 0;
    }
    
    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .booking-form-group {
        margin: 0 5px 15px;
        min-width: calc(100% - 10px);
    }
    
    .booking-form button {
        margin: 5px;
    }
    
    /* Introduction section */
    .intro-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    /* Amenities section */
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Phones */
@media (max-width: 576px) {
    /* General styles */
    html {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Rooms section */
    .room-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .room-price {
        margin-bottom: 0.5rem;
    }
    
    /* Form elements */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* About section */
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    /* Back to top button */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* Small phones */
@media (max-width: 375px) {
    /* General styles */
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Features and amenities */
    .feature, .amenity {
        padding: 1.5rem;
    }
    
    /* About section */
    .about-stats {
        grid-template-columns: 1fr;
    }
}
