html, body {
    height: 100%;
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
}

p {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    text-align: center;
}

header {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.desktop-nav a.home-icon {
    font-size: 1.4rem;
    padding: 0 10px;
    text-indent: -9999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.desktop-nav a.home-icon i {
    text-indent: 0;
}

.desktop-nav a:hover {
    color: #35a76f;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #35a76f;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.btn-hero {
    font-size: 1.4rem;
    padding: 15px 40px;
}

.section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    width: 100%;
    overflow-x: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #35a76f, #2a8c5a);
    opacity: 0.5;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: #35a76f;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#events h3 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

#book h2, #t2-gala h2 {
    font-size: 3.5rem;
}

#book h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #35a76f, #2a8c5a);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(53, 167, 111, 0.4);
}

.btn:hover {
    background: linear-gradient(90deg, #2a8c5a, #35a76f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 167, 111, 0.6);
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.mission-section .mission-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-section p {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    max-width: 900px;
}

.mission-section .highlight {
    color: #35a76f;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.creed-section .creed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    text-align: center;
}

.creed-item {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.creed-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.creed-item i {
    font-size: 3rem;
    color: #35a76f;
    margin-bottom: 20px;
}

.creed-item h3 {
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.event {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.event img {
    max-width: 100%;
    flex: 1;
    border-radius: 15px;
    object-fit: cover;
}

.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-list-container {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #35a76f;
    margin: 40px 0;
}

.event-list-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.event-list-image {
    max-width: 200px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.event-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-item {
    background: #333;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #35a76f;
}

.event-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.event-item p {
    font-size: 1.2rem;
}

.live-stream .button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.podcast-slider, .author-slider {
    margin: 40px 0;
    max-width: 100%;
    padding: 0 50px;
    overflow: visible;
}

.slick-slider {
    max-width: 100%;
}

.slick-list {
    overflow: visible;
}

.slick-slide {
    margin: 0 10px;
    box-sizing: border-box;
}

.slick-prev, .slick-next {
    width: 30px;
    height: 30px;
    background: rgba(53, 167, 111, 0.7);
    border-radius: 50%;
    color: #fff;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    text-indent: -9999px;
    overflow: hidden;
}

.slick-prev::before {
    content: '\f060';
    display: block;
    text-indent: 0;
}

.slick-next::before {
    content: '\f061';
    display: block;
    text-indent: 0;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(53, 167, 111, 1);
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

.podcast-item, .author-item {
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

.podcast-item img, .author-item img {
    width: 140px;
    height: 140px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0;
    margin: 0 auto 10px;
}

.podcast-item h4, .author-item h4 {
    font-size: 1.4rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.book-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.book-video, .t2-gala-video {
    max-width: 800px;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
}

.book-image {
    max-width: 250px;
    max-height: 350px;
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.book-details {
    flex: 2;
}

.book-description {
    font-size: 1.4rem;
}

.t2-gala-date {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}

.schedule-highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #35a76f;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #35a76f;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: #333;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #35a76f;
    animation: popupFade 0.3s ease;
}

.popup-content h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.welcome-subheading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close, .submission-close, .welcome-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #35a76f;
    transition: color 0.3s ease;
}

.close:hover, .submission-close:hover, .welcome-close:hover {
    color: #fff;
}

.submission-message {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: #333;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

form textarea {
    resize: vertical;
}

.author-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(90deg, #000, #1a1a1a);
    border-top: 1px solid #35a76f;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    h2 {
        line-height: 1.2;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-bottom: 0;
        height: 50px;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
    }

    .event, .book-content {
        flex-direction: column;
    }

    .book-image {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .mission-section p {
        font-size: 1.8rem;
    }

    .mission-section .highlight {
        font-size: 2.2rem;
    }

    .book-description {
        font-size: 1.2rem;
    }

    .event-list-header {
        flex-direction: column;
        align-items: center;
    }

    .event-list-image {
        max-width: 150px;
        margin-bottom: 10px;
    }

    #events h3 {
        font-size: 2.2rem;
    }

    #book h2, #t2-gala h2 {
        font-size: 2.5rem;
    }

    #book h3 {
        font-size: 2rem;
    }

    .author-item h4 {
        font-size: 1.2rem;
    }

    .schedule-highlight {
        font-size: 1.6rem;
    }

    .t2-gala-date {
        font-size: 1.4rem;
    }

    .creed-item h3 {
        font-size: 3rem;
    }

    .contact-form {
        padding: 20px;
    }

    .podcast-item, .author-item {
        padding: 5px;
    }

    .podcast-slider, .author-slider {
        padding: 0 30px;
    }

    .podcast-item img, .author-item img {
        width: 140px;
        height: 140px;
    }

    .video-background iframe {
        width: 177.78vh;
        height: 100vh;
    }

    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }

    .slick-prev, .slick-next {
        font-size: 16px;
        width: 30px;
        height: 30px;
        text-indent: -9999px;
    }

    .popup-content h2 {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .welcome-subheading {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-background iframe {
        width: 177.78vh;
        height: 100vh;
    }
}