* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

body {
    background-image: url("c:\Users\yoges\OneDrive\Pictures\Screenshots 1\Screenshot 2025-04-15 173127.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* HEADER */

.header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    min-width: 0;
}

.logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    font-weight: 600;
    padding: 28px 0;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #b32025;
}

nav a.active::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 18px;
    left: 0;
    background: #b32025;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    color: #222;
}


/* HERO */

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(255,255,255,.94),
            rgba(255,255,255,.94)
        ),
        url("c:\Users\yoges\OneDrive\Pictures\Screenshots 1\Screenshot 2025-04-15 173127.png");

    background-size: cover;
    background-position: center;
}

.hero-home {
    background-color: #fafafa;
    background-image: none;
    padding: 40px 0;
}

.hero-content {
    padding: 40px 0 20px;
}

.hero-home-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.hero-image {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    width: 100%;
}

.hero-app-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

.hero-text {
    max-width: 700px;
}

.hero-home-text {
    flex: 1.5;
    min-width: 280px;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 8px 15px;
    background: #f8e8e8;
    color: #b32025;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-badge {
    background-color: #fdf6ec;
    color: #800020;
    border: 1px solid #800020;
    margin-bottom: 0;
}

.hero-title {
    color: #800020;
    margin-top: 15px;
    font-size: clamp(20px, 4vw, 24px);
    line-height: 1.4;
}

.hero-subtitle {
    color: #333;
    font-size: clamp(15px, 3vw, 18px);
    font-weight: 600;
}

.hero-download-link-wrap {
    margin: 15px 0 5px 0;
}

.hero-download-link {
    color: #800020;
    font-weight: bold;
    font-size: clamp(15px, 3vw, 18px);
}

.hero-download-btn-wrap {
    margin: 10px 0 15px 0;
}

.hero-download-btn {
    background-color: #800020;
}

.hero-copy {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.hero-offer {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    border-left: 4px solid #800020;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
     color: #b32025;
}

.hero p {
    font-size: 18px;
    color: #555;
    max-width: 650px;
    margin-bottom: 30px;
}

.hero-home .hero-copy,
.hero-home .hero-offer,
.hero-home .hero-download-link-wrap,
.hero-home .hero-download-btn-wrap {
    max-width: none;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-buttons .btn-primary {
    background-color: #800020;
    color: #fff;
}

.hero-buttons .btn-outline {
    border-color: #800020;
    color: #800020;
}


/* BUTTONS */

.btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 6px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: .2s;
    cursor: pointer;
}

.btn-primary {
    background: #b32025;
    color: white;
}

.btn-primary:hover {
    background: #8e181d;
}

.btn-outline {
    border-color: #b32025;
    color: #b32025;
}

.btn-outline:hover {
    background: #b32025;
    color: white;
}

.btn-light {
    background: white;
    color: #b32025;
}


/* SECTIONS */

.section {
    padding: 90px 0;
}

.section-light {
    background: #f8f8f8;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    color: #b32025;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-heading h2,
.about-grid h2,
.contact-info h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 10px 0 15px;
}

.section-heading p {
    color: #666;
}


/* SOCIAL LINKS */

.social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 0;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.section-cards {
    padding-top: 40px;
    padding-bottom: 60px;
}


/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    padding: 35px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: white;
    text-align: center;
}

.icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8e8e8;
    color: #b32025;
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 20px;
}

.card .icon {
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #666;
}


/* EVENTS */

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-content {
    padding: 25px;
}

.event-date {
    display: inline-block;
    color: #b32025;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content h3 {
    margin-bottom: 10px;
}

.event-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #b32025;
    font-weight: 700;
}

