@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 2px solid #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 60px;
}

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

.logo h1 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo p {
    font-size: 12px;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom: 2px solid #000;
}

/* Main Content */
main {
    margin-top: 60px;
}

section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #f5f5f5;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('images/players.jpg') center/cover;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.feature h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;
}

.feature p {
    font-size: 14px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.stat h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
}

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
}

/* Contact Preview */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

/* CTA Buttons */
.cta {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    opacity: 0.7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: #000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    color: #000;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Mobile menu animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.nav-menu.closing {
    animation: slideUp 0.3s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
        height: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 2px solid #000;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.7s; }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    main {
        margin-top: 120px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero {
        padding: 60px 0;
    }
}

/* Page Hero */
.page-hero {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-hero h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    opacity: 0.8;
}

/* Services Page */
.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.service-detailed {
    padding: 40px;
    background-color: #fff;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #000;
}

.service-detailed:hover h3 {
    color: #000;
    transform: scale(1.02);
}

.service-detailed h3 {
    transition: all 0.3s ease;
}

.service-detailed h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.service-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.service-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
    font-size: 15px;
}

.additional-services {
    background-color: #f5f5f5;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.additional-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.additional-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #f8f8f8;
}

.additional-item:hover h3 {
    color: #000;
    transform: scale(1.02);
}

.additional-item h3 {
    transition: all 0.3s ease;
}

.additional-item h3 {
    margin-bottom: 15px;
}

.additional-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.additional-item li {
    margin-bottom: 8px;
}

.atmosphere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.atmosphere-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.atmosphere-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.atmosphere-feature {
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    text-align: center;
}

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

