*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body{
    font-family:'Georgia', serif;
    background-color:#1a1a1a;
    color: rgb(0, 0, 0);
    padding-top: 100px;
    overflow-x: hidden;
    margin: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(49, 49, 49, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    min-height: 100px;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.logo img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    object-fit: contain;
}

.title {
    flex-shrink: 0;
    white-space: nowrap;
}

.title h1 {
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    letter-spacing: 2px;
    color: rgb(212, 212, 212);
    margin-bottom: 5px;
    line-height: 1.2;
}

.title p {
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    letter-spacing: 1px;
    color: rgb(180, 180, 180);
    line-height: 1.2;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    flex-shrink: 0;
    margin-left: auto;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 8px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    color: #d4d4d4;
    transform: translateY(-2px);
}
/* Hero Section */
.availability-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.7)),
        url('../homepage/rp-bghomepage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    margin-top: -100px;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.availability-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
    color: #d4d4d4;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-overlay p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    font-size: 2.5rem;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Main Availability Section */
.availability-main {
    background: #2a2a2a;
    padding: 4rem 2rem;
    color: white;
}

.availability-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #d4d4d4;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.calendar-container {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.nav-btn {
    background: #444;
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #666;
    transform: scale(1.1);
}

.month-year {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4d4d4;
    letter-spacing: 1px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
    padding: 0 5px;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: bold;
    padding: 1rem 0;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 0 5px;
}

.calendar-grid div {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.calendar-grid div:not(.past-date):hover {
    transform: scale(1.05);
    border-color: #d4d4d4;
}

.calendar-grid div.available {
    background: #2d5a2d;
    color: #90ee90;
}

.calendar-grid div.partially-booked {
    background: #5a4a2d;
    color: #ffd700;
}

.calendar-grid div.booked {
    background: #5a2d2d;
    color: #ff6b6b;
}

.calendar-grid div.closed {
    background: #3a3a3a;
    color: #888;
}

.calendar-grid div.past-date {
    background: #1a1a1a;
    color: #555;
    cursor: not-allowed;
}

.calendar-grid div.selected {
    border-color: #d4d4d4 !important;
    box-shadow: 0 0 15px rgba(212, 212, 212, 0.5);
}

/* Time Slots */
.time-slots {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
}

.time-slots h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4d4d4;
    text-align: center;
}

.selected-date {
    text-align: center;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #d4d4d4;
    font-weight: bold;
}

.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 2rem;
    max-height: 300px;
    overflow-y: auto;
}

.time-slot {
    background: #2a2a2a;
    border: 2px solid #444;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.time-slot:hover {
    border-color: #d4d4d4;
    background: #333;
}

.time-slot.selected {
    background: #d4d4d4;
    color: #1a1a1a;
    border-color: #d4d4d4;
}

.no-slots {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-style: italic;
    background: #2a2a2a;
    border-radius: 8px;
    border: 2px dashed #444;
}

.book-now-btn {
    width: 100%;
    background: linear-gradient(45deg, #444, #666);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.book-now-btn:hover {
    background: linear-gradient(45deg, #555, #777);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.book-now-btn i {
    margin-right: 10px;
}

/* Availability Info */
.availability-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.legend, .booking-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
}

.legend h4, .booking-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #d4d4d4;
    text-align: center;
}

.legend-items {
    display: grid;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    background: #2a2a2a;
}

.legend-item.available i { color: #90ee90; }
.legend-item.partially-booked i { color: #ffd700; }
.legend-item.booked i { color: #ff6b6b; }
.legend-item.closed i { color: #888; }

.booking-info ul {
    list-style: none;
    padding: 0;
}

.booking-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #2a2a2a;
    border-radius: 8px;
}

.booking-info i {
    color: #d4d4d4;
    width: 20px;
}

/* Quick Contact */
.quick-contact {
    background: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.contact-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4d4d4;
    letter-spacing: 2px;
}

.contact-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.contact-btn.phone {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.contact-btn.facebook {
    background: linear-gradient(45deg, #1877f2, #0866ff);
    color: white;
}

.contact-btn.book {
    background: linear-gradient(45deg, #444, #666);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 100px);
        background-color: rgba(49, 49, 49, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 0;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .title h1 {
        font-size: 1.5rem;
    }
    
    .title p {
        font-size: 1rem;
    }
    
    .logo img {
        width: 60px;
        height: 60px;
    }

    /* Hero Section Mobile */
    .availability-hero {
        height: 60vh;
        padding: 2rem 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat i {
        font-size: 2rem;
    }

    .stat span {
        font-size: 1rem;
    }

    /* Calendar Mobile */
    .calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .availability-main {
        padding: 2rem 1rem;
    }

    .calendar-container, .time-slots {
        padding: 1.5rem;
    }

    .calendar-grid div {
        font-size: 0.9rem;
    }

    .month-year {
        font-size: 1.4rem;
    }

    .nav-btn {
        padding: 10px 12px;
        font-size: 1rem;
    }

    /* Availability Info Mobile */
    .availability-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Buttons Mobile */
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-btn {
        width: 250px;
        justify-content: center;
    }

    .slots-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    .scroll-arrow {
        font-size: 1.3rem;
    }
}
