img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

a {
    color:#ee5a6f
}

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

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-image: url('./city.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
    pointer-events: none;
}

/* Hero section with background image */
.hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem 0 2rem;
}

/* Dark overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #f5f5f5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    margin: -1.3rem 0 0 0 !important;
}

.hero p {
    font-weight: 300;
    font-size: 1.4rem;
    color: #f5f5f5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

h2 {
    color: #c44569;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 1px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-image {
    width: 300px;
    height: auto;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

p {
    font-size: 1.05rem;
    color: #dcdcdc;
    font-weight: 400;
    margin: 0.75rem 0;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    section {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
    }

    .event-card-content {
        align-items: self-start;
        flex-direction: column !important;
        flex-wrap: wrap-reverse;
    }

    .event-card-image-left img,
    .event-card-image-right img {
        width: 100%;
    }
}

#events {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    /* background: linear-gradient(135deg, #fec0ff 0%, #ffffff 100%); */
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #8a3838;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.event-card-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap-reverse;
    align-items: self-start;
}

.event-card-image-left .event-card-content {
    align-items: self-start;
    flex-direction: row;
}

.event-card-image-right .event-card-content {
    align-items: self-start;
    flex-direction: row-reverse;
}

.event-card-image-left img,
.event-card-image-right img {
    width: min(300px, 100%);
    height: auto;
    flex-shrink: 0;
}

.event-card-text {
    flex: 1;
    min-width: 250px;
}

.event-card h3 {
    color: #c44569;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.event-card p {
    color: #e3e3e3;
}

.event-card .time {
    font-weight: 700;
    color: #ff6b6b;
    font-size: 1.1rem;
}


#contact strong {
    color: #ff6b6b;
}

/* Fixed social media icons */
.social-fixed {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
}

.social-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-fixed a:hover {
    transform: scale(1.1);
    background: #ff6b6b;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.social-fixed a svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .social-fixed {
        right: 1rem;
        gap: 1rem;
    }
    
    .social-fixed a {
        width: 45px;
        height: 45px;
    }
    
    .social-fixed a svg {
        width: 22px;
        height: 22px;
    }
}

footer {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    padding: 2.5rem;
    margin-top: 2rem;
    border-top: 3px solid #603a6f;
}

footer p {
    color: #e0e0e0;
}

