* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #ffd700;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER/NAVIGATION ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #5A5E64;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 100;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
}

/* ============ QUICK BOOKING ============ */
.quick-booking {
    background: var(--bg-light);
    padding: 60px 0;
}

.quick-booking h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.booking-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.booking-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #a01830;
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.btn-call-waiter {
    background: linear-gradient(135deg, var(--primary-color), #ff1744);
    color: var(--white);
    padding: 20px 40px;
    font-size: 18px;
}

.btn-call-waiter:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ============ ROOMS SECTION ============ */
.rooms {
    padding: 80px 0;
    background: var(--white);
}

.rooms h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.room-features span {
    color: var(--text-light);
}

.room-features i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ============ DINING SECTION ============ */
.dining {
    padding: 80px 0;
    background: var(--bg-light);
}

.dining h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.dining-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dining-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dining-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.dining-features {
    list-style: none;
    margin-bottom: 30px;
}

.dining-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.dining-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.dining-image {
    width: 100%;
}

/* ============ EVENTS SECTION ============ */
.events {
    padding: 80px 0;
    background: var(--white);
}

.events h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.event-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ============ FACILITIES SECTION ============ */
.facilities {
    padding: 80px 0;
    background: var(--bg-light);
}

.facilities h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.facility-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.facility-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============ WAITER CALL SECTION ============ */
.waiter-call-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    color: var(--white);
}

.waiter-call-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--white);
}

.waiter-call-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.waiter-call-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.waiter-call-info p {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.8;
}

.waiter-call-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.waiter-call-info li {
    padding: 10px 0;
    font-size: 16px;
}

.waiter-button-demo {
    text-align: center;
}

.btn-call-waiter i {
    margin-right: 10px;
}

#waiterStatus {
    margin-top: 20px;
    font-size: 16px;
    min-height: 30px;
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #a01830;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(196, 30, 58, 0.3);
}

.contact-form textarea {
    resize: vertical;
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
    transform: scale(1.15);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* ============ FOOTER ============ */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}



/* Breadcrumb */
.breadcrumb {
  padding: 150px 50px 40px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/12.jpeg') center/cover;
  color: white;
  text-align: center;
}

.breadcrumb h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #ffcc00;
  text-decoration: none;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #5A5E64;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
        box-shadow: var(--shadow);
    }

    .nav-links li {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 20px;
    }

    .quick-booking h2,
    .rooms h2,
    .dining h2,
    .events h2,
    .facilities h2,
    .contact h2,
    .waiter-call-section h2 {
        font-size: 24px;
    }

    .dining-content,
    .waiter-call-demo {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .dining-text h3,
    .waiter-call-info h3 {
        font-size: 22px;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .quick-booking,
    .rooms,
    .dining,
    .events,
    .facilities,
    .waiter-call-section,
    .contact {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .quick-booking h2,
    .rooms h2,
    .dining h2,
    .events h2,
    .facilities h2,
    .contact h2,
    .waiter-call-section h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .booking-cards,
    .rooms-grid,
    .events-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .booking-card,
    .room-card,
    .event-card,
    .facility-item {
        padding: 20px;
    }

    .quick-booking,
    .rooms,
    .dining,
    .events,
    .facilities,
    .waiter-call-section,
    .contact {
        padding: 40px 0;
    }

    .footer-section {
        text-align: left;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }
}
