/* ============================================
   ATITHI HOTEL & RESORT - HOMEPAGE STYLES
   Modern, Luxury Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --black: #000000;
    --orange: #f97316;
    --green: #10b981;
    --pink: #ec4899;
    --blue: #3b82f6;
    --gray-light: rgba(255, 255, 255, 0.1);
    --gray-medium: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    background: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-main {
    display: flex;
    flex-direction: column;
}

.logo-main h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    color: #000000;
    text-transform: lowercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    position: relative;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000;
    background-clip: unset;
    display: inline-block;
    /* Distressed/grunge effect */
    text-shadow: 
        0.5px 0.5px 0 rgba(0,0,0,0.8),
        -0.5px -0.5px 0 rgba(0,0,0,0.8),
        1px 1px 0 rgba(0,0,0,0.6),
        -1px -1px 0 rgba(0,0,0,0.6),
        1.5px 0.5px 0 rgba(0,0,0,0.4),
        -0.5px 1.5px 0 rgba(0,0,0,0.4),
        0.5px -1px 0 rgba(0,0,0,0.5),
        -1px 0.5px 0 rgba(0,0,0,0.5),
        2px 1px 1px rgba(0,0,0,0.3),
        -1px 2px 1px rgba(0,0,0,0.3);
    filter: contrast(1.2) brightness(0.95);
}

.logo-main h1::before {
    content: 'atíthí';
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0, 0, 0, 0.15);
    z-index: -1;
    transform: translate(0.5px, 0.5px);
    text-shadow: none;
    filter: none;
}

