/*
Theme Name: Bricks Child
Theme URI: https://bricksbuilder.io/
Description: A child theme for Bricks.
Author: Bricks
Author URI: https://bricksbuilder.io/
Template: bricks
Version: 1.1
*/

/* ========================================
   GRIT LIKE BRITT - FOUNDATION STYLES
   ======================================== */

:root {
    --red: #C4261C;
    --navy: #152937;
    --cream: #FFFBFA;
    --white: #ffffff;
    --gray: #5E6D7A;
    --max-width: 1200px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
  	overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: #a01f17;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: #0d1b25;
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    background: #f0f0f0;
}

/* ========== NAVBAR ========== */
nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
    color: var(--navy);
}

.brand-sub {
    font-size: 0.6rem;
    font-weight: 700;
    opacity: 0.5;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--red);
}

/* ========== HERO ========== */
.hero {
    height: 650px;
    position: relative;
    background: url('https://gritlikebritt.org/wp-content/uploads/BACKGROUND.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
    max-width: 600px;
    color: var(--white);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 0.95;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-note {
    margin-top: 24px;
    font-size: 0.75rem;
    opacity: 0.7;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding-left: 12px;
}

/* ========== TICKER ========== */
.ticker {
    background: var(--navy);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.ticker-item {
    padding: 0 40px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-icon {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== MISSION ========== */
.mission {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.mission-text p {
    color: var(--gray);
    font-size: 1rem;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.icon-box {
    background: var(--red);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.m-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.m-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== STORY ========== */
.story {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0;
}

.story-header {
    text-align: center;
    margin-bottom: 40px;
}

.story-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.story-header p {
    opacity: 0.7;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.journey-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-card h3 {
    color: var(--red);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.journey-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.big-quote {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.4;
}

.big-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
    opacity: 0.6;
}

.audio-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.audio-box p {
    font-size: 0.9rem;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
}

/* ========== DONATE ========== */
.donate {
    padding: 80px 0;
    background: #f8f8f8;
}

.donate-header {
    text-align: center;
    margin-bottom: 40px;
}

.secure-badge {
    display: inline-block;
    background: #e6f4ea;
    color: #1e7e34;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.donate-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.donate-header p {
    color: var(--gray);
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.donate-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.donate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.donate-card.featured {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(21, 41, 55, 0.25);
}

.donate-card.featured:hover {
    transform: scale(1.08);
}

.amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.donate-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.donate-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.donate-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    opacity: 0.5;
    filter: grayscale(1);
}

.payment-logos img {
    height: 24px;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
    line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {

    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .journey {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-overlay {
        width: 100%;
        clip-path: none;
        opacity: 0.9;
    }

    .audio-box {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}