/*
Theme Name: The Nation ATL
Theme URI: https://thenationatl.com
Description: Thème WordPress premium pour serveur FiveM Serious RP - The Nation: ATL
Author: The Nation Team
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: thenationatl
*/

/* ==========================================
   VARIABLES & RESET
   ========================================== */

:root {
    --primary-red: #8B0000;
    --dark-green: #1a3d1a;
    --anthracite: #1a1a1a;
    --deep-black: #0a0a0a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep-black);
    color: var(--gray-100);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.font-title {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

.text-red {
    color: var(--primary-red);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-red);
    margin: 0;
}

.logo p {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.15em;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-400);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    margin-top: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-red);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--deep-black);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-icon svg {
    width: 64px;
    height: 64px;
    color: var(--primary-red);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.hero-divider {
    height: 4px;
    width: 128px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    margin-top: 4rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: var(--gray-600);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: scale(1.1);
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #5a0000 100%);
    color: white;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(139, 0, 0, 0.5);
}

.btn-secondary:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: var(--primary-red);
}

/* ==========================================
   PRESENTATION SECTION
   ========================================== */

.presentation-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--gray-900) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(139, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(139, 0, 0, 0.5);
}

.feature-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary-red);
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.presentation-content {
    text-align: center;
    margin-top: 5rem;
}

.presentation-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.presentation-text p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==========================================
   SECTION TITLES
   ========================================== */

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
}

/* ==========================================
   STREET DIVIDER
   ========================================== */

.street-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    margin: 4rem auto;
    max-width: 1200px;
}

/* ==========================================
   UNIVERSE SECTION
   ========================================== */

.universe-section {
    padding: 6rem 0;
    background: var(--gray-900);
}

.universe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    align-items: start;
}

.universe-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.universe-block {
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
}

.universe-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.universe-block p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-block {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.quote-block p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.8;
}

/* ==========================================
   RULES SECTION
   ========================================== */

.rules-section {
    padding: 6rem 0;
    background: var(--deep-black);
}

.rules-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.rules-intro p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rule-card {
    background: rgba(26, 26, 26, 0.6);
    border-left: 3px solid var(--primary-red);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.rule-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-left-width: 5px;
}

.rule-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.rule-card ul {
    list-style: none;
}

.rule-card li {
    color: var(--gray-300);
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.rule-card li::before {
    content: '▸';
    color: var(--primary-red);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.zero-tolerance {
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid rgba(139, 0, 0, 0.5);
    padding: 2rem;
    backdrop-filter: blur(5px);
    text-align: center;
}

.zero-tolerance h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.zero-tolerance p {
    color: var(--gray-300);
    line-height: 1.8;
}

/* ==========================================
   FACTIONS SECTION
   ========================================== */

.factions-section {
    padding: 6rem 0;
    background: var(--gray-900);
}

.factions-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.factions-intro p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
}

.factions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faction-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(139, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faction-card:hover::before {
    opacity: 1;
}

.faction-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.faction-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.faction-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-red);
}

.faction-card[data-color="#8B0000"] .faction-dot {
    background: #8B0000;
}

.faction-card[data-color="#1a4d8f"] .faction-dot {
    background: #1a4d8f;
}

.faction-card[data-color="#2d5016"] .faction-dot {
    background: #2d5016;
}

.faction-card[data-color="#1e3a8a"] .faction-dot {
    background: #1e3a8a;
}

.faction-card[data-color="#991b1b"] .faction-dot {
    background: #991b1b;
}

.faction-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.faction-type {
    font-size: 0.75rem;
    color: #b91c1c;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.faction-description {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.faction-requirements {
    border-top: 1px solid var(--gray-800);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.requirements-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.faction-requirements p:last-child {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.faction-card .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   SHOP / TEBEX SECTION
   ========================================== */

.shop-section {
    padding: 6rem 0;
    background: var(--deep-black);
}

.shop-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.shop-intro p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
}

.tebex-container {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    border-radius: 4px;
}

.tebex-iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    border-radius: 4px;
}

.shop-notice {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 4px;
}

.shop-notice p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin: 0;
}

.shop-cta {
    text-align: center;
}

/* ==========================================
   WHITELIST SECTION
   ========================================== */

.whitelist-section {
    padding: 6rem 0;
    background: var(--gray-900);
}

.whitelist-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 1) 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 2.5rem;
    backdrop-filter: blur(5px);
}

.whitelist-intro {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.whitelist-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.whitelist-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--primary-red);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.whitelist-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
}

.whitelist-delay {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 6rem 0;
    background: var(--deep-black);
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 2rem;
    backdrop-filter: blur(5px);
    text-align: center;
}

.contact-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary-red);
    margin: 0 auto 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.contact-card .btn {
    width: 100%;
    justify-content: center;
}

.social-links {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.social-links p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-red);
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background: var(--deep-black);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

.footer-logo h3 {
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .universe-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .rules-grid,
    .factions-grid {
        grid-template-columns: 1fr;
    }

    .whitelist-content {
        padding: 1.5rem;
    }

    .tebex-iframe {
        min-height: 600px;
    }
    
    .shop-notice {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
}