/* =========================================
   CSS Variables & Design System - Modern Art Deco Theme
   ========================================= */
:root {
    /* Color Palette - Blue, Green, Gold */
    --bg-base: #1a2230;
    /* Deep blue background */
    --bg-surface: #13302c;
    /* Green secondary for cards/surfaces */

    --text-main: #fcf9f2;
    /* Soft off-white for body text */
    --text-muted: #b5c0d0;
    /* Muted for secondary text */

    --accent-primary: #a48843;
    /* Gold Highlight */
    --accent-primary-hover: #8f7639;
    --accent-secondary: #ededeb;
    /* White for headings */

    --navy-glow: rgba(164, 136, 67, 0.15);
    /* Soft gold glow */
    --glass-border: rgba(164, 136, 67, 0.25);
    /* Subtle gold border */

    /* Typography */
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow: hidden;
    /* Prevent native scrollbars */
    position: relative;
    /* Custom scrollbar hiding for webkit as an extra measure */
}

::-webkit-scrollbar {
    display: none;
}



/* Typography & Links */
h1,
h2,
h3,
h4 {
    color: var(--accent-secondary);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

ul {
    list-style: none;
}

/* Layout Core */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.header-line {
    width: 80px;
    height: 2px;
    background: var(--accent-primary);
    position: relative;
    margin-top: 15px;
}

.header-line::before,
.header-line::after {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--accent-primary);
}

.header-line::before {
    width: 40px;
    top: -6px;
    left: 0;
}

.header-line::after {
    width: 60px;
    bottom: -6px;
    left: 0;
}

/* =========================================
   Components
   ========================================= */
/* Buttons */
.btn-primary,
.btn-secondary,
.btn-gold {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid var(--accent-primary);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: #000;
}

.btn-gold {
    background-color: transparent;
    color: var(--accent-primary);
}

.btn-gold:hover {
    background-color: #8f7639;
    color: var(--bg-base);
    border-color: #8f7639;
}

/* Glass Panels (Now geometric Art Deco panels) */
.glass-panel {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    position: relative;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(11, 19, 30, 0.95) 0%, rgba(11, 19, 30, 0) 100%);
    transition: all var(--transition-smooth);
}

/* Scrolled state removed to maintain uniform transparent header */

.nav-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent-secondary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a:not(.btn-primary) {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-links li a:not(.btn-primary):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

/* =========================================
   Scroll Slides Logic
   ========================================= */
#main {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    transform: translateY(100%);
    /* Default to starting below the viewport */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center all slides on screen by default */
}

.slide-section.active-slide {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 20;
    /* Bring active slide to front for interactions */
}

