/* ===================================
   TED MUN '26 - Custom Styles
   Main Color Scheme:
   - Navy Blue: #1B2441
   - Orange/Red: #D75138
   - White: #FFFFFF
   =================================== */

:root {
    --primary-navy: #1B2441;
    --primary-red: #eb4528;
    --primary-orange: #D75138;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom,
            #16192e 0%,
            #1a2139 15%,
            #1B2441 40%,
            #20304a 70%,
            #2a3552 100%);
    background-attachment: fixed;
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Site-wide confetti overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(215, 81, 56, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(215, 81, 56, 0.025) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(215, 81, 56, 0.02) 0%, transparent 45%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(215, 81, 56, 0.04) 48%, rgba(215, 81, 56, 0.04) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.02) 52%, transparent 52%);
    background-size: 100px 100px, 140px 140px;
    background-position: 0 0, 50px 50px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: rgba(27, 36, 65, 0.95) !important;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
}

.navbar-brand .logo-img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-family: 'Bungee', cursive;
    font-size: 1rem;
    margin: 0 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(to bottom,
            #16192e 0%,
            #1a2139 15%,
            #1B2441 40%,
            #20304a 70%,
            #2a3552 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Confetti pattern overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(215, 81, 56, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(215, 81, 56, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(215, 81, 56, 0.03) 0%, transparent 45%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

/* Scattered confetti pieces */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Small triangles and rectangles scattered */
        linear-gradient(45deg, transparent 48%, rgba(215, 81, 56, 0.08) 48%, rgba(215, 81, 56, 0.08) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.04) 52%, transparent 52%);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 100;
    position: relative;
}

/* ===================================
   MAIN TITLE - TEDMUN'26
   Using Varsity font as alternative to Wildcat College
   =================================== */
.hero-title {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 25px;
    margin-bottom: 1rem;
    position: relative;

    /* Transparent fill with red border */
    -webkit-text-stroke: 3.2px var(--primary-red);
    paint-order: stroke fill;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 8px;
        -webkit-text-stroke: 2.5px var(--primary-orange);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 4rem;
        /* Drastically reduced for mobile */
        letter-spacing: 2px;
        -webkit-text-stroke: 1.5px var(--primary-orange);
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        display: block;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   SUBTITLE - VOICES OF CHANGE
   =================================== */
.hero-subtitle {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 4rem;

    /* Transparent fill with white border */
    -webkit-text-stroke: 2px var(--white);
    paint-order: stroke fill;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 2.5rem;
        letter-spacing: 12px;
        -webkit-text-stroke: 1.5px var(--white);
    }
}

@media (max-width: 576px) {
    .hero-subtitle {
        font-size: 2rem;
        letter-spacing: 8px;
        -webkit-text-stroke: 1.2px var(--white);
    }
}

/* ===================================
   DIVIDER LINE
   =================================== */
.divider-line {
    width: calc(100% - 400px);
    max-width: 900px;
    height: 3px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 15%,
            var(--white) 50%,
            rgba(255, 255, 255, 0.3) 85%,
            transparent 100%);
    margin: 0 auto 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .divider-line {
        width: calc(100% - 200px);
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .divider-line {
        width: 80%;
        max-width: 300px;
    }
}

/* ===================================
   APPLY SOON SECTION
   =================================== */
.apply-section {
    margin-top: 3rem;
}

.apply-title {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 2rem;


    /* Transparent fill with white border */
    -webkit-text-stroke: 2px var(--white);
    paint-order: stroke fill;

    /* Circular arc effect - like part of circle's circumference */
    transform: rotateY(-8deg) rotateX(-34deg) scaleX(0.85);
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .apply-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
        -webkit-text-stroke: 1.5px var(--white);
        transform: rotateY(-6deg) rotateX(-2deg) scaleX(0.85);
    }
}

/* ===================================
   COUNTDOWN TIMER
   =================================== */
.countdown-container {
    position: relative;
    display: inline-block;
    z-index: 10;
}

/* Wheat/Laurel decoration above timer */
/* Wheat/Laurel decoration above timer */
/* Wheat/Laurel decoration above timer */
.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    background-image: url('../assets/wheat-decoration.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.95;
    pointer-events: none;
    z-index: 20;
}

.countdown-timer {
    display: flex;
    gap: 1.25rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6347 100%);
    padding: 2.5rem 3.5rem;
    border-radius: 60px;
    /* Glow effect removed */
    position: relative;
    backdrop-filter: blur(10px);
}

.countdown-item {
    text-align: center;
    min-width: 95px;
}

.countdown-value {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 1.2px var(--white);
    paint-order: stroke fill;
}

