@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

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

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', 'Georgia', serif;
    background: url('Poster-A1-ai-no-text.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Optional: overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.75);
    z-index: 0;
}

header {
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2em;
    letter-spacing: 0.01em;
}

.subtitle {
    font-size: 2rem;
    color: #3bb6b0;
    font-weight: 400;
    margin-bottom: 1.5em;
    letter-spacing: 0.02em;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2em 0;
}

.event-list li {
    font-size: 2rem;
    color: #222;
    margin: 0.2em 0;
    font-weight: 400;
}

.contact-info {
    margin-top: 2em;
    font-size: 1.1rem;
    color: #222;
}

.contact-info .phone {
    margin-bottom: 0.3em;
    color: #3bb6b0;
    font-size: 1.2em;
}

.contact-info .website a {
    color: inherit;
    text-decoration: none;
}

.contact-info .website a:hover {
    text-decoration: none;
}

.contact-info .address {
    margin-top: 0.3em;
    font-size: 1em;
    color: #222;
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .event-list li {
        font-size: 1.2rem;
    }
    .contact-info {
        font-size: 0.95rem;
    }
    .contact-info .phone {
        font-size: 1em;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    
}

.tagline {
    font-size: 1.2rem;
    color: #fff;
}

.coming-soon {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    
}

.phone {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    
}

footer {
    margin-top: 2rem;
}

.social-links {
    margin-bottom: 1rem;
}

.social-link {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #34495e;
}

.contact {
    font-size: 0.9rem;
    color: #666;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .phone {
        font-size: 1.2rem;
    }

    .coming-soon {
        padding: 2rem;
        margin: 1rem;
    }
}

header ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border-radius: 30px;
    padding: 0.7rem 2.5rem;
    margin: 2rem 0 0 0;
    box-shadow: 0 2px 8px rgba(31,38,135,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    list-style: none;
    gap: 0;
}

header ul li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 1.2rem;
    margin: 0.3rem 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

header ul li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1.2em;
    background: rgba(255,255,255,0.5);
    margin-left: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    header ul {
        flex-wrap: wrap;
        padding: 0.5rem 0.5rem;
        border-radius: 18px;
    }
    header ul li {
        font-size: 0.98rem;
        padding: 0 0.7rem;
        margin: 0.2rem 0;
    }
    header ul li:not(:last-child)::after {
        margin-left: 0.7rem;
        height: 1em;
    }
}

a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #3bb6b0;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    border-radius: 1px;
}

a:hover, a:focus {
    color: #3bb6b0;
}

a:hover::after, a:focus::after {
    transform: scaleX(1);
}

a:active, a:visited {
    color: inherit;
    text-decoration: none;
} 