﻿/* Responsive Styles */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-form .btn-submit {
        width: 100%;
        text-align: center;
    }

    .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rooms-section .room-card {
        flex-direction: column;
    }
    
    .room-card img {
        width: 100%;
        height: 250px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-nav li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-toggle {
        display: block; /* Show hamburger */
        z-index: 1000;
        width: 24px;
        height: 20px;
    }
    
    .hamburger {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--secondary-color);
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .hamburger::before, .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--secondary-color);
        left: 0;
        transition: transform 0.3s ease, top 0.3s ease;
    }
    
    .hamburger::before {
        top: -8px;
    }
    
    .hamburger::after {
        top: 8px;
    }
    
    .nav-open .hamburger {
        transform: rotate(45deg);
    }
    
    .nav-open .hamburger::before {
        top: 0;
        transform: rotate(90deg);
    }
    
    .nav-open .hamburger::after {
        top: 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sticky-action-buttons {
        top: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .action-button {
        width: 50px;
        height: 50px;
    }

    .action-button img {
        width: 28px;
        height: 28px;
    }

}

/* Responsive styles for new components */

/* Tablet Styles */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amenity-item {
        padding: 15px;
    }

    .amenity-item img {
        height: 40px;
    }
}