.countdown-label {
    font-family: 'Bungee', cursive;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.75rem;
        padding: 1.75rem 2rem;
        border-radius: 45px;
        max-width: 95vw;
        overflow: hidden;
    }

    .countdown-item {
        min-width: 65px;
        flex: 1;
    }

    .countdown-value {
        font-size: 2.75rem;
    }

    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 576px) {
    .countdown-timer {
        gap: 0.6rem;
        padding: 1.5rem 1.75rem;
        max-width: 92vw;
    }

    .countdown-item {
        min-width: 58px;
    }

    .countdown-value {
        font-size: 2.25rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* ===================================
   WHEAT/LAUREL DECORATIONS
   =================================== */
.wheat-left,
.wheat-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ffffff" d="M50,10 Q40,30 50,50 Q60,30 50,10 M50,50 Q40,70 50,90 Q60,70 50,50"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.wheat-left {
    left: -100px;
    transform: translateY(-50%) scaleX(-1);
}

.wheat-right {
    right: -100px;
}

@media (max-width: 992px) {

    .wheat-left,
    .wheat-right,
    .megaphone {
        /* Hide megaphones on narrower screens as well */
        display: none;
    }
}

/* ===================================
   MEGAPHONES
   =================================== */
.megaphone {
    position: absolute;
    z-index: 5;
}

.megaphone img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.megaphone-left {
    left: 50px;
    top: 22%;
}

.megaphone-right {
    right: 50px;
    top: 22%;
}

@media (max-width: 992px) {
    .megaphone img {
        width: 100px;
    }

    .megaphone-left {
        left: 10px;
        top: 20%;
    }

    .megaphone-right {
        right: 10px;
        top: 20%;
    }
}

@media (max-width: 768px) {
    .megaphone img {
        width: 70px;
        opacity: 0.7;
    }

    .megaphone-left {
        left: 5px;
        top: 22%;
    }

    .megaphone-right {
        right: 5px;
        top: 22%;
    }
}

@media (max-width: 576px) {
    .megaphone img {
        width: 50px;
        opacity: 0.6;
    }
}

/* ===================================
   APPLY CARDS SECTION
   =================================== */
.section-padding {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
    /* Smooth transition overlay */
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.05) 100%);
}

.section-title {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.apply-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.apply-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(215, 81, 56, 0.25),
        0 0 0 2px var(--primary-orange),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(215, 81, 56, 0.4);
}

.apply-card h3 {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(215, 81, 56, 0.3);
}

.apply-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.apply-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #c13f28 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Bungee', cursive;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(215, 81, 56, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 48px;
    /* Touch-friendly */
    cursor: pointer;
}

.apply-card .btn-primary:hover {
    background: linear-gradient(135deg, #ff5a3d 0%, var(--primary-orange) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 8px 25px rgba(215, 81, 56, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.apply-card .btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* ===================================
   TEAM SECTION
   =================================== */
.bg-light {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            transparent 100%) !important;
    position: relative;
    z-index: 1;
}

.team-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(215, 81, 56, 0.2),
        0 0 0 2px rgba(215, 81, 56, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(215, 81, 56, 0.3);
}

.team-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    box-shadow:
        0 8px 20px rgba(215, 81, 56, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow:
        0 12px 30px rgba(215, 81, 56, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    font-family: 'Varsity', 'Impact', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.team-title {
    color: var(--primary-orange);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.team-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.team-social a:hover {
    color: var(--primary-orange);
    background: rgba(215, 81, 56, 0.15);
    transform: translateY(-3px) scale(1.1);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}


/* ===================================
   LOGO SECTION
   =================================== */
.logo-section {
    padding: 60px 0;
    text-align: center;
    display: block;
    /* Reset flex centering to match snippet text-align */
}

.main-logo {
    height: 300px;
    width: auto;
    /* Maintain aspect ratio */
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

@media (max-width: 768px) {
    .main-logo {
        height: 200px;
        /* Smaller on mobile */
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Theme color */
    padding: 18px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    /* Reset background */
    border-radius: 0;
    /* Reset radius */
    margin-bottom: 0;
    /* Reset margin */
}

.faq-item:hover {
    background: transparent;
    transform: none;
}

.faq-item:hover h3 {
    color: var(--primary-orange);
}

.faq-item h3 {
    font-family: 'Bungee', cursive;
    /* Keep theme font */
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 1px;
}

.faq-item .arrow {
    font-family: sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    transform: rotate(-90deg);
    /* Start pointed right/down depending on perspective, user snippet had -90 */
    transition: transform 0.3s ease;
    opacity: 0.8;
}

/* Active State */
.faq-item.active .arrow {
    transform: rotate(90deg);
    /* Rotate to point down */
    color: var(--primary-orange);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    line-height: 1.6;
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.85);
    /* Theme text color */
    margin-top: 0;
    font-size: 0.95rem;
}

.faq-item.active p {
    max-height: 300px;
    /* Allow enough space */
    opacity: 1;
    margin-top: 15px;
}

.fee-badge {
    display: inline-block;
    background: rgba(215, 81, 56, 0.15);
    color: var(--primary-orange);
    font-family: 'Bungee', cursive;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(215, 81, 56, 0.4);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.apply-card:hover .fee-badge {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.05);
}

/* Contact Social Icons */
.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon-box i {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.social-icon-box span {
    font-family: 'Bungee', cursive;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icon-box:hover {
    background: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(215, 81, 56, 0.4);
    border-color: transparent;
}

.social-icon-box:hover i,
.social-icon-box:hover span {
    color: white;
}

/* ===================================
   PAGE HERO (Shared across Committees, Apply, Contact, Executive)
   =================================== */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 36, 65, 0.8), rgba(27, 36, 65, 0.95)), url('../assets/hero-bg.jpg') center/cover;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Specific overrides for Hero Titles within .page-hero context */
.page-hero .hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #f9fff0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 0;
    transform: none;
    /* Reset homepage transform */
}

.page-hero .hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-orange);
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: none;
    -webkit-text-stroke: 0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        height: auto;
        min-height: 300px;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .page-hero .hero-title {
        font-size: 3rem;
        -webkit-text-stroke: 0;
    }

    .page-hero .hero-subtitle {
        font-size: 1.1rem;
        -webkit-text-stroke: 0;
    }
}