/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 150%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(245, 245, 245, 0.2);
    border: 1px solid rgba(245, 245, 245, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 40px;
    overflow: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .logo-img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-logo .logo-img::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: white;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-logo .logo-img:hover::before {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.nav-logo h2 {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b6b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%,#4b5dac 25%, #602f91 50%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: visible;
    z-index: 501;
    /* overflow: hidden; */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 0.1s ease-out;
}

.hero h6 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #ebebeb;
    text-shadow: 2px 2px 4px rgba(18, 17, 17, 0.5);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(18, 17, 17, 0.5);
    color: #ffffff;
}

.hero h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(18, 17, 17, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #f5f5ff;
    text-shadow: 2px 2px 4px rgba(18, 17, 17, 0.5);
}

.hero-image {
    position: absolute;
    right: 60%;
    top: 50%;
    width: 60%;
    height: 70%;
    overflow: hidden;
    border-radius: 400px 400px 400px 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.8) contrast(1.1);
}



.hero-image-2 {
    position: absolute;
    right: 0%;
    top: 0;
    width: 50%;
    height: 80%;
    overflow: hidden;
    border-radius: 400px 10px 10px 400px;
}

.hero-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.8) contrast(1.1);
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Announcement Section */
.announcement-section {
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

/* Info style (blue) */
.announcement-section.announcement-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Success style (green) */
.announcement-section.announcement-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

/* Warning style (orange) */
.announcement-section.announcement-warning {
    background: linear-gradient(135deg, #ff9800 0%, #ff8e53 100%);
}

/* Error style (red) */
.announcement-section.announcement-error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-icon {
    font-size: 1.5rem;
    color: white;
    animation: pulse 2s infinite;
}

.announcement-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.announcement-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive announcement */
@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .announcement-text h3 {
        font-size: 1.1rem;
    }
    
    .announcement-text p {
        font-size: 0.9rem;
    }
}

/* Quick Navigation */
.quick-nav {
    padding: 4rem 0;
    background: white;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-nav-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 500;
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.quick-nav-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.quick-nav-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.quick-nav-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Tagline Section */
.tagline-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.tagline-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tagline-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background: white;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.read-more-btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Gallery Preview */
.gallery-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    /* Force grid to initialize properly on mobile */
    min-height: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
    min-height: 200px;
}

/* Fallback for images that fail to load */
.gallery-item img:not([src]),
.gallery-item img[src=""] {
    background: #f0f0f0;
    position: relative;
}

.gallery-item img:not([src])::after,
.gallery-item img[src=""]::after {
    content: 'Image Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 0.9rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
}

.gallery-cta {
    text-align: center;
}

.view-gallery-btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-gallery-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Page Hero Sections */
.about-hero,
.menu-hero,
.party-hero,
.contact-hero,
.waiver-hero {
    height: 60vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero::before,
.menu-hero::before,
.party-hero::before,
.contact-hero::before,
.waiver-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.about-hero .container,
.menu-hero .container,
.party-hero .container,
.contact-hero .container,
.waiver-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1,
.menu-hero h1,
.party-hero h1,
.contact-hero h1,
.waiver-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p,
.menu-hero p,
.party-hero p,
.contact-hero p,
.waiver-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(18, 17, 17, 0.5);
}

.about-content {
    padding: 4rem 0;
    background: white;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-text li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #666;
}

/* Menu Page */
.menu-content {
    padding: 4rem 0;
    background: white;
}

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

.menu-option h3,
.menu-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.menu-option p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.menu-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-btn.primary {
    background: #ff6b6b;
    color: white;
}

.menu-btn.secondary {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.menu-btn:hover {
    transform: translateY(-2px);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-category h4 i {
    color: #ff6b6b;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.menu-display {
    margin-top: 3rem;
}

.menu-display h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.menu-embed {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.menu-image {
    width: 100%;
    height: auto;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-embed:hover .menu-overlay {
    opacity: 1;
}

.view-menu-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
}

/* Party Page */
.party-description {
    padding: 4rem 0;
    background: white;
}

.party-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.party-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.party-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.age-range,
.time-slots,
.party-pricing,
.party-cta {
    margin: 3rem 0;
    text-align: center;
}

.age-range h3,
.time-slots h3,
.party-pricing h3,
.party-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.age-range p,
.time-slots p,
.party-pricing p,
.party-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.slot-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.slot-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.slot-item p {
    color: #666;
    font-size: 0.9rem;
}

.book-now-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.book-now-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
    background: white;
}

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

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.submit-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

/* Social media button colors */
.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background: #166fe5;
    color: white;
}

.social-link.instagram {
    background: #e4405f;
    color: white;
}

.social-link.instagram:hover {
    background: #d63384;
    color: white;
}

.social-link.tiktok {
    background: #000000;
    color: white;
}

.social-link.tiktok:hover {
    background: #333333;
    color: white;
}

.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Party Page Updates */
.party-pricing {
    margin: 3rem 0;
    text-align: center;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.pricing-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-item .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.pricing-item p {
    color: #666;
    font-size: 1rem;
}

.pricing-note,
.public-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    color: #856404;
}

.important-details,
.food-addons,
.booking-payments {
    margin: 3rem 0;
}

.important-details h3,
.food-addons h3,
.booking-payments h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.important-details ul,
.booking-payments ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.important-details li,
.booking-payments li {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    color: #666;
}

.food-addons p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Waiver Page */
.waiver-content {
    padding: 4rem 0;
    background: white;
}

.waiver-form-container {
    max-width: 8000px;
    margin: 0 auto;
}

.waiver-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.legal-disclaimer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.legal-disclaimer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-disclaimer p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.disclaimer-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: #333;
}

.disclaimer-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.waiver-form {
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.form-section label {
    color: #ff6b6b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ff6b6b;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b6b;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.submit-waiver-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-waiver-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.waiver-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b6b;
}

.waiver-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Company Info Styles */
.company-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.company-logo {
    flex-shrink: 0;
}

.waiver-logo {
    height: 180px;
    width: auto;
}

.company-details {
    flex: 1;
    text-align: left;
}

.company-details h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company-details h4 {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-details p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.company-details p:last-child {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Responsive styles for company info */
@media (max-width: 768px) {
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .company-details {
        text-align: center;
    }
    
    .waiver-logo {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .company-info {
        padding: 1rem;
    }
    
    .company-details h3 {
        font-size: 1.3rem;
    }
    
    .company-details h4 {
        font-size: 1.1rem;
    }
    
    .waiver-logo {
        height: 180px;
    }
}

/* Final Notice Styles */
.final-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.final-notice p {
    color: #856404;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
        padding: 0 25px;
        top: 15px;
        border-radius: 50px;
        overflow: visible;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 0;
        z-index: 1015;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .nav-menu.active {
        right: -5%;
    }

    /* Mobile menu header
    .nav-menu::before {
        height: 120px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        color: white;
        text-align: center;
        padding: 0 2rem;
    }

    .nav-menu::after {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1003;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active::after {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu::after:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    } */

    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(8) { transition-delay: 0.45s; }
    
    .nav-logo .logo-img {
        height: 120px;
        width: auto;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    .nav-menu li:nth-child(9) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(10) { transition-delay: 0.55s; }
    .nav-menu li:nth-child(11) { transition-delay: 0.6s; }
    .nav-menu li:nth-child(12) { transition-delay: 0.65s; }

    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .nav-menu a:hover::before {
        left: 100%;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 2.5rem;
    }

    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.2);
        border-left: 4px solid #ff6b6b;
    }

    /* Extra space below waiver link in mobile menu */
    .nav-menu li:last-child {
        margin-bottom: 5rem;
        border-bottom: none;
    }

    .nav-menu li:last-child a {
        margin-bottom: 1rem;
    }

    .hamburger {
        display: flex;
    }

    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .party-features {
        grid-template-columns: 1fr;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
    }
    
    .contact-info-partnership {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: 90%;
        padding: 0 20px;
        top: 10px;
        border-radius: 50px;
        overflow: visible;
    }
    
    .nav-menu {
        max-width: 280px;
        z-index: 1005;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .hamburger {
        padding: 8px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .nav-logo .logo-img {
        height: 80px;
        width: auto;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 
        
        5px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .quick-nav-item {
        padding: 1.5rem;
    }

    .about-text h2,
    .party-content h2,
    .waiver-form-container h2 {
        font-size: 2rem;
    }

    .tagline-content h2 {
        font-size: 2rem;
    }

    .menu-options {
        grid-template-columns: 1fr;
    }

    .menu-buttons {
        flex-direction: column;
    }
}

/* ===== FANCY SCROLL ANIMATIONS ===== */

/* Base scroll animation styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation types */
.scroll-animate.fade-in-left {
    transform: translateX(-50px);
}

.scroll-animate.fade-in-right {
    transform: translateX(50px);
}

.scroll-animate.fade-in-up {
    transform: translateY(50px);
}

.scroll-animate.fade-in-down {
    transform: translateY(-50px);
}

.scroll-animate.scale-in {
    transform: scale(0.8) translateY(30px);
}

.scroll-animate.rotate-in {
    transform: rotate(-5deg) translateY(30px);
}

/* Staggered animations for lists */
.scroll-animate.stagger-1 { animation-delay: 0.1s; }
.scroll-animate.stagger-2 { animation-delay: 0.2s; }
.scroll-animate.stagger-3 { animation-delay: 0.3s; }
.scroll-animate.stagger-4 { animation-delay: 0.4s; }
.scroll-animate.stagger-5 { animation-delay: 0.5s; }

/* Special animations for different elements */
.quick-nav-item.scroll-animate {
    transform: translateY(50px) scale(0.9);
}

.quick-nav-item.scroll-animate.animate-in {
    transform: translateY(0) scale(1);
}

.feature-item.scroll-animate {
    transform: translateY(40px) rotateX(10deg);
}

.feature-item.scroll-animate.animate-in {
    transform: translateY(0) rotateX(0);
}

.hero-image.scroll-animate {
    transform: translateX(50px) scale(0.95);
}

.hero-image.scroll-animate.animate-in {
    transform: translateX(0) scale(1);
}

.cta-button.scroll-animate {
    transform: translateY(20px) scale(0.9);
}

.cta-button.scroll-animate.animate-in {
    transform: translateY(0) scale(1);
}

/* Parallax effect for hero sections */
.hero, .about-hero, .menu-hero, .party-hero, .contact-hero, .waiver-hero, .partnership-hero {
    transition: transform 0.1s ease-out;
}

/* Smooth transitions for all animated elements */
* {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effects enhanced with animations */
.quick-nav-item:hover,
.feature-item:hover,
.benefit-item:hover,
.contact-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Loading animation for images */
img {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

img.scroll-animate {
    opacity: 0;
    transform: scale(0.9);
}

img.scroll-animate.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Text animation effects */
h1.scroll-animate,
h2.scroll-animate,
h3.scroll-animate {
    transform: translateY(20px);
    opacity: 0;
}

h1.scroll-animate.animate-in,
h2.scroll-animate.animate-in,
h3.scroll-animate.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Button animations */
.cta-button,
.read-more-btn,
.book-now-btn,
.submit-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button:hover,
.read-more-btn:hover,
.book-now-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Gallery item animations */
.gallery-item.scroll-animate {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
}

.gallery-item.scroll-animate.animate-in {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Form animations */
.contact-form.scroll-animate,
.waiver-form.scroll-animate {
    transform: translateX(-30px);
    opacity: 0;
}

.contact-form.scroll-animate.animate-in,
.waiver-form.scroll-animate.animate-in {
    transform: translateX(0);
    opacity: 1;
}

/* Menu category animations */
.menu-category.scroll-animate {
    transform: translateY(30px) rotateY(5deg);
    opacity: 0;
}

.menu-category.scroll-animate.animate-in {
    transform: translateY(0) rotateY(0);
    opacity: 1;
}

/* Party features staggered animation */
.party-features .feature-item:nth-child(1) { animation-delay: 0.1s; }
.party-features .feature-item:nth-child(2) { animation-delay: 0.2s; }
.party-features .feature-item:nth-child(3) { animation-delay: 0.3s; }
.party-features .feature-item:nth-child(4) { animation-delay: 0.4s; }
.party-features .feature-item:nth-child(5) { animation-delay: 0.5s; }
.party-features .feature-item:nth-child(6) { animation-delay: 0.6s; }

/* Quick nav items staggered animation */
.quick-nav-item:nth-child(1) { animation-delay: 0.1s; }
.quick-nav-item:nth-child(2) { animation-delay: 0.2s; }
.quick-nav-item:nth-child(3) { animation-delay: 0.3s; }
.quick-nav-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.scroll-animate {
    will-change: transform, opacity;
}

/* Disable animations on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        transition: none;
        animation: none;
    }
    
    .scroll-animate.animate-in {
        opacity: 1;
        transform: none;
    }
}

/* ===== PARTNERSHIP PAGE STYLES ===== */
.partnership-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.partnership-section {
    padding: 4rem 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partnership-info h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.partnership-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.partnership-benefits,
.partner-requirements {
    margin-bottom: 2rem;
}

.partnership-benefits h3,
.partner-requirements h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partnership-benefits ul,
.partner-requirements ul {
    list-style: none;
    padding: 0;
}

.partnership-benefits li,
.partner-requirements li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.partnership-benefits i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.partner-requirements i {
    color: #ffc107;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.partnership-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.partnership-form h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.partnership-form p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-partnership {
    background: #f8f9fa;
    padding: 3rem 0;
}

/* ===== PARTY DECORATION PAGE STYLES ===== */
.decor-hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.decor-packages {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.decor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.decor-package {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.decor-package:hover {
    transform: translateY(-10px);
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.decor-package:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.price {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-content li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
}

.package-content i {
    color: #28a745;
    margin-right: 0.5rem;
}

.book-decor-btn {
    width: 100%;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-decor-btn:hover {
    background: #e55555;
}

.addon-services {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.addon-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.addon-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.addon-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.addon-item p {
    color: #666;
    margin-bottom: 1rem;
}

.addon-price {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: 700;
}

.decor-booking {
    padding: 4rem 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.booking-info p {
    color: #ffffff;
    margin-bottom: 2rem;
}

.booking-details h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

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

.booking-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.booking-details i {
    color: #25ff58;
    margin-right: 0.8rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    flex:2;
    align-items: left;
    cursor: pointer;
    color: #ff6b6b;
}

.checkbox-group input {
    display: flex;
    flex:1;
    align-items: right;
}
/* .checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
} */

/* ===== RULES PAGE STYLES ===== */
.rules-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rules-section {
    padding: 4rem 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rules-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.category-header i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-right: 1rem;
}

.category-header h2 {
    color: #333;
    margin: 0;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rule-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.rule-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.rule-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.health-safety {
    background: #f8f9fa;
    padding: 4rem 0;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.health-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.health-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.health-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.health-item p {
    color: #666;
    line-height: 1.5;
}

.waiver-reminder {
    padding: 4rem 0;
}

.waiver-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.waiver-info h2 {
    margin-bottom: 1rem;
}

.waiver-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.waiver-btn {
    display: inline-block;
    background: white;
    color: #ff6b6b;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.waiver-btn:hover {
    transform: translateY(-2px);
}

.waiver-icon i {
    font-size: 4rem;
    opacity: 0.8;
}

.rules-contact {
    padding: 4rem 0;
    text-align: center;
}

.contact-content h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #666;
    margin-bottom: 2rem;
}

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

.contact-btn,
.phone-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-btn {
    background: #ff6b6b;
    color: white;
}

.phone-btn {
    background: #28a745;
    color: white;
}

.contact-btn:hover,
.phone-btn:hover {
    transform: translateY(-2px);
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-filter {
    padding: 2rem 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff6b6b;
    color: white;
}

.gallery-section {
    padding: 4rem 0;
    /* Ensure proper container dimensions */
    width: 100%;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    /* transition: transform 0.3s ease; */
    cursor: pointer;
}

.gallery-item:hover {
    /* transform: translateY(-10px); */
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}

.gallery-item:hover img {
    /* transform: scale(1.1); */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    /* transform: translateY(100%); */
    /* transition: transform 0.3s ease; */
}

.gallery-item:hover .gallery-overlay {
    /* transform: translateY(0); */
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.gallery-overlay i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 1rem 2rem;
    border-radius: 8px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    /* No transitions */
}

.gallery-cta {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #333;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-btn:not(.secondary) {
    background: #ff6b6b;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Responsive styles for new pages */
@media (max-width: 768px) {
    .partnership-grid,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .decor-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .health-grid {
        grid-template-columns: 1fr;
    }
    
    .waiver-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0.5rem;
    }
    
    .waiver-form-container {
        max-width: 95%;
        margin: 0 auto;
        padding: 0 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
        /* Force mobile grid to render properly */
        display: grid !important;
        min-height: 0;
        width: 100%;
        grid-auto-rows: minmax(200px, auto);
    }
    
    /* Calendar mobile styles */
    .calendar-content {
        padding: 0 1rem;
        width:100%;
    }

    .calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: 70vh;
        overflow: auto;
    }
    
    .calendar-container,
    .time-slot-selection {
        padding: 1rem;
    }
    
    .calendar-header-controls {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .calendar-nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .calendar-header-controls h3 {
        font-size: 1.1rem;
        order: -1;
        margin: 0;
    }
    
    .calendar-weekdays {
        gap: 0.2rem;
        margin-bottom: 0.5rem;
    }
    
    .weekday {
        font-size: 0.7rem;
        padding: 0.2rem;
    }
    
    .calendar-days {
        gap: 0.2rem;
    }
    
          .calendar-day {
          /* width: 20%; */
          padding: 0.2rem;
          border-radius: 4px;
      }
    
    .day-number {
        font-size: 0.8rem;
        margin-bottom: 0.05rem;
    }
    
    .availability-indicator {
        font-size: 0.5rem;
        padding: 0.05rem 0.15rem;
        line-height: 1;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
        margin-top: 0.8rem;
    }
    
    .legend-item {
        font-size: 0.7rem;
    }
    
    .time-slot {
        padding: 0.6rem;
        margin-bottom: 0.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    .time-display {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .availability-status {
        font-size: 0.7rem;
        opacity: 1;
    }
    
    .selected-info {
        padding: 0.8rem;
    }
    
    .selected-info h4 {
        font-size: 1rem;
    }
    
    .selected-details p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .gallery-item {
        min-height: 200px;
        margin-bottom: 1rem;
        /* Force items to be visible */
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .gallery-item img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        display: block !important;
        /* Force image visibility */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .partnership-form,
    .decor-package,
    .rules-category,
    .health-item {
        padding: 1.5rem;
    }
    
    .contact-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn,
    .phone-btn,
    .cta-btn {
        width: 200px;
    }
    
    .gallery-grid {
        gap: 0.5rem;
        margin: 0.5rem 0;
        /* Force mobile grid to render properly */
        display: grid !important;
        grid-auto-rows: minmax(150px, auto);
    }
    
    .gallery-item {
        min-height: 150px;
        margin-bottom: 0.5rem;
        /* Force items to be visible */
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .gallery-item img {
        height: 150px;
        /* Force image visibility */
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Calendar small mobile styles */
    .calendar-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .calendar-header p {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .calendar-container,
    .time-slot-selection {
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    .calendar-header-controls {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .calendar-nav-btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 4px;
    }
    
    .calendar-header-controls h3 {
        font-size: 1rem;
    }
    
          .calendar-weekdays {
          gap: 0.15rem;
          margin-bottom: 0.5rem;
      }
    
    .weekday {
        font-size: 0.65rem;
        padding: 0.15rem;
    }
    
    .calendar-days {
        gap: 0.15rem;
    }
    
    .calendar-day {
        min-height: 32px;
        padding: 0.15rem;
        border-radius: 3px;
    }
    
    .day-number {
        font-size: 0.75rem;
        margin-bottom: 0.02rem;
    }
    
    .availability-indicator {
        font-size: 0.45rem;
        padding: 0.02rem 0.1rem;
        line-height: 1;
        border-radius: 2px;
    }
    
    .calendar-legend {
        gap: 0.3rem;
        margin-top: 0.6rem;
    }
    
    .legend-item {
        font-size: 0.65rem;
        gap: 0.2rem;
    }
    
    .legend-color {
        width: 12px;
        height: 12px;
    }
    
    .time-slot {
        padding: 0.5rem;
        margin-bottom: 0.25rem;
        border-radius: 4px;
    }
    
    .time-display {
        font-size: 0.85rem;
    }
    
    .availability-status {
        font-size: 0.65rem;
    }
    
    .selected-info {
        padding: 0.6rem;
        border-radius: 4px;
    }
    
    .selected-info h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .selected-details p {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .no-date-selected,
    .no-availability {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .calendar-wrapper {
        max-height: 60vh;
        overflow: auto;
    }
    
    .calendar-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .calendar-header p {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .calendar-container,
    .time-slot-selection {
        padding: 0.6rem;
        border-radius: 6px;
    }
    
    .calendar-header-controls {
        gap: 0.4rem;
        margin-bottom: 0.6rem;
    }
    
    .calendar-nav-btn {
        padding: 0.3rem 0.4rem;
        font-size: 0.6rem;
        border-radius: 3px;
    }
    
    .calendar-header-controls h3 {
        font-size: 0.9rem;
    }
    
    .calendar-weekdays {
        gap: 0.1rem;
        margin-bottom: 0.4rem;
    }
    
    .weekday {
        font-size: 0.6rem;
        padding: 0.1rem;
    }
    
    .calendar-days {
        gap: 0.1rem;
    }
    
    .calendar-day {
        min-height: 28px;
        padding: 0.1rem;
        border-radius: 2px;
    }
    
    .day-number {
        font-size: 0.7rem;
        margin-bottom: 0.01rem;
    }
    
    .availability-indicator {
        font-size: 0.4rem;
        padding: 0.01rem 0.08rem;
        line-height: 1;
        border-radius: 1px;
    }
    
    .calendar-legend {
        gap: 0.2rem;
        margin-top: 0.5rem;
    }
    
    .legend-item {
        font-size: 0.6rem;
        gap: 0.15rem;
    }
    
    .legend-color {
        width: 10px;
        height: 10px;
    }
    
    .time-slot {
        padding: 0.4rem;
        margin-bottom: 0.2rem;
        border-radius: 3px;
    }
    
    .time-display {
        font-size: 0.8rem;
    }
    
    .availability-status {
        font-size: 0.6rem;
    }
    
    .selected-info {
        padding: 0.5rem;
        border-radius: 3px;
    }
    
    .selected-info h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .selected-details p {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .no-date-selected,
    .no-availability {
        padding: 0.8rem;
        font-size: 0.75rem;
    }
}

/* ===== RESERVATION PAGE STYLES ===== */
.reservation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ===== CALENDAR SELECTION STYLES ===== */
.calendar-selection-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Mobile calendar section adjustments */
@media (max-width: 768px) {
    .calendar-selection-section {
        padding: 2rem 0;
        width:100%;
    }
    
    .calendar-content {
        padding: 0 1rem;
        width:100%;
    }
}

@media (max-width: 480px) {
    .calendar-selection-section {
        padding: 1.5rem 0;
        width:100%;
    }
    
    .calendar-content {
        padding: 0 0.5rem;
        width:100%;
    }
}

/* ===== RESPONSIVE CALENDAR BREAKPOINTS ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .calendar-wrapper {
        gap: 2.5rem;
    }
    
    .calendar-container,
    .time-slot-selection {
        padding: 1.8rem;
    }
    
    .calendar-header h2 {
        font-size: 2.2rem;
    }
    
    .calendar-header p {
        font-size: 1.05rem;
    }
    
    .calendar-day {
        min-height: 55px;
        padding: 0.4rem;
    }
    
    .day-number {
        font-size: 1.05rem;
    }
    
    .availability-indicator {
        font-size: 0.65rem;
        padding: 0.15rem 0.35rem;
    }
    
    .time-slot {
        padding: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .time-display {
        font-size: 1.15rem;
    }
}

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

.calendar-header h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.calendar-header p {
    color: #666;
    font-size: 1.1rem;
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: auto;
    /* max-height: 80vh; */
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b #f0f0f0;
}

/* Custom scrollbar styling for webkit browsers */
.calendar-wrapper::-webkit-scrollbar {
    width: 8px;
}

.calendar-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.calendar-wrapper::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 4px;
}

.calendar-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff5252;
}

.calendar-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.calendar-nav-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.calendar-nav-btn:hover {
    background: #ff5252;
}

.calendar-header-controls h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 0;
}

.calendar {
    margin-bottom: 2rem;
}

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

.weekday {
    text-align: center;
    font-weight: 600;
    color: #666;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem;
    min-height: 60px;
}

.calendar-day.other-month {
    color: #ccc;
    cursor: default;
}

.calendar-day.today {
    background: #ff6b6b;
    color: white;
    font-weight: bold;
}

.calendar-day.available {
    background: #e8f5e8;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.calendar-day.available:hover {
    background: #c8e6c9;
    transform: scale(1.05);
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .calendar-day.available:active {
        background: #c8e6c9;
        transform: scale(0.98);
    }
    
    .calendar-nav-btn:active {
        background: #ff5252;
        transform: scale(0.95);
    }
    
    .time-slot.available:active {
        background: #c8e6c9;
        transform: translateX(3px);
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    .calendar-day {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
    }
    
    .calendar-nav-btn {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
        /* min-height: 44px; iOS recommended touch target size
        min-width: 44px; */
    }
    
    .time-slot {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
        /* min-height: 44px; */
    }
    
    /* Improve text readability on small screens */
    .availability-indicator {
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .day-number {
        font-weight: 700;
        text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    }
}

.calendar-day.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff5252;
    font-weight: bold;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.availability-indicator {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    white-space: nowrap;
}

.availability-indicator.fully-available {
    background: #4caf50;
    color: white;
}

.availability-indicator.partially-available {
    background: #ff9800;
    color: white;
}

.availability-indicator.fully-booked {
    background: #f44336;
    color: white;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.available {
    background: #4caf50;
}

.legend-color.booked {
    background: #f44336;
}

.legend-color.unavailable {
    background: #999;
}

.legend-color.selected {
    background: #ff6b6b;
}

/* Time Slot Selection */
.time-slot-selection {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.time-slot-selection h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.time-slots {
    margin-bottom: 2rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.time-slot.available {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.time-slot.available:hover {
    background: #c8e6c9;
    transform: translateX(5px);
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.time-slot.selected {
    background: #ff6b6b;
    color: white;
    border-color: #ff5252;
}

.time-display {
    font-weight: 600;
    font-size: 1.1rem;
}

.availability-status {
    font-size: 0.9rem;
    opacity: 0.8;
}

.no-date-selected,
.no-availability {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

.selected-info {
    background: #f0f8ff;
    border: 2px solid #ff6b6b;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.selected-info h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.selected-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.selected-details strong {
    color: #333;
}

.reservation-info {
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.5;
}

.reservation-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    color: #333;
    margin-bottom: 1rem;
}

.form-container p {
    color: #666;
    margin-bottom: 2rem;
}



.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calendar-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calendar-container h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar {
    margin-bottom: 2rem;
}

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

.calendar-nav {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: #e55555;
}

.calendar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day {
    background: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    color: #666;
}

.calendar-date {
    background: white;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.calendar-date:hover {
    background: #f0f0f0;
}

.calendar-date.available {
    background: #e8f5e8;
    color: #2d5a2d;
}

.calendar-date.booked {
    background: #ffe8e8;
    color: #5a2d2d;
    cursor: not-allowed;
}

.calendar-date.unavailable {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.calendar-date.today {
    background: #ff6b6b;
    color: white;
}

.calendar-date.selected {
    background: #4CAF50;
    color: white;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background: #e8f5e8;
    border: 1px solid #4CAF50;
}

.legend-color.booked {
    background: #ffe8e8;
    border: 1px solid #f44336;
}

.legend-color.unavailable {
    background: #f0f0f0;
    border: 1px solid #999;
}

.business-hours {
    padding: 4rem 0;
}

.business-hours h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hours-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hours-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.hours-item p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
}

.hours-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

.reservation-contact {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

/* Responsive styles for reservation page */
@media (max-width: 768px) {
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .reservation-form,
    .calendar-container {
        padding: 1.5rem;
    }
    
    .calendar-date {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .calendar-day {
        padding: 0.6rem 0.3rem;
        font-size: 0.9rem;
    }
}

/* ===== MENU PAGE STYLES ===== */
.menu-section {
    margin-bottom: 4rem;
}

.menu-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.menu-section h2 i {
    color: #ff6b6b;
    margin-right: 0.5rem;
}

.menu-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Menu Table Styles */
.menu-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.menu-table th {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.menu-table th:first-child {
    text-align: left;
}

.menu-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #333;
}

.menu-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.menu-table tr:hover {
    background: #f8f9fa;
}

.menu-table small {
    color: #666;
    font-size: 0.8rem;
}

/* Snack Categories */
.snack-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.snack-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.snack-category:hover {
    transform: translateY(-5px);
}

.snack-category h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.snack-category h3 i {
    font-size: 1.2rem;
}

.snack-category ul {
    list-style: none;
    padding: 0;
}

.snack-category li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 1rem;
}

.snack-category li:last-child {
    border-bottom: none;
}

/* Menu Note Section */
.menu-note {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
}

.note-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-content ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.note-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.note-content li:last-child {
    border-bottom: none;
}

.note-content li::before {
    content: '✓';
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Responsive Menu Styles */
@media (max-width: 768px) {
    .menu-section h2 {
        font-size: 2rem;
    }
    
    .snack-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-table th,
    .menu-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .menu-table th:first-child,
    .menu-table td:first-child {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .menu-section h2 {
        font-size: 1.8rem;
    }
    
    .snack-category {
        padding: 1.5rem;
    }
    
    .menu-table th,
    .menu-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .note-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== WAIVER PAGE - NO ANIMATIONS ===== */
/* Disable all animations on waiver page for clean, professional appearance */
body[data-page="waiver"] .scroll-animate,
body[data-page="waiver"] .scroll-animate.animate-in,
body[data-page="waiver"] .scroll-animate.fade-in-left,
body[data-page="waiver"] .scroll-animate.fade-in-right,
body[data-page="waiver"] .scroll-animate.fade-in-up,
body[data-page="waiver"] .scroll-animate.fade-in-down,
body[data-page="waiver"] .scroll-animate.scale-in,
body[page="waiver"] .scroll-animate.rotate-in,
body[data-page="waiver"] .scroll-animate.stagger-1,
body[data-page="waiver"] .scroll-animate.stagger-2,
body[data-page="waiver"] .scroll-animate.stagger-3,
body[data-page="waiver"] .scroll-animate.stagger-4,
body[data-page="waiver"] .scroll-animate.stagger-5 {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
}

/* Ensure waiver page elements are visible without animations */
body[data-page="waiver"] .waiver-hero,
body[data-page="waiver"] .waiver-content,
body[data-page="waiver"] .legal-disclaimer,
body[data-page="waiver"] .waiver-form,
body[data-page="waiver"] .company-info,
body[data-page="waiver"] .disclaimer-text,
body[data-page="waiver"] .final-notice {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Disable hover animations on waiver page */
body[data-page="waiver"] .waiver-btn:hover,
body[data-page="waiver"] .submit-waiver-btn:hover {
    transform: none !important;
    transition: none !important;
}

/* ===== GALLERY PAGE - NO ANIMATIONS ===== */
/* Disable all animations on gallery page for clean, professional appearance */
body[data-page="gallery"] .scroll-animate,
body[data-page="gallery"] .scroll-animate.animate-in,
body[data-page="gallery"] .scroll-animate.fade-in-left,
body[data-page="gallery"] .scroll-animate.fade-in-right,
body[data-page="gallery"] .scroll-animate.fade-in-up,
body[data-page="gallery"] .scroll-animate.fade-in-down,
body[data-page="gallery"] .scroll-animate.scale-in,
body[data-page="gallery"] .scroll-animate.rotate-in,
body[data-page="gallery"] .scroll-animate.stagger-1,
body[data-page="gallery"] .scroll-animate.stagger-2,
body[data-page="gallery"] .scroll-animate.stagger-3,
body[data-page="gallery"] .scroll-animate.stagger-4,
body[data-page="gallery"] .scroll-animate.stagger-5 {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
}

/* Ensure gallery page elements are visible without animations */
body[data-page="gallery"] .gallery-hero,
body[data-page="gallery"] .gallery-section,
body[data-page="gallery"] .gallery-grid,
body[data-page="gallery"] .gallery-item,
body[data-page="gallery"] .gallery-overlay,
body[data-page="gallery"] .gallery-cta,
body[data-page="gallery"] .filter-buttons,
body[data-page="gallery"] .filter-btn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Disable hover animations on gallery page */
body[data-page="gallery"] .gallery-item:hover,
body[data-page="gallery"] .gallery-item:hover img,
body[data-page="gallery"] .gallery-item:hover .gallery-overlay,
body[data-page="gallery"] .filter-btn:hover,
body[data-page="gallery"] .filter-btn.active {
    transform: none !important;
    transition: none !important;
}

/* Disable lightbox animations */
body[data-page="gallery"] .lightbox,
body[data-page="gallery"] .lightbox-content,
body[data-page="gallery"] .close-lightbox,
body[data-page="gallery"] .lightbox-prev,
body[data-page="gallery"] .lightbox-next {
    transition: none !important;
    animation: none !important;
} 






/* RZ 08292025 */




/* --- Waiver page: make the Google Form full-bleed, edge-to-edge --- */
body[data-page="waiver"] .waiver-content {
  /* Remove the default vertical padding that makes the form look inset */
  padding: 0;
}

/* Full-bleed wrapper: force container to span the entire viewport width */
body[data-page="waiver"] .google-form-container {
  width: 100vw;                     /* span full viewport width */
  margin-left: 50%;                 /* center the 100vw block */
  transform: translateX(-50%);      /* ...by pulling it back half */
  max-width: none;                  /* no clamping */
  border-radius: 0;                 /* clean edge-to-edge look */
  background: transparent;          /* let page background show */
  box-shadow: none;                 /* remove inset feel */
  overflow: hidden;                 /* safety */
}

/* The iframe itself should fill that full-bleed wrapper */
body[data-page="waiver"] .google-form-container iframe {
  display: block;       /* remove default inline gap */
  width: 100%;
  height: 100vh;        /* good “full screen” feel; tweak if you prefer */
  max-height: 1200px;   /* optional: cap on huge desktops */
  border: 0;
  border-radius: 0;
}

/* Optional: on very small screens, don’t force full viewport height */
@media (max-width: 480px) {
  body[data-page="waiver"] .google-form-container iframe {
    height: 85vh;
  }
}

/* If any generic .container is used on the waiver page (e.g., hero),
   make sure it doesn't clamp width there either */
body[data-page="waiver"] .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Reset page chrome to avoid unexpected margins */
html, body { height: 100%; margin: 0; }

/* Full-bleed, full-height form below the fixed navbar */
:root { --nav-h: 96px; } /* default; JS updates this */
body[data-page="waiver"] .waiver-fullpage {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--nav-h));  /* dynamic viewport height on iOS/Android */
  overflow: hidden;
  margin: 0; padding: 0;
}

/* Fallback for older browsers without 100dvh */
@supports not (height: 100dvh) {
  body[data-page="waiver"] .waiver-fullpage { height: calc(100vh - var(--nav-h)); }
}

/* Make the iframe truly fill that space */
body[data-page="waiver"] .waiver-fullpage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Don’t let generic containers clamp width on this page */
body[data-page="waiver"] .container { max-width: none; padding-left: 0; padding-right: 0; }

/* Notch/safe-area padding so the banner doesn’t collide with the edges */
body[data-page="waiver"] .navbar {
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  z-index: 1000;
}
/* Waiver page: place form below banner using the measured offset */
body[data-page="waiver"] .waiver-fullpage {
  margin-top: var(--nav-offset, 120px);
  height: calc(100dvh - var(--nav-offset, 120px));
  overflow: hidden;
}
@supports not (height: 100dvh) {
  body[data-page="waiver"] .waiver-fullpage {
    height: calc(100vh - var(--nav-offset, 120px));
  }
}
/* Let the PAGE scroll; don’t lock the form wrapper to 100vh */
body[data-page="waiver"] .waiver-fullpage {
  margin-top: var(--nav-offset, 120px);
  height: auto;              /* important: not 100vh */
  overflow: visible;         /* let it expand naturally */
}

/* Make the iframe tall so it never needs its own scrollbar */
body[data-page="waiver"] .waiver-fullpage iframe {
  display: block;
  width: 100%;
  height: 8000px;            /* picked for the form */
  border: 0;
}

/* Optional: tune by breakpoint
@media (max-width: 480px) {
  body[data-page="waiver"] .waiver-fullpage iframe { height: 8000px; }
}
@media (min-width: 1024px) {
  body[data-page="waiver"] .waiver-fullpage iframe { height: 5000px; }
} */