/* HLA Site - Color Reimagined Styles */

/* Font Face Declarations */
@font-face {
    font-family: 'Bahnschrift';
    src: url('../fonts/bahnschrift-webfont.woff') format('woff'),
         url('../fonts/BAHNSCHRIFT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SimSun';
    src: url('../fonts/simsun-webfont.woff') format('woff'),
         url('../fonts/SIMSUN.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Color Scheme */
:root {
    --smokey-brown: #241C22;
    --earth-brown: #856238;
    --tan: #8C7862;
    --yellow: #D5C67A;
    --blue: #052F5F;
    --dusk: #591600;
    
    /* Font sizes with automatic responsive scaling */
    --font-base: clamp(16px, 2.5vw, 22px); /* Start A Project */
    --font-small: clamp(14px, 2vw, 22px); /* Monday — Thursday */
    --font-medium: clamp(18px, 3vw, 26px); /* Bespoke Digital Solutions */
    --font-large: clamp(22px, 3.5vw, 32px); /* SP&D */
    --font-xlarge: clamp(26px, 4vw, 38px); /* Strategic Guidance for Business Excellence */
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 20px;
    scroll-behavior: smooth;
    height: 100%;
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Bahnschrift', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--smokey-brown);
    background-color: var(--smokey-brown);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Modern Animation System */
:root {
    --ease-in-out-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s;
    --transition-smooth: 0.3s;
    --transition-slow: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth Scroll Enhancement */
@supports (scroll-behavior: smooth) {
    html {
        scroll-padding-top: 100px;
    }
}

/* Site Background - Now scrolls with content */
.site-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: -1;
    background: url('../images/sitebackground.svg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    background-color: var(--smokey-brown);
}

/* Premium Navigation Bar */
.navbar {
    width: 100%;
    background-color: var(--smokey-brown);
    background-image: url('../images/navbarpattern.svg');
    background-size: cover;
    background-position: center;
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(213, 198, 122, 0.1);
    transition: all var(--transition-smooth) var(--ease-in-out-smooth);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 198, 122, 0.3), transparent);
    pointer-events: none; /* Prevent this decoration from blocking clicks */
}

.nav-container {
    max-width: 80%;
    height: 75px; /* Reduced by 25% from 147px */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px; /* Reduced by 25% from 80px */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

@media screen and (min-width: 769px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: flex-end;
        flex: 1;
    }
    
    .nav-menu .nav-link {
        color: var(--yellow);
        text-decoration: none;
        font-size: var(--font-base);
        font-family: 'Bahnschrift', sans-serif;
        transition: all var(--transition-smooth) var(--ease-in-out-smooth);
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        position: relative;
        font-weight: 500;
        letter-spacing: 0.3px;
        background: transparent;
        border: 1px solid transparent;
    }
    
    .nav-menu .nav-link:last-child {
        margin-right: -1.25rem;
    }
    
    
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--yellow), #f0e6a3);
        transition: all var(--transition-smooth) var(--ease-out-expo);
        transform: translateX(-50%);
        border-radius: 2px;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(213, 198, 122, 0.1);
        border-color: rgba(213, 198, 122, 0.2);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(213, 198, 122, 0.2);
    }
    
    .nav-menu .nav-link:hover::before {
        width: calc(100% - 1.5rem);
    }
    
    .nav-close {
        display: none;
    }
}

.nav-link {
    color: var(--yellow);
    text-decoration: none;
    font-size: var(--font-base);
    font-family: 'Bahnschrift', sans-serif;
    transition: opacity 0.3s ease;
}

/* Only apply hover effects on devices that can actually hover */
@media (hover: hover) and (pointer: fine) {
    .nav-link:hover {
        opacity: 0.8;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle img {
    width: clamp(34px, 7vw, 48px);
    height: clamp(34px, 7vw, 48px);
}

/* Force hamburger menu to show on small screens */
@media screen and (max-width: 900px) {
    .nav-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0.5rem 1rem;
    }

    .mobile-menu-toggle {
        display: block !important;
        position: relative;
        z-index: 999 !important; /* Below nav-menu */
        pointer-events: auto !important;
        touch-action: manipulation;
        transition: opacity 0.3s ease;
    }

    /* Hide hamburger when menu is active */
    .nav-menu.active ~ .mobile-menu-toggle,
    body:has(.nav-menu.active) .mobile-menu-toggle {
        opacity: 0;
        pointer-events: none;
    }

    /* Hide the regular nav menu on mobile and show drawer instead */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--smokey-brown) 0%, rgba(36, 28, 34, 0.95) 100%);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(213, 198, 122, 0.1);
        display: flex;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 1001;
        gap: 2rem;
        transition: right var(--transition-slow) var(--ease-out-expo);
        overflow-y: auto;
        pointer-events: auto;
    }

    .nav-menu.active {
        right: 0;
    }
}

