@font-face {
    font-family: "JetBrains"; /* Choose a name for your font family */
    src:
        local("JetBrains"),
        url("/static/fonts/JetBrainsMono-SemiBold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-orange: #ff7f2a;
    --dark-navy: #1a2332;
    --soft-cream: #f5f0e8;
    --accent-red: #c73e1d;
}

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

body {
    font-family: 'JetBrains';
    line-height: 1.6;
    color: var(--dark-navy);
    background-color: var(--soft-cream);
}

/* Hero Section - Large Orange Space */
.hero-section {
    background-color: var(--primary-orange);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: rgba(26, 35, 50, 0.7);
    font-weight: 300;
    margin-bottom: 3rem;
}

.hero-a {
    color: rgba(26, 35, 50, 0.7);
}

/* Content Sections - Full Page */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--dark-navy);
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--dark-navy);
    max-width: 800px;
    margin-bottom: 2rem;
}

/* Two Column Layout - Full Page */
.two-column-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.column-left,
.column-right {
    padding: 3rem;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-left {
    background-color: var(--primary-orange);
    color: var(--dark-navy);
}

.column-right {
    background-color: var(--dark-navy);
    color: var(--soft-cream);
}

/* Accent Section - Full Page */
.accent-section {
    background-color: var(--dark-navy);
    color: var(--soft-cream);
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accent-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.accent-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
    color: var(--primary-orange);
}

.accent-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Card Grid - Full Page */
.card-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
}

.card-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card.clickable {
    cursor: pointer;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: contain;
}

.card-title {
    font-size: 1.5rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(26, 35, 50, 0.8);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.video-modal-close:hover {
    color: var(--primary-orange);
}

/* Split Section - Full Page */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-left {
    background-color: var(--primary-orange);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    background-color: var(--dark-navy);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--soft-cream);
}

/* Text Highlight */
.text-highlight {
    background-color: var(--primary-orange);
    color: var(--dark-navy);
    padding: 0.2rem 0.5rem;
    display: inline-block;
}

/* Decorative Element */
.decorative-line {
    width: 100px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 2rem 0;
}

.decorative-line.navy {
    background-color: var(--dark-navy);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-left,
    .split-right {
        padding: 4rem 2rem;
        min-height: 50vh;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Hide line breaks on larger screens */
@media all and (min-width: 768px) {
  .mobile-only-br {
    display: none;
  }
}

