/* --- Professional Blue Accent: #2980b9 --- */

/* Hero Section */
.events-hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-color: #333;
}
.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}
.hero-content p {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    opacity: 0.9;
}

/* General page structure */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
}
.section-title {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 80px;
    margin-bottom: 24px;
    color: #2c3e50; /* Dark blue-gray for titles */
}

/* Intro Text Section */
.intro-text {
    text-align: center;
    padding: 48px 0;
    max-width: 750px;
    margin: 0 auto;
}
.intro-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}
.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* Gallery Showcase Section */
.gallery-showcase h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 24px;
}
.gallery-showcase .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
}

/* Packages Section */
.packages-section {
    padding: 64px 0;
    text-align: center;
}
.packages-section .subtitle {
    max-width: 600px;
    margin: 16px auto 48px auto;
    color: #555;
    line-height: 1.6;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.package-card.featured {
    border-color: #2980b9; /* Professional blue border */
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.package-card.featured h3 {
    color: #2980b9;
}
.package-card h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 8px;
}
.package-card .price-display {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 24px;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    line-height: 1.6;
    flex-grow: 1; /* Pushes price to the top */
}
.package-card li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}
.package-card li::before {
    content: '✓';
    color: #2980b9; /* Blue checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Add-Ons Subsection */
.packages-subsection {
    margin-top: 64px;
}
.subsection-title {
    font-size: 28px;
    margin-bottom: 24px;
}
.addons-card {
    margin: 0 auto;
    max-width: 800px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.addon-items-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.addon-item {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* Process Section */
.process-section {
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid #eee;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
    margin-top: 48px;
}
.step-card { padding: 24px; }
.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}
.step-card h3 { font-size: 22px; margin: 12px 0; }
.step-card p { color: #555; line-height: 1.6; }

/* Terms Section */
.terms-section {
    padding: 64px 24px;
    background-color: #fafafa;
    text-align: center;
    border-radius: 8px;
    margin-top: 80px;
}
.terms-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.terms-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1em;
}

/* Service Area & CTA Sections */
.service-area, .cta-section {
    text-align: center;
    padding: 64px 24px;
    border-radius: 8px;
    margin-top: 48px;
}
.service-area { background-color: #fafafa; }
.service-area h2, .cta-section h2 { font-size: 32px; margin-bottom: 16px; }
.service-area p, .cta-section p {
    max-width: 600px;
    margin: 0 auto 32px auto;
    color: #555;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .events-hero h1 { font-size: 36px; }
    .gallery-showcase .photo-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .package-card.featured { transform: scale(1); }
    .process-steps { grid-template-columns: 1fr; text-align: center; }
}