.rules-section {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.rules-section h3 {
    margin-bottom: 20px;
}

.rules-section ul {
    padding-left: 20px;
}

.rules-section li {
    margin-bottom: 10px;
}

/* Prices Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    padding: 40px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #000;
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pricing-card.popular {
    border-width: 3px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
}

.pricing-content li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

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

.special-offer {
    padding: 40px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    text-align: center;
}

.special-offer h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.special-offer p {
    margin-bottom: 15px;
    font-size: 16px;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vip-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.vip-price {
    margin: 20px 0;
    font-size: 24px;
}

.price-addon {
    font-weight: bold;
    font-size: 32px;
}

.vip-features ul {
    padding-left: 20px;
}

.vip-features li {
    margin-bottom: 10px;
}

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

.discount-card {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.discount-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #000;
}

.discount-card:hover .discount-value {
    transform: scale(1.1);
    color: #000;
}

.discount-value {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.discount-value {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-method {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #fff;
    border-color: #000;
}

.comparison-table {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border: 2px solid #000;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #000;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

tr.highlight {
    background-color: #f9f9f9;
}

.comparison-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

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

.faq-item {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #fff;
    border-color: #000;
}

.faq-item:hover h3 {
    color: #000;
    transform: scale(1.02);
}

.faq-item h3 {
    transition: all 0.3s ease;
}

.faq-item h3 {
    margin-bottom: 15px;
}

/* Reviews Page */
.rating-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.rating-score {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rating-score:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #000;
}

.score-number {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.rating-score:hover .score-number {
    transform: scale(1.05);
}

.score-number {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
}

.score-stars {
    font-size: 24px;
    margin-bottom: 10px;
}

.score-source {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.score-reviews {
    font-size: 14px;
    color: #666;
}

.rating-details h3 {
    margin-bottom: 20px;
}

.rating-stats {
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.stat-item span:first-child {
    width: 80px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 20px;
    background-color: #f5f5f5;
    border: 1px solid #000;
}

.bar-fill {
    height: 100%;
    background-color: #000;
}

.stat-item span:last-child {
    width: 40px;
    font-size: 14px;
    text-align: right;
}

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

.review-card {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.review-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.review-card.positive:hover {
    border-left: 5px solid #000;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.review-card.neutral:hover {
    border-left: 5px solid #666;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.review-card.negative:hover {
    border-left: 5px solid #333;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.review-card.positive {
    border-left: 5px solid #000;
}

.review-card.neutral {
    border-left: 5px solid #666;
}

.review-card.negative {
    border-left: 5px solid #333;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    margin-bottom: 5px;
}

.visitor-badge {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 2px 8px;
    font-size: 11px;
    margin-left: 10px;
    vertical-align: middle;
    line-height: 1;
}

.review-rating {
    font-size: 16px;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 5px 10px;
    background-color: #f5f5f5;
    border: 1px solid #000;
    font-size: 12px;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.summary-positive h3,
.summary-negative h3 {
    margin-bottom: 20px;
}

.summary-positive ul,
.summary-negative ul {
    padding-left: 20px;
}

.summary-positive li,
.summary-negative li {
    margin-bottom: 15px;
}

.recommendation {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    text-align: center;
}

.review-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-method {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    text-align: center;
}

/* Events Page */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.event-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #000;
}

.event-card:hover .event-header h3 {
    color: #000;
    transform: scale(1.02);
}

.event-header h3 {
    transition: all 0.3s ease;
}

.event-header {
    margin-bottom: 20px;
}

.event-header h3 {
    margin-bottom: 5px;
}

.event-frequency {
    color: #666;
    font-style: italic;
}

.event-content p {
    margin-bottom: 15px;
}

.event-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.event-content li {
    margin-bottom: 8px;
}

.event-details {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.event-time,
.event-price {
    font-weight: bold;
}

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

.special-category {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.special-category h3 {
    margin-bottom: 20px;
}

.special-examples {
    margin-top: 20px;
}

.special-example {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #000;
}

.special-example h4 {
    margin-bottom: 10px;
}

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

.private-event {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.private-event h3 {
    margin-bottom: 15px;
}

.private-event ul {
    padding-left: 20px;
    margin: 15px 0;
}

.private-event li {
    margin-bottom: 8px;
}

.private-offer {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #000;
}

.calendar-view {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-month {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.calendar-month h3 {
    text-align: center;
    margin-bottom: 30px;
}

.event-list {
    display: grid;
    gap: 20px;
}

.calendar-event {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #000;
}

.event-date {
    font-weight: bold;
    margin-bottom: 10px;
}

.event-info h4 {
    margin-bottom: 5px;
}

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

.participation-step {
    display: flex;
    gap: 20px;
    align-items: start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.organization-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.organization-details ul {
    padding-left: 20px;
}

.organization-details li {
    margin-bottom: 10px;
}

.contact-method {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #000;
}

/* Contacts Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-item {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.contact-item h3 {
    margin-bottom: 15px;
}

.map-placeholder {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.map-content h3 {
    text-align: center;
    margin-bottom: 20px;
}

.map-directions,
.landmarks {
    margin-top: 20px;
}

.map-directions h4,
.landmarks h4 {
    margin-bottom: 10px;
}

.map-directions ul,
.landmarks ul {
    padding-left: 20px;
}

.map-directions li,
.landmarks li {
    margin-bottom: 8px;
}

.parking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.parking-details ul {
    padding-left: 20px;
}

.parking-details li {
    margin-bottom: 10px;
}

.parking-tips ul {
    padding-left: 20px;
}

.parking-tips li {
    margin-bottom: 10px;
}

.accessibility-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.accessibility-current ul,
.accessibility-future p {
    padding-left: 20px;
}

.accessibility-current li {
    margin-bottom: 10px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.transport-option {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.booking-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.booking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.booking-method {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
}

.booking-tips ul {
    padding-left: 20px;
}

.booking-tips li {
    margin-bottom: 10px;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.neighborhood-item {
    padding: 30px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    text-align: center;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Apply animations */
section {
    animation: fadeIn 0.8s ease-out;
}

.service-item, .pricing-card, .review-card, .event-card {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Hover Effects */
.feature {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature h3 {
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: inherit;
}

.service-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #000;
}

.service-item h3 {
    transition: transform 0.3s ease;
}

.service-item:hover h3 {
    transform: scale(1.05);
}

.audience-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.audience-item:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    background-color: #f8f8f8;
}

.audience-item h3 {
    transition: all 0.3s ease;
}

.audience-item:hover h3 {
    transform: scale(1.1);
    color: #000;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #000;
    color: #fff;
}

.stat:hover h3,
.stat:hover p {
    color: #fff;
}

.contact-item {
    padding: 20px;
    background-color: #f5f5f5;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    background-color: #000;
    color: #fff;
}

.contact-item:hover h3,
.contact-item:hover p {
    color: #fff;
}

/* Additional hover effects */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Social cards hover effects */
.social-card {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.social-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #000;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-icon {
    transition: transform 0.3s ease;
}

/* Value items hover */
.value-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    background-color: #f8f8f8;
}

.value-item:hover h4 {
    color: #000;
    transform: scale(1.05);
}

.value-item h4 {
    transition: all 0.3s ease;
}

/* CEO Section */
.ceo-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ceo-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ceo-photo {
    text-align: center;
}

.photo-placeholder {
    padding: 40px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
}

.photo-placeholder h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.photo-placeholder p {
    font-size: 14px;
    color: #666;
}

.ceo-details h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.ceo-details p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.team-values {
    margin-top: 40px;
}

.team-values h3 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
}

.value-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.5;
}

/* Soul Section */
.soul-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.soul-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.soul-profile {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.soul-photo {
    text-align: center;
}

.soul-details h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.soul-title {
    font-style: italic;
    color: #666;
    margin-bottom: 20px !important;
}

.soul-details p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.soul-achievements {
    margin-top: 20px;
}

.soul-achievements h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.soul-achievements ul {
    padding-left: 20px;
}

.soul-achievements li {
    margin-bottom: 8px;
    font-size: 15px;
}

.soul-impact h3 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.impact-item {
    padding: 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
}

.impact-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.impact-item p {
    font-size: 15px;
    line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

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

.gallery-item {
    overflow: hidden;
    border: 2px solid #000;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-description {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-description {
    transform: translateY(0);
}

.gallery-placeholder {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-placeholder h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.gallery-placeholder p {
    font-size: 14px;
    color: #666;
}

/* Instagram Promo Section */
.instagram-promo {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.instagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.instagram-info {
    text-align: left;
    width: 100%;
}

.instagram-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.instagram-info ul {
    padding-left: 20px;
}

.instagram-info li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.instagram-action {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border: 2px solid #000;
    width: 100%;
    max-width: 400px;
}

.instagram-action h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.instagram-action p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.instagram-action .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.instagram-action .btn:hover {
    background-color: #333;
    color: #fff;
}

.instagram-action .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Social Links Section */
.social-links-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    padding: 40px 30px;
    background-color: #fff;
    border: 2px solid #000;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.social-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
}

.social-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

.social-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.social-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #333;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #000;
    background-color: #fff;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.contact-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 10px;
    font-size: 32px;
}

.contact-section p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #000;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: auto;
        max-width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rating-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid-detailed {
        gap: 30px;
    }
    
    .service-detailed {
        padding: 25px;
    }
    
    .atmosphere-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .special-events-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .parking-info,
    .accessibility-info,
    .organization-info {
        grid-template-columns: 1fr;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .soul-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .instagram-action {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-detailed,
    .additional-item,
    .pricing-card,
    .discount-card,
    .payment-method,
    .review-card,
    .event-card,
    .private-event,
    .calendar-event,
    .contact-item,
    .transport-option,
    .booking-method {
        padding: 20px;
    }
    
    .score-number {
        font-size: 48px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .discount-value {
        font-size: 28px;
    }
}

/* WhatsApp FAB Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background-color: #128C7E;
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover svg {
    transform: rotate(15deg);
}

/* Mobile responsiveness for FAB */
@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-fab svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-fab {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-fab svg {
        width: 22px;
        height: 22px;
    }
}


/* Centered dialog */
dialog {
  border: none;
  padding: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

dialog[open] {
  display: flex;
  justify-content: center;
  align-items: center;
}
