/*
Theme Name: Once Upon a Maze
Description: A magical theme for the Once Upon a Maze attraction website
Version: 1.0
Author: Once Upon a Maze
*/

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 37, 69, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

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

.logo-img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #052545;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(5, 37, 69, 0.98);
    padding: 0.75rem 0;
    min-width: 180px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 1100;
}

.nav-menu .sub-menu li {
    padding: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FF69B4;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FF69B4);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, #FFD700, #FF69B4) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4) !important;
}

.header-tickets-btn {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.header-gift-cards-btn {
    white-space: nowrap;
    margin-left: 0.75rem;
    text-decoration: none;
}

.mobile-tickets-btn {
    display: none;
}

.mobile-gift-cards-btn {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Logo */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #052545;
    overflow: hidden;
    padding: 0;
    margin-top: 90px;
}

.hero-image-container {
    text-align: center;
    z-index: 2;
    width: 100%;
}

.castle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.castle-silhouette {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    clip-path: polygon(20% 100%, 20% 60%, 0% 60%, 0% 40%, 20% 40%, 20% 20%, 40% 20%, 40% 0%, 60% 0%, 60% 20%, 80% 20%, 80% 40%, 100% 40%, 100% 60%, 80% 60%, 80% 100%);
    opacity: 0.7;
    animation: castleFloat 6s ease-in-out infinite;
}

@keyframes castleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.castle-windows {
    position: absolute;
    bottom: 120px;
    right: 80px;
    width: 240px;
    height: 100px;
}

.castle-windows::before,
.castle-windows::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 30px;
    background: #FFD700;
    border-radius: 2px;
    box-shadow: 0 0 10px #FFD700;
}

.castle-windows::before {
    left: 20px;
    top: 20px;
    animation: windowGlow 3s ease-in-out infinite;
}

.castle-windows::after {
    right: 20px;
    top: 20px;
    animation: windowGlow 3s ease-in-out infinite 1.5s;
}

@keyframes windowGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.magical-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3), transparent);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-header-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s ease;
}

.hero-header-img:hover {
    transform: scale(1.01);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FF69B4, #87CEEB);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Main Content Section */
.main-content {
    padding: 80px 0;
    background: #f4f1eb;
}

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

.content-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #052545;
    font-weight: 700;
}

.content-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.content-description {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-description p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-style: italic;
}

.ticket-info {
    color: #666;
    font-size: 1rem;
    margin-top: 1rem;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.storybook-quote {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.storybook-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FFD700;
    font-family: serif;
    opacity: 0.7;
}

.storybook-quote p {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FF69B4);
    color: #fff;
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.5);
}

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