.logo-main p {
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-small {
    display: none;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before {
    top: -8px;
}

.mobile-menu-toggle .hamburger::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login,
.btn-admin {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.btn-login {
    background: var(--black);
    color: var(--white);
}

.btn-login:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-admin {
    background: var(--primary-color);
    color: var(--white);
}

.btn-admin:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-location {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===== CAROUSEL ARROWS ===== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* ===== INFO CARDS ===== */
.info-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 5;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.card-rating .card-icon {
    background: var(--orange);
}

.card-locations .card-icon {
    background: var(--green);
}

.card-support .card-icon {
    background: var(--pink);
}

.card-satisfaction .card-icon {
    background: var(--blue);
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    margin: 0.25rem 0 0 0;
}

.explore-section {
    text-align: center;
    margin-top: 1rem;
}

.explore-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.explore-link:hover {
    transform: translateY(3px);
}

.explore-link i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ===== PAGINATION DOTS ===== */
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--white);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* ===== HOTELS LISTING ===== */
.hotels-listing-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: all 0.3s ease;
}

.hotel-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hotel-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    min-height: 300px;
    background: var(--gray-light);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 2rem;
}

.hotel-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-rating {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-rating i {
    color: #fbbf24;
}

.hotel-price {
    text-align: right;
    flex-shrink: 0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.hotel-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amenity-tag {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.amenity-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.amenity-tag i {
    font-size: 0.9rem;
}

.hotel-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-view-rooms {
    padding: 0.875rem 2rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-view-rooms:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ===== ROOMS SECTION ===== */
.rooms-section {
    padding: 4rem 0;
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background: var(--gray-light);
}

.room-card:hover .room-image-wrapper img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.room-content {
    padding: 1rem;
    text-align: center;
}

.room-type {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.room-hotel {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.room-amenities-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amenity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.amenity-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-book-now {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.btn-book-now:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

/* Large Desktop (1440px - 1920px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .cards-grid {
        gap: 2rem;
    }
}

/* Medium to Large Desktop (1200px - 1440px) */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* Medium Computer / Laptop (1024px - 1366px) */
@media (max-width: 1366px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Small Laptop / Small Desktop (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .info-cards {
        padding: 1rem 0;
        bottom: 1rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .info-card {
        padding: 0.875rem;
        gap: 0.6rem;
        border-radius: 10px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
        margin: 0.15rem 0 0 0;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hotel-card {
        grid-template-columns: 1fr;
    }
    
    .hotel-image {
        min-height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Laptop / Desktop (1024px - 1366px) */
@media (max-width: 1366px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small Laptop / Large Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .hotel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet & Large Mobile Transition (480px - 768px) */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .header-actions {
        order: 3;
        gap: 0.5rem;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .info-cards {
        padding: 0.75rem 0;
        bottom: 0.5rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .info-card {
        padding: 0.6rem 0.5rem;
        gap: 0.5rem;
        border-radius: 8px;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.65rem;
        margin: 0.1rem 0 0 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .btn-login,
    .btn-admin {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hotel-header {
        flex-direction: column;
    }
    
    .hotel-price {
        text-align: left;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .logo-main h1 {
        font-size: 2rem;
    }
}

/* Large Mobile Phones (425px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .info-cards {
        padding: 0.5rem 0;
        bottom: 0.25rem;
    }
    
    .cards-grid {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .info-card {
        padding: 0.5rem 0.4rem;
        gap: 0.4rem;
        border-radius: 6px;
    }
    
    .card-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    
    .card-content h3 {
        font-size: 0.9rem;
    }
    
    .card-content p {
        font-size: 0.6rem;
        margin: 0.05rem 0 0 0;
    }
    
    .hotel-details {
        padding: 1.5rem;
    }
    
    .hotel-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .room-card {
        border-radius: 12px;
    }
    
    .room-image-wrapper {
        height: 180px;
    }
    
    .room-content {
        padding: 0.875rem;
    }
    
    .room-type {
        font-size: 1.1rem;
    }
    
    .btn-book-now {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-main h1 {
        font-size: 1.75rem;
    }
    
    .logo-main p {
        font-size: 0.6rem;
    }
}

/* Medium Mobile Phones (375px - 425px) */
@media (max-width: 425px) {
    .container {
        padding: 0 12px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo-image {
        max-height: 50px;
    }
    
    .hero {
        height: 75vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .info-cards {
        padding: 0.4rem 0;
        bottom: 0.2rem;
    }
    
    .cards-grid {
        gap: 0.35rem;
        margin-bottom: 0.4rem;
    }
    
    .info-card {
        padding: 0.45rem 0.35rem;
        gap: 0.35rem;
        border-radius: 6px;
    }
    
    .card-icon {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }
    
    .card-content h3 {
        font-size: 0.85rem;
    }
    
    .card-content p {
        font-size: 0.55rem;
        margin: 0.05rem 0 0 0;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .room-image-wrapper {
        height: 160px;
    }
    
    .room-type {
        font-size: 1rem;
    }
    
    .room-hotel {
        font-size: 0.8rem;
    }
    
    .amenity-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .hotel-name {
        font-size: 1.35rem;
    }
    
    .hotel-description {
        font-size: 0.85rem;
    }
    
    .btn-view-rooms {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Phones (320px - 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-image {
        max-height: 45px;
    }
    
    .logo-main h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .logo-main p {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    
    .btn-login,
    .btn-admin {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .btn-login i,
    .btn-admin i {
        display: none;
    }
    
    .hero {
        height: 70vh;
        min-height: 400px;
        margin-top: 55px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
    }
    
    .info-cards {
        padding: 0.35rem 0;
        bottom: 0.15rem;
    }
    
    .cards-grid {
        gap: 0.3rem;
        margin-bottom: 0.35rem;
    }
    
    .info-card {
        padding: 0.4rem 0.3rem;
        gap: 0.3rem;
        border-radius: 5px;
    }
    
    .card-icon {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
    }
    
    .card-content h3 {
        font-size: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.5rem;
        margin: 0.05rem 0 0 0;
    }
    
    .room-card {
        border-radius: 10px;
    }
    
    .room-image-wrapper {
        height: 140px;
    }
    
    .room-content {
        padding: 0.75rem;
    }
    
    .room-type {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .room-hotel {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .room-amenities-icons {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .amenity-icon {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    
    .btn-book-now {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hotel-details {
        padding: 1rem;
    }
    
    .hotel-name {
        font-size: 1.2rem;
    }
    
    .hotel-location {
        font-size: 0.8rem;
    }
    
    .hotel-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .amenity-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .price-label, .price-unit {
        font-size: 0.75rem;
    }
    
    .btn-view-rooms {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 4rem 1.5rem 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}

/* Extra Small Devices (below 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .logo-main h1 {
        font-size: 1.35rem;
    }
    
    .hero-title {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .info-cards {
        padding: 0.3rem 0;
        bottom: 0.1rem;
    }
    
    .cards-grid {
        gap: 0.25rem;
        margin-bottom: 0.3rem;
    }
    
    .info-card {
        padding: 0.35rem 0.25rem;
        gap: 0.25rem;
        border-radius: 4px;
    }
    
    .card-icon {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
    }
    
    .card-content h3 {
        font-size: 0.75rem;
    }
    
    .card-content p {
        font-size: 0.45rem;
        margin: 0.05rem 0 0 0;
    }
    
    .room-image-wrapper {
        height: 120px;
    }
    
    .info-cards {
        padding: 1rem 0;
    }
}

