/* ===== PAGE HEADER ===== */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?w=1600');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

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

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* ===== EVENTS PAGE ===== */
.events-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.event-card-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-status.available {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.event-status.sold-out {
    background: #e74c3c;
    color: white;
}

.event-status.coming-soon {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
}

.event-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.event-date, .event-location {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-excerpt {
    margin: 20px 0;
    line-height: 1.8;
    color: var(--text-color);
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.feature-tag {
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.event-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.event-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: white;
}

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

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== WHAT'S INCLUDED ===== */
.whats-included {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.included-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    padding: 100px 0;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.gallery-masonry {
    columns: 3;
    column-gap: 20px;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-masonry-item img {
    width: 100%;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    padding: 100px 0;
    background: white;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-mission {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.mission-card p {
    line-height: 1.8;
    color: var(--text-light);
}

.team-feature {
    padding: 100px 0;
    background: white;
}

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

.team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-text h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.team-text p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== FAQ PAGE ===== */
.faq-page {
    padding: 100px 0;
    background: white;
}

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

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.info-card p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-card a {
    color: var(--secondary-color);
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: 100px 0;
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.blog-card h3 a {
    color: var(--primary-color);
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ===== RESPONSIVE PAGES ===== */
@media (max-width: 1024px) {
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .event-card-image {
        min-height: 300px;
    }
    
    .contact-grid,
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery-masonry {
        columns: 1;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}