/* Hackathon Standalone Project - style.css (FULL HEIGHT HERO REFINEMENT) */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --dark_raspberry: rgb(207, 20, 39);
    --color-red: rgb(207, 20, 39);
    --black: #000;
    --color33: #333333;
    --colorwhite: #fff;
    --gray: #ECECEC;
    --fontcolor: #333;
    --mulish: 'Mulish', sans-serif;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

.section-py { padding: 9rem 0; }

body {
    font-family: var(--mulish);
    color: var(--fontcolor);
    font-size: 1.6rem;
    line-height: 2.6rem;
    overflow-x: hidden;
    max-width: 100%;
    background-color: var(--colorwhite);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--mulish);
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* TYPOGRAPHY */
h1 { font-size: 7.4rem; line-height: 6.5rem; font-weight: 800; }
h2 { font-size: 4rem; line-height: 4.8rem; font-weight: 500; }
h3 { font-size: 3.4rem; line-height: 3.8rem; font-weight: 800; }
h4 { font-size: 2.8rem; line-height: 3.4rem; font-weight: 700; }
h5 { font-size: 2.6rem; line-height: 3.4rem; font-weight: 700; }
h6 { font-size: 1.6rem; line-height: 1.6; font-weight: 600; }

@media screen and (max-width: 1649px) {
    h1 { font-size: 6.4rem; line-height: 7.5rem; }
}

p, li, a {
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: #444;
    font-weight: 400;
}

.lead {
    font-size: 2.1rem !important;
    line-height: 3.2rem !important;
    font-weight: 500 !important;
    color: inherit;
}

/* Hero Section (FULL HEIGHT) */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* FULL HEIGHT */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-section h1 { color: #fff !important; margin-bottom: 3rem; }
.hero-section .lead { color: #fff !important; margin-bottom: 5rem; }

/* Section Spacing */
.center_heading h5 { color: var(--black); font-size: 4rem; font-weight: 400; margin-bottom: 1.5rem; }
.center_heading blockquote { color: var(--dark_raspberry); font-size: 7.4rem; font-weight: 700; line-height: 7.4rem; margin: 2.5rem 0 3.4rem; }

@media (max-width: 991px) {
    h1 { font-size: 4.2rem; line-height: 4.8rem; }
    .section-py { padding: 6rem 0; }
    .hero-section { height: auto; min-height: 100vh; padding: 10rem 0; }
}

/* Common Styles */
.btn-primary-niet {
    background: var(--dark_raspberry);
    padding: 1.1rem 2.4rem !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    border-radius: 2.5rem !important;
    color: #fff !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    transition: 0.5s;
    text-decoration: none;
}
.btn-primary-niet:hover { background: var(--black); color: #fff; }

.glass-card {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0,0,0,0.04);
    border: 1px solid #f1f1f1;
    transition: 0.35s;
    height: 100%;
}
.glass-card:hover { transform: translateY(-1rem); border-bottom: 0.45rem solid var(--dark_raspberry); box-shadow: 0 2rem 4rem rgba(187,10,33,0.12); }

.contact-card { background: #fff; border-radius: 1.5rem; padding: 4rem 3rem; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: 0.4s; border: 1px solid rgba(0,0,0,0.05); }
.contact-card:hover { transform: translateY(-8px); border-color: var(--dark_raspberry); }
.contact-card i { font-size: 3.5rem; color: var(--dark_raspberry); margin-bottom: 2.5rem; }

.logo img {
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.08);
}

.footer_socmedia ul { list-style: none; padding: 0; display: flex; gap: 1.5rem; }
.footer_socmedia ul { list-style: none; padding: 0; display: flex; gap: 1.2rem; }
.footer_socmedia ul li a { 
    background: #fff; 
    width: 4rem; 
    height: 4rem; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.footer_socmedia ul li a img { height: 2.2rem; filter: none; transition: 0.3s; }
.footer_socmedia ul li a i { font-size: 2rem; color: #333; }
.footer_socmedia ul li a img[src*="threads"] { border-radius: 50%; }

.footer { background-color: #000; padding: 7rem 0 4rem; color: #fff; }
.footer p { color: #fff; opacity: 0.7; font-size: 1.4rem; }

.btn-hero {
    padding: 1.5rem 4rem !important;
    font-size: 2rem !important;
}

.prize-amount {
    font-size: 6.4rem;
    font-weight: 800;
    color: var(--dark_raspberry);
    line-height: 1;
}

@media (max-width: 991px) {
    .prize-amount { font-size: 4.8rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 3rem !important; line-height: 1.2 !important; }
    h2 { font-size: 2.6rem !important; line-height: 1.3 !important; }
    h3 { font-size: 2.2rem !important; line-height: 1.3 !important; }
    h4 { font-size: 2rem !important; line-height: 1.4 !important; }
    p, li, a { font-size: 1.6rem !important; line-height: 1.6 !important; }
    .lead { font-size: 1.8rem !important; }
    .section-py { padding: 5rem 0 !important; }
    .center_heading blockquote { font-size: 3.2rem !important; line-height: 1.2 !important; }
    .center_heading h5 { font-size: 1.6rem !important; }
    .prize-amount { font-size: 4rem !important; }
    .btn-hero {
        padding: 1.2rem 2.5rem !important;
        font-size: 1.6rem !important;
    }
    .logo a img:first-child { height: 5rem !important; }
    .logo a img:last-child { height: 8rem !important; }
    .logo { gap: 1.5rem !important; }
}