.btn-secondary:hover {
    background: #FF69B4;
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: #2c3e50;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: #f8f9fa;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Ensure button text is always visible */
.btn-white, .btn-white:visited, .btn-white:active {
    color: #2c3e50 !important;
}

.btn-white:hover {
    color: #2c3e50 !important;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* What Awaits Inside Section */
.what-awaits-section {
    padding: 100px 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('assets/images/freepik-yellow-brick-road-that-looks-like-a-cartoon-or-dra_-9229.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.story-intro {
    font-size: 1.3rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.story-card p {
    color: #333;
    line-height: 1.6;
}

/* Story Conclusion */
.story-conclusion {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.magical-border {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.magical-border::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    animation: twinkle 2s ease-in-out infinite;
}

.magical-borderolute {
    content: '✨';
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 2rem;
    animation: twinkle 2s ease-in-out infinite 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.story-ending {
    font-size: 1.3rem;
    color: #052545;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 600;
}

.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    color: #052545;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: none;
}

/* Social Feeds Section */
.social-feeds-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

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

.social-feeds-subtitle {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 640px;
    margin: 0 auto;
}

.social-feeds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.social-feed-card {
    background: rgba(244, 241, 235, 0.9);
    border-radius: 18px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 105, 180, 0.25);
    box-shadow: 0 12px 30px rgba(5, 37, 69, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-feed-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-feed-card-header i {
    font-size: 1.75rem;
    color: #052545;
}

.social-feed-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #052545;
}

.social-feed-embed {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.social-feed-embed-instagram {
    padding: 0;
}

.instagram-feed-iframe {
    width: 100%;
    min-height: 500px;
    border: 0;
}

.social-feed-embed-facebook .fb-page,
.social-feed-embed-facebook .fb-page span,
.social-feed-embed-facebook .fb-page iframe {
    width: 100% !important;
}

.social-feed-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #052545;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.social-feed-link:hover {
    color: #FF69B4;
}

/* Summer Pass Modal */
.summer-pass-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 37, 69, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.summer-pass-modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.summer-pass-modal {
    background: linear-gradient(180deg, #fffef8 0%, #f4f1eb 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 3px solid #FFD700;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.summer-pass-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #052545;
    cursor: pointer;
    padding: 0;
}

.summer-pass-modal-title {
    font-size: 2rem;
    color: #052545;
    margin-bottom: 1rem;
}

.summer-pass-modal-text {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.summer-pass-modal-cta {
    width: 100%;
    max-width: 320px;
}

body.modal-open {
    overflow: hidden;
}

/* Plan Your Visit Section */
.plan-visit-section {
    padding: 100px 0;
    background: #f4f1eb;
    position: relative;
}

.plan-visit-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.experience-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 105, 180, 0.3);
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FF69B4, #87CEEB);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.4));
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.experience-card p {
    color: #333;
    line-height: 1.5;
}

/* Party Section */
.party-section {
    padding: 150px 0 100px 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('assets/images/Birthday-Image-2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.party-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #052545;
    text-align: center;
    font-weight: 700;
}

.party-header .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.party-header .section-subtitle {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.party-excitement {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 500;
    margin-top: 0;
    font-style: italic;
}

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

.party-room {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.party-room:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.party-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.party-room h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.party-room p {
    color: #333;
    font-size: 1.1rem;
}

/* Enchanted Classes Page */
.classes-section {
    padding: 140px 0 100px 0;
    background:
        linear-gradient(rgba(253, 248, 255, 0.92), rgba(245, 245, 245, 0.96)),
        url('assets/images/class-schedule.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.classes-header .content-title {
    margin-bottom: 0.75rem;
}

.classes-tagline {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 700px;
    margin: 0 auto;
}

.classes-callout {
    margin-top: 0.85rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #b23a7f;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Fairy Tale School Membership highlight */
.membership-highlight {
    margin: 2.5rem auto 3rem auto;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 215, 0, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 105, 180, 0.22), transparent 55%),
        #ffffff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: center;
}

.membership-copy h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.membership-copy p {
    margin-bottom: 0.85rem;
}

.membership-details {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.75rem 0;
}

.membership-details li {
    margin-bottom: 0.35rem;
}

.membership-note {
    font-size: 0.95rem;
    color: #4b4b4b;
}

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

.membership-tagline {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.membership-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    margin: 0.25rem 0.35rem;
    border-radius: 999px;
}

.membership-soon {
    font-size: 0.85rem;
    color: #555;
}

.membership-btn-secondary {
    display: inline-block;
}

.membership-btn-primary {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.85), 0 8px 20px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.membership-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.membership-btn-primary:hover::after {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    opacity: 1;
}

@media (max-width: 768px) {
    .membership-highlight {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.75rem 1.5rem;
    }
}

/* (Class cards removed; SimpleTix selector now handles listing) */

.classes-registration {
    margin-bottom: 4rem;
}

.classes-registration-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.classes-registration-card {
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.classes-registration-card h3 {
    margin-bottom: 0.75rem;
}

.classes-registration-card ul {
    margin-left: 0;
    list-style-position: inside;
}

.classes-schedule {
    margin-bottom: 4rem;
    padding: 4rem 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)),
        url('assets/images/class-schedule.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.schedule-column {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.schedule-column h3 {
    margin-bottom: 0.75rem;
}

.schedule-column ul {
    margin-left: 1.25rem;
}

.schedule-column li {
    margin-bottom: 0.35rem;
}

.classes-teachers {
    margin-bottom: 2rem;
    padding: 4rem 0;
    background:
        linear-gradient(to bottom, rgba(253, 248, 255, 0.9), rgba(245, 245, 245, 0.95));
}

.teachers-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.teacher-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 1.9rem 1.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.teacher-card h3 {
    margin-bottom: 0.75rem;
}

.teacher-card p + p {
    margin-top: 0.75rem;
}

.teacher-media {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.teacher-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #777;
}

.teacher-photo.placeholder-photo {
    font-weight: 600;
}

.teacher-photo-jasmine,
.teacher-photo-kezia {
    object-position: center top;
}

.teacher-body {
    flex: 1;
    max-width: 640px;
}

.teacher-highlight {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.teacher-details {
    margin-top: 0.25rem;
}

.teacher-details summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0.4rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(90, 122, 154, 0.25);
    background: #ffffff;
    color: #2c3e50;
    transition: all 0.2s ease;
}

.teacher-details[open] summary {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.6);
}

.teacher-details summary::-webkit-details-marker {
    display: none;
}

.teacher-bio-full {
    margin-top: 0.5rem;
    text-align: left;
}

@media (max-width: 768px) {
    .teacher-body {
        width: 100%;
    }
}

.teachers-callout {
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
}

.teachers-callout a {
    color: #FF69B4;
    font-weight: 600;
}

/* Upcoming Events (homepage – inside main white block) */
.events-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #5a7a9a;
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    letter-spacing: 0.5px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.events-grid-inline {
    margin: 0 0 2.5rem 0;
}

/* Single upcoming-events card (e.g. when Fairy Tale School is toggled off) */
.events-grid.events-grid-inline:has(> .event-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(255, 215, 0, 0.25);
}

.event-card .event-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.event-card .event-title {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #2c3e50;
    line-height: 1.3;
}

.event-card .event-dates {
    font-size: 0.95rem;
    color: #052545;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card .event-dates.event-dates-highlight {
    color: #4a2372;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.event-card .event-description {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.event-card .event-btn {
    margin-top: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.party-room-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
    margin: 0 auto 1.5rem auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.party-details {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.party-details-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.party-details-intro {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

.party-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.party-features li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.party-packages {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.party-packages-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.party-package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF69B4;
    text-align: center;
    margin-bottom: 0.5rem;
}

.party-package-note {
    font-size: 1rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin: 0;
}

.party-addons {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(135, 206, 235, 0.3);
}

.party-addons-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.party-addons-intro {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.party-addons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.party-addons-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
}

.party-addons-list li strong {
    color: #052545;
}

.party-fairytale {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.party-fairytale-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.party-fairytale p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    text-align: center;
}

.party-fairytale a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.party-fairytale a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.party-customize {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.party-customize-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.party-customize p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0.5rem;
}

.party-customize a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.party-customize a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.party-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.party-cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.party-testimonial {
    margin: 2.5rem auto 0;
    max-width: 760px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.party-testimonial-stars {
    margin: 0 0 0.35rem 0;
    color: #f4b400;
    letter-spacing: 0.12em;
    font-size: 1.3rem;
}

.party-testimonial-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

.party-testimonial blockquote {
    margin: 0;
    color: #2d2d2d;
    font-size: 1.06rem;
    line-height: 1.7;
    font-style: italic;
}

.party-testimonial-author {
    margin: 0.9rem 0 0 0;
    color: #5a7a9a;
    font-weight: 700;
}

/* Gift Shop Section */
.gift-shop {
    padding: 80px 0;
    background: #f4f1eb;
    text-align: center;
}

.gift-shop-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gift-shop-emoji {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.gift-shop-text {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Social Section */
.social {
    padding: 100px 0;
    background: #f4f1eb;
    text-align: center;
}

.social-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: #FF69B4;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF69B4;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #052545;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: none;
}

.footer-section p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.contact-method a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #FF69B4;
}

.footer-section .social-links {
    display: flex;
    gap: 0.25rem;
    margin: 1rem 0;
    justify-content: flex-start;
}

.footer-section .social-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline !important;
}

.footer-section .social-link:hover {
    color: #052545;
    transform: translateY(-2px);
}

.footer-sister-section {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-sister-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-sister-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}

.footer-sister-logo-link:hover {
    transform: scale(1.05);
}

.footer-sister-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-sister-section p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.footer-sister-section p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-sister-section p a:hover {
    color: #FF69B4;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-logo-small {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.footer-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.footer-bottom p {
    color: #fff;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .header-tickets-btn {
        display: none;
    }
    
    .header-gift-cards-btn {
        display: none;
    }

    .social-feeds-grid {
        grid-template-columns: 1fr;
    }

    .social-feed-embed {
        min-height: 420px;
    }

    .instagram-feed-iframe {
        min-height: 420px;
    }
    
    .mobile-tickets-btn {
        display: block !important;
    }
    
    .mobile-gift-cards-btn {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Fix mobile menu text color - make it dark on white background */
    .nav-menu a {
        color: #2c3e50 !important;
    }
    
    .nav-menu a:hover {
        color: #FF69B4 !important;
    }
    
    .nav-menu a.cta-button {
        color: #fff !important;
    }
    
    .hero-header-img {
        width: 100%;
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
        object-fit: cover;
        object-position: center center;
    }
    
    .page-hero .hero-image-container img {
        width: 100%;
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
        object-fit: cover;
        object-position: center center;
    }
    
    .content-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid-top {
        grid-template-columns: 1fr;
    }
    
    .experience-grid-bottom {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .party-rooms {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .party-section {
        padding: 120px 0 80px 0;
    }
    
    .party-details-content {
        padding: 2rem 1.5rem;
    }
    
    .party-details-intro {
        font-size: 1.1rem;
    }
    
    .party-features li {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .party-packages,
    .party-addons,
    .party-fairytale,
    .party-customize {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .party-packages-title,
    .party-addons-title,
    .party-fairytale-title,
    .party-customize-title {
        font-size: 1.5rem;
    }
    
    .party-package-price {
        font-size: 1.3rem;
    }
    
    .party-addons-list li {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .party-room-image {
        max-width: 100%;
        height: 250px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-sister-section {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-sister-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-sister-logo {
        height: 60px;
        max-width: 150px;
    }
    
    .footer-sister-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        min-width: auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .castle-silhouette {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-header-img {
        width: 100%;
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
        object-fit: cover;
        object-position: center center;
    }
    
    .page-hero .hero-image-container img {
        width: 100%;
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
        object-fit: cover;
        object-position: center center;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .story-card,
    .experience-card,
    .party-room {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Contact Page Styles */
.page-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.page-hero .hero-image-container {
    width: 100%;
    height: 100vh;
}

.page-hero .hero-image-container img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FF69B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Navigation active state */
.nav-menu a.active {
    color: #FF69B4;
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 100px 0;
    background: #f4f1eb;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Contact Page Styles */
.contact-info {
    padding: 100px 0;
    background: #f4f1eb;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.contact-icon {
    font-size: 3rem;
    color: #FF69B4;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-extra {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 1rem;
}

.contact-extra p {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.day {
    color: #FF69B4;
    font-weight: 600;
}

.time {
    color: #333;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #333;
}

.contact-method i {
    color: #FF69B4;
    width: 20px;
}

/* Center contact methods content inside contact cards */
.contact-card .contact-method {
    justify-content: center;
}

.contact-card .contact-method span,
.contact-card .contact-method a {
    text-align: center;
}

/* Party Booking Styles */
.party-booking {
    padding: 100px 0;
    background: #f4f1eb;
}

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

.party-option {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.party-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.party-room-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.party-option h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.party-features {
    list-style: none;
    margin-bottom: 2rem;
}

.party-features li {
    color: #333;
    margin-bottom: 0.8rem;
    text-align: left;
}

.party-pricing {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 1rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.capacity {
    color: #333;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.party-note {
    color: #333;
    margin-top: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Social Contact Styles */
.social-contact {
    padding: 100px 0;
    background: #f4f1eb;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    min-width: 120px;
}

.social-link:hover {
    background: #FF69B4;
    color: #fff;
    transform: translateY(-5px);
}

.social-link i {
    font-size: 2rem;
}

.newsletter-signup {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.newsletter-signup h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.newsletter-signup p {
    color: #333;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    white-space: nowrap;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* FAQ Section Styles */
.faq-section {
    padding: 120px 0 80px 0;
    background: #f5f5f5;
    min-height: 100vh;
}

.faq-section-compact {
    padding: 80px 0;
    background: transparent;
    min-height: auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-top: 1rem;
}

.faq-intro-text a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-intro-text a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #052545 0%, #1a4d7a 100%);
    color: #fff;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, #1a4d7a 0%, #2c6a9e 100%);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: none;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: none;
    overflow: visible;
    transition: none;
    background: #fff;
    padding: 1.5rem 2rem;
    opacity: 1;
}

.faq-item.active .faq-answer {
    max-height: none;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-intro {
        padding: 0 20px;
    }

    .faq-intro-text {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}
