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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --overlay: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo:hover h2 {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Dropdown Arrow */
.dropdown-arrow {
    display: none; /* Hidden by default on desktop */
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') center/cover;
    background-color: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-logo {
    height: 150px;
    width: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.hero-location {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 45px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Features Section */
.features {
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Venue Details Section */
.venue-details {
    background: var(--light-bg);
}

.venue-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.venue-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
}

.feature-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Amenities Section */
.amenities-section {
    background: var(--white);
    padding: 80px 0;
}

.amenities-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.amenity-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.amenity-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Special Occasions Section */
.special-occasions {
    background: var(--light-bg);
    padding: 80px 0;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.occasion-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.occasion-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.occasion-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.venue-location-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.venue-location-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

/* Upcoming Events Section */
.upcoming-events {
    background: var(--white);
}

/* Mom Prom Promotional Banner */
.event-promo-banner {
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.promo-content {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.promo-image {
    flex: 0 0 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

.promo-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.flyer-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.flyer-clickable:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.click-to-enlarge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.promo-image:hover .click-to-enlarge {
    opacity: 1;
}

.click-to-enlarge i {
    font-size: 0.9rem;
}

.promo-details {
    flex: 1;
    padding: 40px;
    color: var(--white);
    display: flex;
    gap: 30px;
    align-items: center;
}

.promo-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-month {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.promo-day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.promo-year {
    font-size: 0.9rem;
    opacity: 0.8;
}

.promo-info {
    flex: 1;
}

.promo-title {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.promo-time {
    font-size: 1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.promo-time i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.promo-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.promo-cta:hover {
    background: #f4c842;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

.events-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.event-card {
    display: flex;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.event-date {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.event-month {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.event-day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.event-details {
    padding: 40px;
    flex: 1;
}

.event-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-time {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.event-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.event-cta:hover {
    background: #b8941f;
    transform: translateX(5px);
    color: var(--white);
}

.event-cta a {
    color: inherit;
    text-decoration: none;
}

.event-cta a:hover {
    color: inherit;
    text-decoration: none;
}

.event-cta-soon {
    display: inline-block;
    padding: 12px 30px;
    background: var(--light-bg);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    position: relative;
}

/* Gallery Section */
.gallery {
    background: var(--light-bg);
}

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

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    background: var(--white);
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Form validation styles */
.contact-form input:invalid:not(:placeholder-shown),
.contact-form select:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form select:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

.contact-form input:invalid:focus:not(:placeholder-shown),
.contact-form select:invalid:focus:not(:placeholder-shown),
.contact-form textarea:invalid:focus:not(:placeholder-shown) {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.contact-form input:valid:focus:not(:placeholder-shown),
.contact-form select:valid:focus:not(:placeholder-shown),
.contact-form textarea:valid:focus:not(:placeholder-shown) {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.submit-button {
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #6d5a44;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Page Header (for sub-pages) */
.page-header {
    height: 300px;
    background: url('images/hero-bg.jpg') center/cover;
    background-color: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* Rates Page Styles */
.rates-section {
    padding: 80px 0;
    background-color: #fafafa;
}

/* Custom Decor Packages */
.decor-packages-section {
    margin-top: 60px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.decor-packages-section .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.decor-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.decor-features {
    max-width: 700px;
    margin: 0 auto;
}

.decor-features h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.decor-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.decor-features ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.decor-features ul li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.decor-note {
    background-color: #f8f4f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.decor-features {
    text-align: center;
}

.decor-features h3 {
    text-align: left;
}

.decor-features ul {
    text-align: left;
}

.decor-packages-section .rate-cta-secondary {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    width: auto;
}

/* Kids Party Packages */
.kids-party-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaa7 100%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.kids-party-section .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.kids-party-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kids-party-features {
    max-width: 600px;
    margin: 0 auto;
}

.kids-party-highlight {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 500;
}

.kids-party-cta-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.kids-party-section .rate-cta-secondary {
    background: var(--accent-color);
    color: var(--white);
    border: none;
}

.kids-party-section .rate-cta-secondary:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.rate-card {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.rate-card.featured {
    background: var(--white);
    border: 3px solid var(--accent-color);
    position: relative;
}

.rate-card.featured + .rate-card.featured {
    margin-top: 40px;
}

.rate-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-price {
    font-size: 4rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.rate-unit {
    font-size: 1.5rem;
    font-weight: normal;
}

.rate-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    min-height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 1;
}

.includes-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.rate-features {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.rate-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.rate-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.rate-features .upgrade-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: -5px;
    padding-left: 50px;
}

.rate-features .upgrade-note:before {
    content: '•';
    left: 30px;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--text-light);
}

.rate-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
}

.rate-cta:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.rate-cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    margin-top: auto;
}

.rate-cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.rates-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.rates-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Location Page Styles */
.location-section {
    background: var(--white);
    padding: 80px 0;
}

.location-intro {
    text-align: center;
    margin-bottom: 60px;
}

.location-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.location-highlight {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 20px;
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.location-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.venue-card {
    background: var(--white);
    border: 2px solid var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.location-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.address-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.phone-number a,
.email-address a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.phone-number a:hover,
.email-address a:hover {
    text-decoration: underline;
}

.parking-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.parking-info em {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hotels Card */
.hotel-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.hotel-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hotel-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hotel-address {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.hotel-description {
    line-height: 1.6;
}

.featured-hotel {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

/* Directions Card */
.directions-list {
    padding-left: 20px;
    counter-reset: step-counter;
}

.directions-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 10px;
}

.directions-list li::marker {
    color: var(--accent-color);
    font-weight: bold;
}

/* Map Section */
.map-section {
    margin-top: 60px;
    text-align: center;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Location CTA */
.location-cta {
    text-align: center;
    background: var(--light-bg);
    padding: 60px 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.location-cta h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Vendors Page Styles */
.vendors-section {
    background: var(--white);
    padding: 80px 0;
}

.vendors-intro {
    text-align: center;
    margin-bottom: 60px;
}

.vendors-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.vendor-category {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
}

.category-icon {
    display: none;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.vendor-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.vendor-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vendor-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vendor-details {
    color: var(--text-dark);
}

.vendor-details p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.vendor-address {
    color: var(--text-light);
}

.vendor-contact {
    font-weight: 600;
    color: var(--text-dark);
}

.vendor-phone a,
.vendor-email a,
.vendor-website a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.vendor-phone a:hover,
.vendor-email a:hover,
.vendor-website a:hover {
    text-decoration: underline;
}

.vendor-website a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vendor-website a::after {
    content: "↗";
    font-size: 0.8rem;
}

/* Vendors CTA */
.vendors-cta {
    text-align: center;
    background: var(--light-bg);
    padding: 60px 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.vendors-cta h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vendors-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    padding: 20px;
    background: var(--white);
    text-align: center;
    border-top: 1px solid #eee;
}

.lightbox-caption h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.lightbox-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Fade-in Animation Classes */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 20px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        padding: 20px;
        min-width: auto;
        flex-direction: row;
        gap: 20px;
    }
    
    .event-details {
        padding: 30px;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    /* Show dropdown arrow on mobile */
    .dropdown-arrow {
        display: inline-block;
    }
    
    /* Dropdown menu mobile */
    .nav-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 10px 0;
    }
    
    /* Rates page mobile */
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .rate-card {
        padding: 30px;
    }
    
    .rate-price {
        font-size: 3rem;
    }
    
    .rate-title {
        font-size: 2rem;
    }
    
    .rate-grid {
        grid-template-columns: 1fr;
    }
    
    /* Location page mobile */
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-card {
        padding: 30px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .location-card h3 {
        font-size: 1.8rem;
    }
    
    .hotel-item h4 {
        font-size: 1.2rem;
    }
    
    .directions-list {
        font-size: 0.95rem;
    }
    
    .location-cta {
        padding: 40px 20px;
    }
    
    .location-cta h3 {
        font-size: 2rem;
    }
    
    .location-cta p {
        font-size: 1.1rem;
    }
    
    /* Special Occasions mobile */
    .occasions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .occasion-card {
        padding: 30px;
    }
    
    .occasion-card h3 {
        font-size: 1.5rem;
    }
    
    .venue-location-info {
        padding: 30px;
    }
    
    .venue-location-info p {
        font-size: 1rem;
    }
    
    /* Vendors page mobile */
    .vendors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vendor-category {
        padding: 30px;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .category-header h3 {
        font-size: 1.6rem;
    }
    
    .vendor-item h4 {
        font-size: 1.2rem;
    }
    
    .vendor-details p {
        font-size: 0.95rem;
    }
    
    .vendors-cta {
        padding: 40px 20px;
    }
    
    .vendors-cta h3 {
        font-size: 2rem;
    }
    
    .vendors-cta p {
        font-size: 1.1rem;
    }
    
    /* Mom Prom Promotional Banner mobile */
    .event-promo-banner {
        margin-bottom: 30px;
    }
    
    .promo-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .promo-image {
        flex: none;
        height: 250px;
        width: 100%;
    }
    
    .promo-details {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .promo-date {
        align-self: center;
        min-width: 80px;
        padding: 15px;
    }
    
    .promo-day {
        font-size: 2rem;
    }
    
    .promo-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .promo-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .promo-time {
        justify-content: center;
    }
    
    .promo-cta {
        text-align: center;
        align-self: center;
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}
