* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    color: #333;
    background-color: #f9f7f4;
    line-height: 1.6;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #9B5555;
}

.nav-link.active {
    color: #9B5555;
    border-bottom-color: #9B5555;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

/* Premiere Page Styles */
.premiere-page {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../photos/fotoSolumn.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    color: white;
}

.premiere-content {
    text-align: center;
    width: 100%;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.logo-section {
    margin-bottom: 60px;
    margin-top: -80px;
}

.solum-logo-img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.premiere-info {
    margin-bottom: 50px;
}

.section-label {
    font-size: 24px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.date-main {
    font-size: 72px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.day {
    font-size: 20px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.event-details {
    margin-bottom: 50px;
}

.detail-box {
    margin-bottom: 30px;
}

.location-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.times {
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

.location-label {
    font-size: 20px;
    color: #fff;
    font-weight: normal;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #9B5555;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #7a4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 85, 85, 0.3);
}

.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-signup {
    background-color: #9B5555;
}

.cta-signup:hover {
    background-color: #7a4444;
}

/* Info Page Styles */
.info-page {
    background-color: #f9f7f4;
}

.info-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: 64px;
    color: #9B5555;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bold;
}

.info-image-section {
    margin-bottom: 40px;
    text-align: center;
}

.info-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.info-section:last-of-type {
    border-bottom: none;
}

.info-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.info-credits {
    background-color: #f0ebe5;
    padding: 25px;
    border-radius: 4px;
    border: none;
}

.info-credits ul {
    list-style: none;
    margin-top: 15px;
}

.info-credits li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.info-credits strong {
    color: #9B5555;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solum-logo {
        font-size: 80px;
        letter-spacing: 4px;
    }

    .date-main {
        font-size: 48px;
    }

    .page-title {
        font-size: 42px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .premiere-content {
        padding: 20px;
    }

    .info-content {
        padding: 0 20px;
    }

    .info-section h2 {
        font-size: 24px;
    }

    .location-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .solum-logo {
        font-size: 60px;
        letter-spacing: 2px;
    }

    .date-main {
        font-size: 36px;
    }

    .page-title {
        font-size: 32px;
    }

    .nav-container {
        gap: 15px;
        padding: 15px;
    }

    .nav-link {
        font-size: 12px;
    }
}
