/* Enhanced Glassmorphism Design System */
:root {
    /* Light Theme */
    --primary-color: #3b82f6;
    --secondary-color: #1e293b;
    --accent-color: #8b5cf6;
    --ai-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --background-color: #f0f4f8;
    --surface-color: rgba(255, 255, 255, 0.12);
    /* Enhanced glassmorphism */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --border-color: rgba(59, 130, 246, 0.3);
    --border-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(59, 130, 246, 0.2));
    --card-hover-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 30px rgba(59, 130, 246, 0.3);
    --glow-color: rgba(139, 92, 246, 0.7);
    --circuit-color: rgba(59, 130, 246, 0.6);

    /* Uniform Text Shadows */
    --text-shadow-heading: 0 2px 12px rgba(0, 0, 0, 0.4);
    --text-shadow-body: 0 1px 8px rgba(0, 0, 0, 0.3);
    --text-shadow-accent: 0 2px 10px rgba(59, 130, 246, 0.4);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --glass-blur: 32px;
    --glass-saturation: 180%;
}

[data-theme="dark"] {
    --primary-color: #60a5fa;
    --accent-color: #d8b4fe;
    --ai-gradient: linear-gradient(135deg, #60a5fa 0%, #d8b4fe 100%);
    --background-color: #030712;
    --surface-color: rgba(15, 23, 42, 0.12);
    /* Enhanced glassmorphism */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border-color: rgba(96, 165, 250, 0.3);
    --border-gradient: linear-gradient(145deg, rgba(96, 165, 250, 0.4), rgba(216, 180, 254, 0.2));
    --card-hover-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(96, 165, 250, 0.4);
    --glow-color: rgba(216, 180, 254, 0.9);
    --circuit-color: rgba(96, 165, 250, 0.7);

    /* Uniform Text Shadows */
    --text-shadow-heading: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(96, 165, 250, 0.3);
    --text-shadow-body: 0 1px 10px rgba(0, 0, 0, 0.7), 0 0 12px rgba(96, 165, 250, 0.2);
    --text-shadow-accent: 0 2px 12px rgba(96, 165, 250, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(0deg,
            rgba(59, 130, 246, 0.015),
            rgba(59, 130, 246, 0.015) 2px,
            transparent 2px,
            transparent 4px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Uniform Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-shadow: var(--text-shadow-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--ai-gradient);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* Header & Navigation - Enhanced Glassmorphism */
header {
    background: var(--surface-color);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid;
    border-image: var(--border-gradient) 1;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-image {
    width: 48px;
    height: 48px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .logo-image {
    background: rgba(30, 41, 59, 0.95);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.5), 0 0 25px rgba(216, 180, 254, 0.4);
    border-color: rgba(96, 165, 250, 0.5);
}

.logo:hover .logo-image {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 6px 25px var(--glow-color), 0 0 35px var(--glow-color);
}

.logo span {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.logo:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    text-shadow: var(--text-shadow-body);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 12px var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--ai-gradient);
    transition: width 0.3s ease;
    box-shadow: 0 0 12px var(--accent-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.theme-toggle {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.65rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--ai-gradient);
    border-color: var(--accent-color);
    color: white;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
}

/* Hero Section */
.hero {
    padding: 200px 0 160px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.06em;
    filter: drop-shadow(0 0 25px var(--glow-color));
}

.hero .tagline {
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    min-height: 1.6em;
    text-shadow: var(--text-shadow-heading);
}

.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: var(--ai-gradient);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 350px;
    height: 350px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--glow-color);
    border-color: white;
}

/* About Section - Enhanced Glassmorphism */
.about-content {
    background: var(--surface-color);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    padding: 3.5rem;
    border-radius: 1.2rem;
    border: 2px solid;
    border-image: var(--border-gradient) 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ai-gradient);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-content:hover::before {
    transform: translateX(100%);
}

.about-content:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px var(--glow-color);
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    text-shadow: var(--text-shadow-body);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--surface-color);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    border-radius: 1.2rem;
    overflow: hidden;
    border: 2px solid;
    border-image: var(--border-gradient) 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--circuit-color) 1.5px, transparent 1.5px),
        linear-gradient(to right, var(--circuit-color) 1px, transparent 1px);
    background-size: 30px 30px, 120px 100%;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--accent-color);
}

.project-card:hover::before {
    opacity: 0.12;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.2;
    }
}

.project-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.project-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
}

.project-content p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: var(--text-shadow-body);
}

.project-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
    text-shadow: var(--text-shadow-accent);
}

.project-link:hover {
    gap: 0.9rem;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--glow-color);
}