/* Mobile Navigation Drawer - Only on mobile */
@media screen and (max-width: 768px) {
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--smokey-brown) 0%, rgba(36, 28, 34, 0.95) 100%);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(213, 198, 122, 0.1);
        display: flex;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 1001;
        gap: 2rem;
        transition: right var(--transition-slow) var(--ease-out-expo);
        overflow-y: auto;
        pointer-events: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--yellow);
        text-decoration: none;
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
        border-radius: 16px;
        transition: all var(--transition-smooth) var(--ease-in-out-smooth);
        border: 1px solid transparent;
        margin-left: 0;
        display: block;
        position: relative;
        font-weight: 500;
        letter-spacing: 0.5px;
        background: transparent;
        backdrop-filter: blur(10px);
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--yellow), #f0e6a3);
        transition: all var(--transition-smooth) var(--ease-out-expo);
        transform: translateY(-50%);
        border-radius: 2px;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(213, 198, 122, 0.1);
        border-color: rgba(213, 198, 122, 0.2);
        transform: translateX(8px);
        box-shadow: 0 4px 20px rgba(213, 198, 122, 0.15);
    }

    .nav-menu .nav-link:hover::before,
    .nav-menu .nav-link.active::before {
        width: 4px;
    }

    .nav-menu .portal-link {
        border: 2px solid var(--yellow);
        margin-top: 2rem;
        text-align: center;
        background-color: rgba(213, 198, 122, 0.05);
    }

    .nav-menu .portal-link:hover {
        background-color: var(--yellow);
        color: var(--smokey-brown);
    }

    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-close img {
        width: 24px;
        height: 24px;
        filter: invert(88%) sepia(21%) saturate(935%) hue-rotate(5deg) brightness(95%) contrast(89%);
    }
}

/* Main Container */
.main-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 50px 2rem; /* Proportional to 80px */
}

/* Premium Content Bubbles */
.content-bubble {
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    transform: translateY(0);
    transition: all var(--transition-smooth) var(--ease-in-out-smooth);
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
}

/* Only apply hover effects on devices that can actually hover */
@media (hover: hover) and (pointer: fine) {
    .content-bubble:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    }
}

.bubble-tan {
    background-color: var(--tan);
    box-shadow: 0 0 30px var(--blue);
}

.bubble-dark {
    background-color: var(--smokey-brown);
    box-shadow: 0 0 30px var(--blue);
}

.bubble-brown {
    background-color: var(--earth-brown);
    box-shadow: 0 0 30px var(--dusk);
}

.bubble-image {
    background-color: var(--tan);
    box-shadow: 0 0 30px var(--dusk);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    transition: all var(--transition-smooth) var(--ease-in-out-smooth);
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
    overflow: hidden;
}

/* Only apply hover effects on devices that can actually hover */
@media (hover: hover) and (pointer: fine) {
    .bubble-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(89, 22, 0, 0.25) !important;
    }
}

.bubble-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.bubble-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Specific Image Bubble Layouts */
.laptop-charts-bubble {
    width: 80%;
    max-width: 500px;
    align-self: start;
    padding: 1rem;
    margin: 0 auto;
}

.laptop-charts-bubble img {
    width: 100%;
    height: auto;
}

.programming-site-bubble {
    width: 80%;
    max-width: 500px;
    align-self: end;
    justify-self: center;
    margin-bottom: 3rem;
    padding: 1rem;
}

.programming-site-bubble img {
    width: 100%;
    height: auto;
}

.whole-package-bubble {
    height: 40vw !important;
    max-height: 650px !important;
    min-height: 400px !important;
    overflow: hidden;
}

.strategic-planning-bubble {
    height: clamp(400px, 45vw, 700px);
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 3rem);
    overflow: hidden;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
}

.strategic-planning-bubble h2 {
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    word-wrap: break-word;
    line-height: 1.2;
    white-space: normal;
    width: 100%;
}

.strategic-planning-bubble .bubble-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    width: 100%;
}

.strategic-planning-bubble p {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    margin: 0;
    line-height: 1.6;
}

.strategic-planning-bubble .text-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 2rem);
    margin-top: clamp(1rem, 2vw, 2rem);
    min-width: clamp(150px, 20vw, 250px);
}

.strategic-planning-bubble .text-container a {
    display: block;
    text-align: center;
    white-space: nowrap;
}

/* Apply same styles to The Whole Package bubble */
.whole-package-bubble {
    height: clamp(400px, 45vw, 700px);
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 3rem);
    overflow: hidden;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
}

.whole-package-bubble h2 {
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    word-wrap: break-word;
    line-height: 1.2;
    white-space: normal;
    width: 100%;
}

.whole-package-bubble .bubble-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    width: 100%;
}

.whole-package-bubble p {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    margin: 0;
    line-height: 1.6;
}

.whole-package-bubble .text-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 2rem);
    margin-top: clamp(1rem, 2vw, 2rem);
    min-width: clamp(150px, 20vw, 250px);
}

.whole-package-bubble .text-container a {
    display: block;
    text-align: center;
    white-space: nowrap;
}

/* Typography */
h1 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: var(--font-xlarge);
    color: var(--blue);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(5, 47, 95, 0.2);
}

h2 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: var(--font-large);
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

h3 {
    font-family: 'SimSun', serif;
    font-size: var(--font-large);
    color: var(--smokey-brown);
    margin-bottom: 1rem;
}

.text-yellow {
    color: var(--yellow);
}