/* Slides that have already been passed (scrolled up) */
.slide-section.passed-slide {
    opacity: 1;
    transform: translateY(-100%);
    pointer-events: none;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    /* ensure it stays left/right if not overridden */
    align-items: center;
    justify-content: center;
    /* override flex-col centering from slide-section */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-text .greeting {
    color: var(--accent-primary);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-text .title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: var(--accent-primary);
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Abstract Hero Profile Picture Container (Geometric) */
.glass-orb {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: transparent;
    border: 2px solid var(--accent-primary);
    position: relative;
    padding: 15px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.glass-orb::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid var(--accent-primary);
    z-index: 10;
    pointer-events: none;
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   About & Skills
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.wheels-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.wheel-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 250px;
    min-width: 0;
}

.wheel-title {
    font-size: 1.2rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.skills-wheel-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.skills-wheel {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skill-item {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    min-width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    user-select: none;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
    transition: border-color var(--transition-smooth);
}

.skill-item i {
    margin-right: 12px;
    font-size: 1.05rem;
    opacity: 0.8;
}

/* Language Skills (Art Deco Gold) */
.skill-item.lang-skill.active {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.skill-item.lang-skill.active::before {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Tool & Framework Skills (Icy Blue / Teal to contrast Gold) */
.skill-item.tool-skill.active {
    color: #4db8ff;
    border-color: #4db8ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(77, 184, 255, 0.1);
}

.skill-item.tool-skill.active::before {
    border-color: rgba(77, 184, 255, 0.3);
}

/* General Hobbies (Fallback to gold if they don't have a category class) */
.skill-item:not(.lang-skill):not(.tool-skill).active {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.skill-item:not(.lang-skill):not(.tool-skill).active::before {
    border-color: rgba(212, 175, 55, 0.3);
}

/* =========================================
   Experience Section (Timeline)
   ========================================= */
.timeline-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    /* Fix edge clipping */
    padding: 80px 0;
    /* Vertical breathing room */
    /* Hide scrollbar but keep functionality */
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;

    /* Fade out the edges of the horizontal scroll area */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.timeline-wrapper:active {
    cursor: grabbing;
}

.timeline-wrapper::-webkit-scrollbar {
    display: none;
}

.timeline-container {
    display: flex;
    align-items: center;
    position: relative;
    width: max-content;
    min-width: 100%;
    padding: 0 20vw;
    /* Extremely wide ends so no box is ever cut off horizontally during scrolling */
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-line::before,
.timeline-line::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.timeline-line::before {
    left: 5vw;
}

.timeline-line::after {
    right: 5vw;
}

.timeline-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    /* Wider footprint means less cramping */
    height: 450px;
    /* Explicit height ensures container doesn't collapse */
    margin: 0 20px;
    /* Greater spread */
    flex-shrink: 0;
}

.timeline-point {
    width: 16px;
    height: 16px;
    background: var(--bg-surface);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.timeline-item:hover .timeline-point {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--accent-primary);
}

.timeline-content {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: center;
}

/* Base state for info Text */
.timeline-info {
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.timeline-date {
    display: block;
    color: var(--accent-primary);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.timeline-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
}

/* Hover Details Pane */
.timeline-details {
    position: absolute;
    left: 50%;
    width: 400px;
    /* Significantly wider detail boxes */
    transform: translateX(-50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    /* prevents lingering interaction */
    pointer-events: none;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility var(--transition-smooth);
    z-index: 10;
    text-align: left;
    background: var(--bg-surface);
    /* Force consistency */
}

.timeline-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.timeline-details ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.timeline-details li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.timeline-details li::before {
    content: "•";
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.timeline-details li:last-child {
    margin-bottom: 0;
}

/* Alternating positions: Top vs Bottom */

/* Odd items (1, 3, 5): 
   - Info (Title) goes visually BELOW the line
   - Details (Bullet Box) expands from visually ABOVE the line 
   We achieve this natively using absolute positioning away from the center line. */

.timeline-item:nth-child(odd) {
    justify-content: center;
}

/* Position Info Below */
.timeline-item:nth-child(odd) .timeline-info {
    position: absolute;
    top: 50%;
    margin-top: 40px;
}

/* Position Details Above */
.timeline-item:nth-child(odd) .timeline-details {
    bottom: 50%;
    margin-bottom: 40px;
    transform: translateX(-50%) translateY(20px) scale(0.95);
}

.timeline-item:nth-child(odd):hover .timeline-details {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.timeline-item:nth-child(odd):hover .timeline-info {
    opacity: 1;
    transform: translateY(8px) scale(1.05);
    /* Slide down away from line slightly */
}


/* Even items (2, 4, 6): 
   - Info (Title) goes visually ABOVE the line
   - Details (Bullet Box) expands from visually BELOW the line */

.timeline-item:nth-child(even) {
    justify-content: center;
}

/* Position Info Above */
.timeline-item:nth-child(even) .timeline-info {
    position: absolute;
    bottom: 50%;
    margin-bottom: 40px;
}

/* Position Details Below */
.timeline-item:nth-child(even) .timeline-details {
    top: 50%;
    margin-top: 40px;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
}

.timeline-item:nth-child(even):hover .timeline-details {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.timeline-item:nth-child(even):hover .timeline-info {
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
    /* Slide up away from line slightly */
}

/* =========================================
   Projects Section
   ========================================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Blur overlay for the projects section when a project card is hovered */
#projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 30, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: opacity var(--transition-smooth);
}

#projects:has(.project-card:hover)::before {
    opacity: 1;
}

#projects .container {
    position: relative;
    z-index: 10;
}

.project-card {
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 10;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-color: var(--accent-primary);
    z-index: 9999;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.project-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tech span {
    font-size: 0.75rem;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-base);
    background: var(--accent-primary);
    padding: 4px 10px;
}

.project-link {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

/* =========================================
   Contact & Footer
   ========================================= */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: auto;
    /* auto sets equal margins on top and bottom, centering exactly in flex-col */
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.large-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-cta .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.persistent-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    pointer-events: none;
    /* Let wheel scrolls pass through */
    z-index: 1000;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0) 100%);
}

.persistent-footer a {
    pointer-events: auto;
    /* Ensure links are still clickable */
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.footer-dot {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.4;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-primary);
    opacity: 1;
    transform: translateY(-3px);
}

/* =========================================
/* =========================================
   404 Page Styling
   ========================================= */
.error-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px);
    /* Account for navbar and footer roughly */
    text-align: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* =========================================
   Animations & Interactivity
   ========================================= */
/* Initial hidden state for scroll animations */
.slide-section:not(.active-slide) .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    /* Hold state for the slide out animation (0.8s) before resetting the elements instantly */
    transition: opacity 0s 0.8s, transform 0s 0.8s !important;
}

/* Base state - allows immediate transition when active */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* For backwards compatibility if any elements still use is-visible manually */
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial slide-in entrance for Hero elements */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(-50vw);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(50vw);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.slide-in-left {
    opacity: 0;
    /* Starts hidden */
    animation: slideInLeft 1.5s cubic-bezier(0, 0.9, 0.1, 1.05) forwards;
}

.slide-in-right {
    opacity: 0;
    /* Starts hidden */
    animation: slideInRight 1.5s cubic-bezier(0, 0.9, 0.1, 1.05) forwards;
}

/* =========================================
   Responsive Media Queries
   ========================================= */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 40px;
    }

    .hero-text .subtitle {
        margin: 0 auto 30px auto;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-image-container {
        display: none;
        /* Hide abstract orb on smaller screens to prioritize text */
    }

    .hero-text .title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple mobile hide for now -> can be toggled via JS */
    }

    .menu-toggle {
        display: flex;
    }

    .section-padding {
        padding: 60px 0;
    }
}