/* ==========================================
   PREMIUM HOTEL & RESTAURANT - MAIN STYLES
   ========================================== */

:root {
    --primary: #b8860b;
    --primary-dark: #8b6508;
    --secondary: #1a1a2e;
    --dark: #16213e;
    --light: #f8f9fa;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   PRELOADER
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #1da851;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar i {
    color: var(--gold);
}

.top-social-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.top-social-link:hover {
    color: var(--gold);
}

/* ==========================================
   NAVBAR
   ========================================== */
.main-navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand .logo-img {
    height: 50px;
    width: auto;
}

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.navbar-brand .brand-text i {
    color: var(--gold);
}

.main-navbar .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    font-size: 15px;
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: white;
}

.btn-book {
    background: var(--gold);
    color: var(--secondary);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-book:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-size: 1rem;
    border-radius: 30px;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--secondary);
    border: 2px solid var(--gold);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--secondary);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--secondary);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-image-container {
    position: relative;
    padding-bottom: 30px;
}

.about-image-main {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 60%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--gold);
    color: var(--secondary);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    font-family: 'Playfair Display', serif;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-btn {
    margin-top: 20px;
}

/* ==========================================
   ROOMS SECTION
   ========================================== */
.room-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-card-image img {
    transform: scale(1.1);
}

.room-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-card-body {
    padding: 25px;
}

.room-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-card-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.room-card-price .original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

.room-card-price .per-night {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.room-card-features {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.room-card-features span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-card-features i {
    color: var(--gold);
    margin-right: 5px;
}

.room-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.room-card-buttons .btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
}

.btn-room-primary {
    background: var(--gold);
    color: var(--secondary);
    border: none;
}

.btn-room-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-room-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-room-outline:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 25px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--text-dark);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--gold);
    color: var(--secondary);
}

.menu-item-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.menu-item-badges {
    display: flex;
    gap: 5px;
}

.badge-veg {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.badge-nonveg {
    background: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.badge-spicy {
    background: #fd7e14;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.menu-item-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-item-price .discount {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 5px;
}

.btn-order-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.btn-order-whatsapp:hover {
    background: #1da851;
    color: white;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: white;
    font-size: 2rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.service-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card:hover .service-icon i {
    color: var(--secondary);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offer-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-card-image {
    position: relative;
    height: 200px;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-card-body {
    padding: 25px;
}

.offer-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-card-price {
    margin: 15px 0;
}

.offer-card-price .original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.offer-card-price .offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.offer-card-dates {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.offer-card-dates i {
    color: var(--gold);
    margin-right: 5px;
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
.event-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-card-image {
    height: 220px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-body {
    padding: 25px;
}

.event-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-card-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-card-meta i {
    color: var(--gold);
    margin-right: 5px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin: 15px 0;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    margin: 0;
}

.testimonial-author-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: var(--gold);
    margin-top: 10px;
}

.testimonial-rating .empty {
    color: #ddd;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    padding: 60px 0;
}

.cta-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-brand h4 i {
    color: var(--gold);
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--secondary);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .about-experience-badge {
        left: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 100px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 25px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item-card {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 150px;
    }
}