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

body {
    font-family: 'Lato', sans-serif;
    background-color: #ebd1cf;
    color: #000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Link styles */
a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: #000;
}

/* Dreamy fade spots */
body::before {
    content: '';
    position: fixed;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 222, 199, 0.6) 0%, rgba(245, 222, 199, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 60%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 222, 199, 0.4) 0%, rgba(245, 222, 199, 0.1) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section styles */
.hero-section {
    text-align: center;
    padding: 80px 0 1px 0;
}

.hero-tagline {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.8;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Changa One', cursive;
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: .9;
    text-transform: uppercase;
}

.hero-svg {
    margin: 40px 0;
    max-width: 100%;
    height: auto;
}

.hero-svg img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Content section styles */
.content-section {
    padding: 30px 0;
    text-align: center;
}

/* H2 container with starburst decorations */
.h2-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.starburst-left,
.starburst-right {
    height: 3.5rem;
    width: auto;
    flex-shrink: 0;
    transform: translateY(-28px);
}

.content-section p {
    font-size: 24px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Button styles */
.cta-button {
    display: inline-block;
    background-color: #f9e1c3;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 24px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #f5d6a8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Calendar page specific styles */
.header {
    text-align: center;
    padding: 40px 0 10px;
}

.back-link {
    display: inline-block;
    background-color: #f9e1c3;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #f5d6a8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-title {
    margin-bottom: 20px;
    font-family: 'Changa One', cursive;
    font-size: 3.7rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.page-subtitle {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.8;
    text-transform: uppercase;
}

.calendar-section {
    text-align: center;
}

.calendar-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.calendar-placeholder p {
    font-size: 16px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Event cards */
.events-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-description {
    font-size: 20px;
    opacity: 0.8;
    line-height: 1.5;
}

.meeting-time {
    font-size: 24px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
/* Calendar page specific fade spots */
body.calendar-page::before {
    top: 30%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 222, 199, 0.5) 0%, rgba(245, 222, 199, 0.2) 40%, transparent 70%);
    filter: blur(50px);
    animation: float 7s ease-in-out infinite;
}

body.calendar-page::after {
    top: 70%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245, 222, 199, 0.4) 0%, rgba(245, 222, 199, 0.1) 50%, transparent 80%);
    filter: blur(40px);
    animation: float 9s ease-in-out infinite reverse;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .starburst-left,
    .starburst-right {
        height: 2rem;
    }
    
    .h2-container {
        gap: 15px;
    }
    
    .hero-section {
        padding: 40px 0 20px 0;
    }

    .page-title {
        font-size: 2.5rem;
    }
    
    .calendar-placeholder {
        padding: 60px 20px;
    }
    
    .events-preview {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding-top: 0;
    }
}
