/* Events Page Styles */

/* Page Header with Centered Text */
.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.85), rgba(212, 175, 55, 0.75));
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Events Overview Section */
.events-overview {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}


event-type-card {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.event-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.event-type-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #36454f;
    margin-bottom: 15px;
}

.event-type-card p {
    color: #666;
    line-height: 1.6;
}

/* Venue Spaces */
.venue-spaces {
    padding: 100px 0;
    background: white;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.venue-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.venue-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.venue-capacity {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(54, 69, 79, 0.95);
    color: #d4af37;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.venue-capacity i {
    font-size: 1rem;
}

.venue-details {
    padding: 35px;
}

.venue-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #36454f;
    margin-bottom: 15px;
}

.venue-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.venue-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8d5b7;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #36454f;
    font-weight: 500;
}

.spec-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    background: linear-gradient(135deg, #e8d5b7 0%, #f5e8d3 100%);
    color: #36454f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.venue-inquiry {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Event Services */
.event-services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #faf8f5 0%, #ffffff 100%);
}

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

.service-item {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.service-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #36454f;
    margin-bottom: 12px;
}

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

/* Event Inquiry Section */
.event-inquiry-section {
    padding: 100px 0;
    background: white;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.inquiry-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #36454f;
    margin-bottom: 20px;
}

.inquiry-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-top: 5px;
}

.info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #36454f;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
}

.inquiry-form {
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    font-weight: 600;
    color: #36454f;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    height: 50px;
    border: 2px solid #e8d5b7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group textarea {
    height: auto;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    margin: 10% auto;
    padding: 50px;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    animation: modalSlideIn 0.4s ease;
}

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

.modal-header {
    margin-bottom: 25px;
}

.modal-header i {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #36454f;
}

.modal-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #36454f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 250px;
    }
    
    .events-hero h1 {
        font-size: 2.5rem;
    }
    
    .events-hero p {
        font-size: 1.1rem;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .venues-grid {
        gap: 30px;
    }
    
    .venue-specs {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .events-hero h1 {
        font-size: 2rem;
    }
    
    .venue-card {
        border-radius: 12px;
    }
    
    .venue-details {
        padding: 25px 20px;
    }
    
    .venue-details h3 {
        font-size: 1.6rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20% auto;
    }
}