/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
    font-weight: 400;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 100px;
    display: flex;
    align-items: center;
}

/* Ensure the link takes up the full height */
.logo a {
    display: block; /* Or inline-block */
    height: 100%;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 17px;
}

nav a:hover {
    color: #027faa;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Bitter', serif;
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero .subtext {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero .anniversary {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: rgb(63, 203, 234);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #39caeb;
    color: rgb(36, 36, 36);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    filter: brightness(1.15);
}

/* Schedule Section */
.schedule {
    background-color: #027faa;
    color: white;
    width: 100%;
    padding: 5rem 0;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.schedule h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.schedule-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.schedule-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.date {
    color: #c3ffbe;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.view-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #c3ffbe;
    color: #027faa;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.view-more:hover {
    color: #027faa;
    filter: brightness(1.1);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    width: 100%;
    background-color: white;
}

/* Style the specific blue section using its class */
.content-section-blue {
    background-color: #027faa;
}

/* Style the text within the blue section */
.content-section-blue h2,
.content-section-blue p {
    color: white;
}

.content-block {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 4rem;
    align-items: center;
}

.image-left, .video-right {
    flex: 1.5;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    background: none;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.video-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-right, .text-left {
    flex: 1;
}

.text-right h2, .text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Full Width Video */
.full-width-video {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.full-width-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 5%;
    background-color: #c3ffbe;
    color: #333;
}

.cta-section h1 {
    font-family: 'Bitter', serif;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-section p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: white;
    color: #333;
    padding: 4rem 5% 2rem;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #027faa;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #027faa;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: #027faa;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    color: #027faa !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #c3ffbe !important;
    transform: translateY(-3px);
}

.social-icon i {
    color: inherit;
    font-size: 1.2rem;
    width: auto;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
}

.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Update Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    nav {
        padding: 1rem 5%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .content-block {
        flex-direction: column;
    }
    
    .image-left, .video-right {
        height: 400px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        height: 90px;
    }

    .footer-logo {
        height: 40px;
    }

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

    .footer-section p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .schedule-card, .content-block {
    animation: fadeIn 1s ease-out;
}

/* Style for the two-column categories list */
.categories-list {
    margin-top: 0.5rem; /* Add some space above the list */
    padding-left: 1.5rem; /* Indent slightly if needed */
    column-count: 2;
    column-gap: 2rem; /* Adjust spacing between columns */
}

.categories-list li {
    break-inside: avoid-column; /* Prevent items breaking across columns */
    margin-bottom: 0.3rem; /* Small space below each item */
} 