/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
header {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Images section */
.images {
    padding: 80px 0;
    background-color: #fff;
}

.images h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-track img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-btn--prev {
    left: 20px;
}

.carousel-btn--next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot--active,
.carousel-dot:hover {
    background: #000;
}

.photo-credit {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.what-to-expect-content {
    max-width: 800px;
    margin: 0 auto;
}

.what-to-expect-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.125rem;
    font-weight: 400;
}

.what-to-expect-content p:last-child {
    margin-bottom: 0;
}

/* Locations section */
.locations {
    padding: 80px 0;
    background-color: #fff;
}

.locations h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.locations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #333;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

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

.location-card {
    background: #f8f8f8;
    padding: 40px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}

.location-card p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Schedule section */
.schedule {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.schedule h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.schedule-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #333;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.2s ease;
}

.schedule-item:hover {
    transform: translateY(-4px);
}

.schedule-item h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}

.schedule-item p {
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

/* Story section */
.story {
    padding: 80px 0;
    background-color: #fff;
}

.story h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-item {
    background: #f8f8f8;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-bottom: 32px;
}

.story-item:last-child {
    margin-bottom: 0;
}

.story-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}

.story-item p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* FAQs section */
.faqs {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.faqs h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.faq-item {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-bottom: 24px;
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #000;
    font-weight: 600;
}

.faq-item p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 400;
}

.contact-info {
    background-color: #fff;
    color: #000;
    padding: 40px;
    max-width: 500px;
    margin: 40px auto 0;
    border: 1px solid #e0e0e0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1.125rem;
    color: #000;
    opacity: 1;
}

.contact-info strong {
    color: #000;
    font-weight: 600;
}

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

footer p {
    opacity: 0.7;
    font-weight: 300;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .about h2, .locations h2, .schedule h2, .story h2, .faqs h2, .images h2, .contact h2 {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .locations-grid, .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .carousel-track img {
        height: 350px;
    }
    
    .carousel-btn {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .carousel-btn--prev {
        left: 10px;
    }
    
    .carousel-btn--next {
        right: 10px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    header, .images, .about, .locations, .schedule, .story, .faqs, .contact {
        padding: 60px 0;
    }
    
    .location-card, .schedule-item, .story-item, .faq-item, .contact-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .about h2, .locations h2, .schedule h2, .story h2, .faqs h2, .images h2, .contact h2 {
        font-size: 1.75rem;
    }
}