.featured-event {
    display: grid;
    grid-template-columns: minmax(200px, 0.7fr) 1.4fr;
    gap: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.featured-event-media {
    min-height: 320px;
    background:
        linear-gradient(160deg, rgba(128, 0, 32, 0.88), rgba(128, 0, 32, 0.55)),
        radial-gradient(circle at 20% 20%, #f0e68c 0, transparent 40%),
        #800020;
}

.featured-event-body {
    padding: 40px 36px;
}

.featured-event-kicker {
    color: #800020;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.featured-event-body h3 {
    font-size: clamp(30px, 4.5vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.featured-event-desc {
    color: #555;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.featured-event-meta {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.featured-event-meta li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.featured-event-meta i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fdf2f4;
    color: #800020;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 18px;
}

.featured-event-meta strong {
    display: block;
    font-size: 14px;
    color: #800020;
    margin-bottom: 4px;
}

.featured-event-meta span {
    display: block;
    color: #444;
    font-size: 16px;
    line-height: 1.55;
}

.featured-event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.featured-event-actions .btn {
    font-size: 16px;
    padding: 14px 26px;
}

.featured-event-home {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin: 0 auto;
}

.featured-event-home .featured-event-body {
    padding: 48px 44px;
}

.featured-event-home .featured-event-kicker {
    font-size: 16px;
}

.featured-event-home .featured-event-body h3 {
    font-size: clamp(34px, 5vw, 46px);
    margin-bottom: 18px;
}

.featured-event-home .featured-event-desc {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.featured-event-home .featured-event-meta {
    gap: 22px;
    margin-bottom: 34px;
}

.featured-event-home .featured-event-meta i {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.featured-event-home .featured-event-meta strong {
    font-size: 15px;
}

.featured-event-home .featured-event-meta span {
    font-size: 18px;
}

.featured-event-home .featured-event-actions .btn {
    font-size: 17px;
    padding: 15px 28px;
}

.event-page-header {
    background: #800020;
    color: #fff;
    padding: 48px 20px;
}

.event-page-header h1 {
    color: #fff;
    margin-bottom: 8px;
}

.event-page-header p {
    color: rgba(255, 255, 255, 0.85);
}

.event-page-label {
    color: #f0e68c !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.featured-event-page {
    max-width: 980px;
    margin: 0 auto;
}


/* CTA */

.cta {
    padding: 80px 20px;
    text-align: center;
    background: #b32025;
    color: white;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
}


/* PAGE HEADER */

.page-header {
    padding: 90px 20px;
    text-align: center;
    background: #f8f8f8;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.about-grid p {
    color: #666;
    margin-bottom: 15px;
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: center;
}

.contact-item .icon {
    flex-shrink: 0;
    margin: 0;
    width: 64px;
    height: 64px;
    font-size: 24px;
}

.contact-item h4 {
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-item p {
    color: #444;
    font-size: 18px;
    line-height: 1.6;
}

.contact-form {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 17px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 17px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b32025;
}

.contact-form .btn {
    font-size: 17px;
    padding: 14px 28px;
}


/* FAQ */

.faq-container {
    max-width: 850px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: .3s;
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    color: #666;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}


/* FOOTER */

.footer {
    background: #171717;
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
}

.footer p {
    color: #bbbbbb;
}

.footer a {
    display: block;
    color: #bbbbbb;
    margin-bottom: 8px;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
    text-align: center;
    color: #999;
}


/* TABLET */

@media (max-width: 992px) {

    nav {
        gap: 18px;
    }

    .hero-home-content {
        gap: 28px;
    }

    .about-grid,
    .contact-grid {
        gap: 36px;
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .container {
        width: min(1120px, 94%);
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 16px;
        gap: 8px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .nav-container {
        min-height: 64px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 8px 4%;
        border-bottom: 1px solid #ddd;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 14px 4px;
        border-bottom: 1px solid #f1f1f1;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a.active::after {
        display: none;
    }

    .hero,
    .hero-home {
        min-height: auto;
        padding: 24px 0;
    }

    .hero-home-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 8px 0 16px;
    }

    .hero-image {
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-home-text {
        min-width: 0;
        width: 100%;
        text-align: center;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
        line-height: 1.4;
        white-space: normal;
        max-width: 100%;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-download-link,
    .hero-copy {
        font-size: 15px;
    }

    .hero-offer {
        text-align: left;
        font-size: 14px;
    }

    .hero-download-btn-wrap .btn,
    .hero-buttons .btn,
    .featured-event-actions .btn,
    .cta .btn,
    .contact-form .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .section,
    .section-cards {
        padding: 40px 0;
    }

    .section-light {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cards,
    .event-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 24px;
    }

    .featured-event {
        grid-template-columns: 1fr;
    }

    .featured-event-media {
        min-height: 140px;
    }

    .featured-event-body,
    .featured-event-home .featured-event-body {
        padding: 24px 18px;
    }

    .featured-event-home .featured-event-body h3 {
        font-size: 28px;
    }

    .featured-event-home .featured-event-desc {
        font-size: 16px;
    }

    .featured-event-home .featured-event-meta span,
    .featured-event-meta span {
        font-size: 15px;
    }

    .featured-event-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-heading h2,
    .about-grid h2,
    .contact-info h2 {
        font-size: 26px;
    }

    .page-header {
        padding: 40px 16px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .about-image {
        height: 240px;
    }

    .about-grid {
        gap: 24px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-item .icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .contact-item h4 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 16px;
        word-break: break-word;
    }

    .faq-question {
        font-size: 15px;
        gap: 12px;
        align-items: flex-start;
        padding: 18px 0;
    }

    .faq-question i {
        margin-top: 4px;
        flex-shrink: 0;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta {
        padding: 50px 16px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        gap: 28px;
        padding-bottom: 30px;
    }

}


/* SMALL PHONES */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .logo span {
        font-size: 14px;
        max-width: 170px;
    }

    .hero-image {
        max-width: 220px;
    }

    .hero-title {
        font-size: 18px;
    }

    .featured-event-home .featured-event-body h3 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 18px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

}