.text-dark {
    color: var(--smokey-brown);
}

.text-brown {
    color: var(--earth-brown);
}

/* Premium Text Container Button */
.text-container {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, #e6d085 100%);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    transform: translateY(0);
    transition: all var(--transition-smooth) var(--ease-in-out-smooth);
    box-shadow: 0 4px 15px rgba(213, 198, 122, 0.3);
    overflow: hidden;
    cursor: pointer;
}

.text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow) var(--ease-out-expo);
}

/* Only apply hover effects on devices that can actually hover */
@media (hover: hover) and (pointer: fine) {
    .text-container:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(213, 198, 122, 0.4);
    }

    .text-container:hover::before {
        left: 100%;
    }
}

.text-container:active {
    transform: translateY(0);
}


.text-container a {
    color: var(--blue);
    text-decoration: none;
    font-family: 'Bahnschrift', sans-serif;
    font-size: var(--font-base);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(5, 47, 95, 0.2);
    position: relative;
    z-index: 2;
}

/* Grid Layout for Content Sections */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

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

.two-column-reverse {
    grid-template-columns: 1fr 1fr;
    align-items: end;
}

/* Hero Section */
.hero-bubble {
    width: 100%;
    margin: 0 auto 3rem;
    text-align: center;
    padding: .75rem 3rem .75rem;
}

.hero-title {
    font-size: var(--font-medium);
    color: var(--blue);
    font-family: 'Bahnschrift', sans-serif;
    text-shadow: 0 0 5px rgba(5, 47, 95, 0.2);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: var(--font-xlarge);
    color: var(--smokey-brown);
    font-family: 'SimSun', serif;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hero-description {
    font-size: var(--font-base);
    color: var(--smokey-brown);
    font-family: 'Bahnschrift', sans-serif;
    line-height: 1.7;
    max-width: 80%;
    margin: 0 auto .25rem;
}

/* Footer */
.footer {
    margin-top: 1rem;
    padding: 1rem 0;
}

.footer-bubble {
    max-width: 80%;
    height: 218px; /* Proportional to 350px at 2550px width */
    margin: 0 auto;
    background-color: var(--smokey-brown);
    box-shadow: 0 0 30px var(--blue);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.footer-logo {
    flex: 0 0 auto;
    margin-right: 3rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-link {
    color: var(--yellow);
    text-decoration: none;
    font-size: var(--font-base);
    transition: opacity 0.3s ease;
}

/* Only apply hover effects on devices that can actually hover */
@media (hover: hover) and (pointer: fine) {
    .footer-link:hover {
        opacity: 0.8;
    }
}

.footer-email {
    margin: 0.5rem 0;
}

.footer-email-link {
    color: var(--yellow);
    text-decoration: none;
    font-size: 1rem;
}

.footer-copyright {
    color: var(--yellow);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Business Hours Section */
.business-hours {
    color: var(--smokey-brown);
    font-family: 'Bahnschrift', sans-serif;
    font-size: var(--font-small);
    line-height: 2;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .nav-container {
        height: 90px; /* Reduced by 25% from 120px */
    }
    
    .nav-logo img {
        height: 55px; /* Proportional logo size for tablet */
    }
    
    .main-container {
        max-width: 90%;
    }
    
    .laptop-charts-bubble {
        width: 80%;
        max-width: 400px;
        padding: 1rem;
        margin: 0 auto;
    }
    
    .programming-site-bubble {
        width: 80%;
        max-width: 400px;
        padding: 1rem;
    }
    
}


@media screen and (max-width: 768px) {
    .nav-container {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 45px;
        padding: 0.5rem 1rem;
        margin: 0;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-logo img {
        height: 50px; /* Smaller logo for mobile */
    }
    
    
    .two-column,
    .two-column-reverse {
        grid-template-columns: 1fr;
    }
    
    /* Mobile order within each two-column section */
    .two-column .strategic-planning-bubble {
        order: 1;
    }
    
    .two-column .laptop-charts-bubble {
        order: 2;
    }
    
    .two-column-reverse .whole-package-bubble {
        order: 1;
    }
    
    .two-column-reverse .programming-site-bubble {
        order: 2;
    }
    
    .content-bubble {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .laptop-charts-bubble {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto;
        align-self: center !important;
        justify-self: center !important;
        padding: 1rem !important;
    }
    
    .programming-site-bubble {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto;
        align-self: center !important;
        justify-self: center !important;
        padding: 1rem !important;
    }
    
    .laptop-charts-bubble img,
    .programming-site-bubble img {
        width: 100% !important;
        height: auto !important;
    }
    
    .strategic-planning-bubble,
    .whole-package-bubble {
        height: auto !important;
        min-height: 400px !important;
    }
    
    .hero-bubble {
        padding: 1rem 2rem .75rem;
    }
    
    .footer-bubble {
        height: auto;
        min-height: 180px;
        padding: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .text-container {
        width: 100%;
        max-width: 300px;
    }
}


@media screen and (max-width: 480px) {
    .main-container {
        max-width: 95%;
        padding: 30px 1rem;
    }
    
    .content-bubble {
        padding: 2rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}