/* Skills Section */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-tag {
    background: var(--surface-color);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    color: var(--text-primary);
    padding: 0.85rem 1.7rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
    border-image: var(--border-gradient) 1;
    transition: all 0.3s ease;
    cursor: default;
    text-shadow: var(--text-shadow-body);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.skill-tag:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 0 30px var(--glow-color);
    background: var(--ai-gradient);
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Contact Section - Enhanced Glassmorphism */
.contact {
    text-align: center;
    background: var(--surface-color);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    border-top: 2px solid;
    border-image: var(--border-gradient) 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow-body);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 2px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.project-card:nth-child(1) {
    transition-delay: 0ms;
}

.project-card:nth-child(2) {
    transition-delay: 100ms;
}



/* ============================================ */
/* COMPREHENSIVE RESPONSIVE DESIGN */
/* ============================================ */

/* ============================================ */
/* COMPREHENSIVE RESPONSIVE DESIGN */
/* ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero .tagline {
        font-size: 1.4rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .about-content,
    .project-content {
        padding: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {

    /* Typography Scaling */
    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: -0.04em;
    }

    .hero .tagline {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .section {
        padding: 60px 0;
    }

    /* Navigation - Hide links */
    .nav-links a:not(.theme-toggle) {
        display: none;
    }

    .nav-links {
        gap: 0;
    }

    /* Logo Scaling */
    .logo {
        font-size: 1.3rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    /* Single Column Layouts */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skills-grid {
        justify-content: center;
    }

    /* Card Padding Adjustments */
    .about-content {
        padding: 2rem;
    }

    .project-content {
        padding: 2rem;
    }

    .about-content h2,
    .section h2 {
        font-size: 2rem;
    }

    .project-content h3 {
        font-size: 1.4rem;
    }

    /* Button Sizing */
    .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Contact Section */
    .contact p {
        font-size: 1.05rem;
        padding: 0 1rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max- width: 640px) {

    /* Further Typography Reduction */
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    /* Compact Spacing */
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Logo */
    .logo {
        font-size: 1.1rem;
    }

    .logo-image {
        width: 36px;
        height: 36px;
    }

    /* Cards */
    .about-content,
    .project-content {
        padding: 1.8rem;
        border-radius: 1rem;
    }

    .about-content h2,
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }

    .project-content p {
        font-size: 1rem;
    }

    /* Skills */
    .skill-tag {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Theme Toggle */
    .theme-toggle {
        padding: 0.55rem;
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }

    /*  Footer */
    footer {
        font-size: 0.85rem;
        padding: 1.5rem 0;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {

    /* Hero Section - Mobile Optimized */
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero .tagline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    /* Very Compact Spacing */
    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 12px;
    }

    /* Header */
    header {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
        padding: 4px;
    }

    .logo span {
        display: none;
        /* Hide full name on very small screens */
    }

    /* Cards - Maximum Compactness */
    .about-content,
    .project-content {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .about-content h2,
    .section h2 {
        font-size: 1.6rem;
        margin-bottom: 0.7rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .project-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .project-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .project-link {
        font-size: 0.9rem;
    }

    /* Skills - Smaller Tags */
    .skill-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        border-radius: 1.5rem;
    }

    /* Contact */
    .contact p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* Projects Grid */
    .projects-grid {
        gap: 1.2rem;
    }

    /* Skills Grid - Responsive Wrapping */
    .skills-grid {
        gap: 0.7rem;
    }

    /* Theme Toggle */
    .theme-toggle {
        padding: 0.5rem;
    }

    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }

    /* Scroll Progress */
    .scroll-progress-container {
        height: 2px;
    }

    /* Increased opacity and enhanced shadows for mobile */
    :root {
        --surface-color: rgba(255, 255, 255, 0.20);
    }

    [data-theme="dark"] {
        --surface-color: rgba(15, 23, 42, 0.20);
    }

    /* Enhanced text shadows for mobile */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    }

    [data-theme="dark"] h1,
    [data-theme="dark"] h2,
    [data-theme="dark"] h3,
    [data-theme="dark"] h4,
    [data-theme="dark"] h5,
    [data-theme="dark"] h6 {
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(96, 165, 250, 0.4);
    }

    .about-content p,
    .project-content p,
    .contact p,
    .skill-tag {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    }

    [data-theme="dark"] .about-content p,
    [data-theme="dark"] .project-content p,
    [data-theme="dark"] .contact p,
    [data-theme="dark"] .skill-tag {
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(96, 165, 250, 0.25);
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 0.9rem;
    }

    .about-content,
    .project-content {
        padding: 1.2rem;
    }

    .about-content h2,
    .section h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 40px 0;
    }
}