/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 19 2025 | 14:46:51 */
/* Swaylimo Events Pages Stylesheet */
/* Date: July 2025 */

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.event-page-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ff9500; /* Swaylimo orange */
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #ff9500;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e67e00;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ===== HERO SECTION ===== */
.event-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1200x400');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.event-hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.event-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ===== CONTENT LAYOUT ===== */
.event-content {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.event-description {
    flex: 2;
    min-width: 300px;
    padding-right: 2rem;
}

.event-sidebar {
    flex: 1;
    min-width: 250px;
    padding-left: 2rem;
    border-left: 1px solid #eee;
}

/* ===== HIGHLIGHTS SECTION ===== */
.event-highlights {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0;
    gap: 1.5rem;
}

.highlight-item {
    flex: 1;
    min-width: 200px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    margin-bottom: 1rem;
    color: #ff9500;
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
}

/* ===== LISTS ===== */
.event-services, .venue-list, .benefits-list, .area-list {
    list-style-type: none;
    margin-left: 0;
}

.event-services li, .venue-list li, .benefits-list li, .area-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.event-services li:before, .venue-list li:before, .benefits-list li:before, .area-list li:before {
    content: '•';
    color: #ff9500;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== SEASONAL SECTIONS ===== */
.seasonal-section, .college-regions .region {
    margin-bottom: 2rem;
}

.college-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.college-regions .region {
    flex: 1;
    min-width: 200px;
}

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.sidebar-widget h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.testimonial {
    background-color: #fff8e6;
    border-left: 4px solid #ff9500;
}

blockquote {
    font-style: italic;
    margin-bottom: 1rem;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ===== FORMS ===== */
.quick-quote-form, .cf7-form-container {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    height: 100px;
    resize: vertical;
}

.quote-button, .cta-button {
    background-color: #ff9500;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.quote-button:hover, .cta-button:hover {
    background-color: #e67e00;
    color: white;
}

/* ===== CTA SECTION ===== */
.event-cta {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
}

.event-cta h2 {
    margin-top: 0;
}

.event-cta h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.cta-button {
    margin-top: 1rem;
    padding: 1rem 2rem;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
    width: 100%;
}

.booking-section h2 {
    margin-bottom: 1rem;
}

.booking-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.booking-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cf7-form-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .event-content {
        flex-direction: column;
    }
    
    .event-description {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .event-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
    }
    
    .event-sidebar {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .highlight-container {
        justify-content: center;
    }
    
    .highlight-item {
        min-width: calc(50% - 20px);
    }
    
    .event-hero {
        padding: 4rem 1rem;
    }
    
    .cf7-form-container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .event-hero {
        padding: 3rem 1.5rem;
    }
    
    .event-hero h1 {
        font-size: 2.5rem;
    }
    
    .event-tagline {
        font-size: 1.2rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .highlight-item {
        min-width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .event-hero h1 {
        font-size: 2.2rem;
    }
    
    .event-tagline {
        font-size: 1rem;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}
