/* =========================================
   ARODORA — DESIGN SYSTEM
   White Theme · Blue-Cyan Accent
   ========================================= */

/* === CUSTOM FONTS === */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* === CSS VARIABLES === */
:root {
    --white: #FFFFFF;
    --black: #081F2D;
    --gray-50: #0a2233;
    --gray-100: #0c2638;
    --gray-200: #112d40;
    --gray-300: #1a3d55;
    --gray-400: #3a6070;
    --gray-500: #8899a5;
    --gray-600: #aabbcc;
    --gray-700: #ccddee;
    --gray-800: #e0eaf0;

    --accent-start: #FF4D00;
    --accent-end: #FF7700;
    --accent-gradient: linear-gradient(135deg, var(--accent-start), var(--accent-end));

    --bg-primary: #081F2D;
    --bg-secondary: #0a2233;
    --text-primary: #FFFFFF;
    --text-secondary: #aabbcc;
    --text-muted: #6688aa;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --container: 1400px;
    --gutter: 16px;
    --section-pad: clamp(80px, 10vw, 140px);
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important;
}

/* === CUSTOM CURSOR === */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.15s ease;
    will-change: transform;
}

.custom-cursor.is-hover {
    transform: translate(-50%, -50%) scale(0.6);
    background: #FFFFFF;
}

.custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform, opacity, border;
}

.custom-cursor-ring.is-hover {
    opacity: 1;
    animation: cursor-pulse 1.8s infinite cubic-bezier(0.22, 1, 0.36, 1);
    border-color: rgba(255, 255, 255, 0.8);
}

@keyframes cursor-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
        border-width: 0px;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Gilroy', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent-start);
    color: var(--white);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}


h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* === LAYOUT === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

.section-alt {
    background: var(--bg-secondary);
}

/* === COMPONENTS === */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1;
    /* Tighter line height for better centering */
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 77, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--accent-start);
    color: var(--accent-start);
    transform: translateY(-2px);
}

.btn-black {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    padding: 12px 28px;
    font-size: 1.05rem;
    /* Match nav links */
}

.btn-black:hover {
    background: var(--gray-700);
    border-color: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

/* Glass */
.glass {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
}

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Text Gradient */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(8, 31, 45, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(8, 31, 45, 0.97);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    /* Logo left */
    align-items: center;
}

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

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 36px;
    margin-left: 50px;
    /* Space from logo */
    flex: 1;
    /* Take remaining space */
    align-items: center;
}

.nav-item-cta {
    margin-left: auto;
    /* Push to right */
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1;
    /* Vertical align fix */
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

.lang-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 8px 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
}

.lang-link.active {
    color: var(--text-primary);
}

.lang-link:hover:not(.active) {
    color: var(--white);
    opacity: 0.8;
}

.lang-divider {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.8rem;
    user-select: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-canvas-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    cursor: none;
}

#hero-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Wrapper for Single Slide Content */
.slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    z-index: 10;
}

.slide h1 {
    margin-bottom: 20px;
    max-width: 800px;
}

.slide p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 36px;
    color: var(--text-secondary);
}

.slide-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 14px 50px;
    min-width: 200px;
}



/* =========================================
   FEATURE CARDS (Hakkımızda, etc.)
   ========================================= */
.feature-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    text-align: center;
}

/* =========================================
   GAME CARDS
   ========================================= */
.game-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    height: 220px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-card-image .overlay-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.game-card-body {
    padding: 28px;
}

.game-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-start);
    margin-bottom: 10px;
}

.game-card-body h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-card-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* =========================================
   CONTACT FORM
   ========================================= */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-start);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    z-index: 10;
}

/* Typewriter Fade Animation */
.typewriter-fade .char {
    opacity: 0;
    display: inline-block;
    animation: typeFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes typeFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ABOUT IMAGE
   ========================================= */
.about-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    border-top: 1px solid var(--gray-200);
    padding: 48px 0;
    background: var(--bg-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: right;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
.mobile-break {
    display: none;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .mobile-break {
        display: inline;
    }

    .desktop-break {
        display: none;
    }

    .nav-links {
        margin-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center vertically */
        align-items: center;
        /* Center horizontally */
        position: fixed;
        /* Full screen */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Full viewport height */
        background: var(--bg-primary);
        padding: 80px var(--gutter) 40px;
        /* Top padding for navbar space */
        z-index: -1;
        /* Behind the navbar header (so toggle is clickable) */
        gap: 32px;

        /* Animation State */
        visibility: hidden;
        opacity: 0;
        transform: scale(0.95);
        /* Subtle scale effect */
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }

    .nav-links .nav-link {
        font-size: 2rem;
        /* Medium form */
        font-weight: 500;
        color: var(--text-primary);
        letter-spacing: -0.5px;
    }

    .nav-links .nav-link::after {
        display: none;
        /* Remove underline for this style */
    }

    .nav-item-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-item-lang {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Mobile Typography - Vertical Rhythm */
    .slide h1 {
        font-size: 2.8rem;
        /* Increased size */
        line-height: 1.1;
        letter-spacing: -1px;
        padding: 0 5px;
        margin-bottom: 24px;
        /* Force single words per line if needed, but <br> handles it better */
    }

    .slide p {
        font-size: 1.15rem;
        /* Larger text */
        line-height: 1.6;
        padding: 0 10px;
        max-width: 90%;
        /* Wider width */
        margin-left: auto;
        margin-right: auto;
        color: var(--text-secondary);
    }

    .hero {
        min-height: auto;
        /* Let content dictate height */
        padding: 140px 0 80px;
        /* More padding top/bottom */
        height: auto;
    }

    /* Mobile Buttons - Large Touch Targets */
    .slide-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 20px;
        font-size: 1.1rem;
        justify-content: center;
    }

    .mobile-toggle {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .slide {
        padding: 40px 20px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 8px;
    }

    .footer-social-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-social-title {
        text-align: center;
    }

    .hero {
        min-height: 90vh;
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}