/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 220px; /* Account for fixed headers - updated for new navbar position */
    /* Improve iOS scrolling */
    -webkit-overflow-scrolling: touch;
    /* Prevent zoom on double tap */
    touch-action: manipulation;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Site Header */
.site-header {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(0); /* Force hardware acceleration on iOS */
    will-change: transform;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.5px;
}

.site-tagline {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 100px; /* Increased to avoid overlap with site header */
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0); /* Force hardware acceleration on iOS */
    will-change: transform;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Improve touch targets for mobile */
    padding: 0.5rem 0.25rem;
    min-height: 44px; /* iOS recommended touch target size */
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    text-decoration: none;
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: capitalize;
    /* Improve touch targets for mobile */
    padding: 0.5rem 0.25rem;
    min-height: 44px; /* iOS recommended touch target size */
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: #ffffff;
}

/* Main Content */
.main-content {
    margin-top: 180px; /* Increased to account for larger navbar position */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 0 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

.hero-subtitle {
    font-weight: 500;
    color: #ffffff !important;
}

.cta-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid #666;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.main-profile-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-profile-photo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.main-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.main-profile-photo:hover img {
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.social-icon:hover {
    color: #1a1a1a;
}

/* Work Section */
.work-section {
    padding: 8rem 0 6rem 0;
    content-visibility: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ffffff;
}

.work-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.work-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    will-change: transform;
}

.work-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.work-item.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.work-item.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.work-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.work-description {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.work-period {
    color: #999999;
    font-size: 0.9rem;
}

.work-arrow {
    font-size: 1.5rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.work-item:hover .work-arrow {
    color: #1a1a1a;
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: #666;
}

.arrow {
    transition: transform 0.3s ease;
}

.view-all-link:hover .arrow {
    transform: translateX(5px);
}

/* AI Section */
.ai-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.ai-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-intro p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.ai-expertise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.ai-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-category h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.ai-category ul {
    list-style: none;
    padding: 0;
}

.ai-category li {
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.ai-category li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-size: 0.8rem;
}

.ai-category li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background-color: #111111;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.experience-map {
    max-width: 1200px;
    margin: 0 auto;
}

.regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.region {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.region h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.region p {
    color: #cccccc;
    line-height: 1.6;
}

/* Companies Section */
.companies-section {
    margin-top: 2rem;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    content-visibility: auto;
}

.companies-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

/* Logos Stream Animation */
.logos-stream {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.logos-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-logos 60s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    margin: 0 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: transform 0.2s ease;
    height: 110px;
    min-width: 180px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    will-change: transform;
}

.company-logo:hover {
    transform: scale(1.05);
}

/* Pause animation on hover */
.logos-stream:hover .logos-track {
    animation-play-state: paused;
}

.company-logo img {
    max-width: 90%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    background: #ffffff;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Carousel Section */
.carousel-section {
    padding: 0;
    margin: 6rem -2rem;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1200px;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.carousel-container {
    position: relative;
    width: 1200px;
    height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
    will-change: transform;
    transform: translateZ(0);
    overflow: visible;
}

.carousel-slide {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    will-change: transform;
    backface-visibility: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter 0.7s ease;
    filter: brightness(0.75) contrast(1.05);
}

.carousel-slide.active {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    transform: translate(-160px, -160px) scale(1.4);
    z-index: 10;
    border-width: 4px;
}

.carousel-slide.active img {
    filter: brightness(1) contrast(1.1);
}

.carousel-slide:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.carousel-slide:hover img {
    filter: brightness(1) contrast(1.1);
}

/* Carousel overlay for better contrast */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.03) 50%,
        rgba(0, 0, 0, 0.08) 100%
    );
    pointer-events: none;
}

/* Progress bar */
.carousel-progress {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.2s linear;
}

/* Carousel navigation dots (optional) */
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 8rem 0 6rem 0;
    content-visibility: auto;
}

.about-content {
    max-width: 800px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.about-note {
    font-style: italic;
    color: #999999 !important;
    font-size: 1rem !important;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    margin: 0 -2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.phone-numbers {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-numbers p {
    margin-bottom: 0.25rem;
}

.footer-credits {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 200px; /* Adjusted for mobile header heights - updated */
    }
    
    .site-header {
        padding: 0.8rem 0;
        /* Improve mobile fixed positioning */
        position: -webkit-sticky;
        position: sticky;
        position: fixed;
    }
    
    .navbar {
        top: 90px; /* Adjusted for mobile */
        /* Improve mobile fixed positioning */
        position: -webkit-sticky;
        position: sticky;
        position: fixed;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .site-name {
        font-size: 1.5rem;
        /* Improve text rendering on mobile */
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }
    
    .site-tagline {
        font-size: 0.8rem;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }
    
    .main-content {
        margin-top: 160px; /* Adjusted for mobile */
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .social-links {
        display: none;
    }
    
    .main-content {
        padding: 0 1rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .profile-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .work-section,
    .about-section {
        padding: 4rem 0;
    }
    
    .ai-section {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .ai-expertise {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-category {
        padding: 1.5rem;
    }
    
    .ai-intro p {
        font-size: 1rem;
    }
    
    .experience-section {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .regions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .region {
        padding: 1.5rem;
    }
    
    .work-item {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .work-arrow {
        align-self: flex-end;
    }
    
    .footer {
        margin: 0 -1rem;
    }
    
    .footer-cta h2 {
        font-size: 2rem;
    }
    
    /* Main profile photo responsive */
    .main-profile-photo {
        width: 250px;
        height: 250px;
    }
    
    /* Carousel responsive */
    .carousel-section {
        min-height: 1100px;
        margin: 4rem -1rem;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .carousel-container {
        width: 1100px;
        height: 1100px;
        overflow: visible;
    }
    
    .carousel-slide {
        width: 280px;
        height: 280px;
        background-color: #ffffff;
    }
    
    .carousel-slide.active {
        transform: translate(-140px, -140px) scale(1.25);
    }
    
    .carousel-progress {
        width: 150px;
        bottom: 1rem;
    }
    
    /* Companies responsive */
    .companies-section {
        margin-top: 1rem;
        padding-top: 1.5rem;
    }
    
    .company-logo {
        height: 80px;
        min-width: 130px;
        padding: 1rem 1.8rem;
        margin: 0 0.6rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%);
        border-radius: 10px;
    }
    
    .company-logo img {
        max-height: 45px;
        max-width: 85%;
        padding: 8px;
        background: #ffffff;
    }
    
    .logos-track {
        animation-duration: 45s;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 180px; /* Adjusted for smaller mobile header heights - updated */
    }
    
    .site-header {
        padding: 0.6rem 0;
        /* Enhanced mobile positioning for iPhone */
        position: -webkit-sticky;
        position: sticky;
        position: fixed;
        /* Add safe area for iPhone notch */
        padding-top: max(0.6rem, env(safe-area-inset-top));
    }
    
    .navbar {
        top: 80px; /* Adjusted for small mobile */
        /* Enhanced mobile positioning for iPhone */
        position: -webkit-sticky;
        position: sticky;
        position: fixed;
    }
    
    .site-name {
        font-size: 1.3rem;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        /* Better line height for iPhone */
        line-height: 1.2;
    }
    
    .site-tagline {
        font-size: 0.75rem;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        line-height: 1.3;
    }
    
    .main-content {
        margin-top: 140px; /* Adjusted for small mobile */
        /* Add safe area for iPhone bottom */
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .work-content h3 {
        font-size: 1.1rem;
    }
    
    .footer-cta h2 {
        font-size: 1.8rem;
    }
    
    .ai-category h3 {
        font-size: 1.1rem;
    }
    
    .ai-category li {
        font-size: 0.9rem;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    /* Main profile photo mobile */
    .main-profile-photo {
        width: 180px;
        height: 180px;
    }
    
    /* Carousel mobile */
    .carousel-section {
        min-height: 750px;
        margin: 3rem -1rem;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .carousel-container {
        width: 750px;
        height: 750px;
        overflow: visible;
    }
    
    .carousel-slide {
        width: 180px;
        height: 180px;
        background-color: #ffffff;
    }
    
    .carousel-slide.active {
        transform: translate(-90px, -90px) scale(1.15);
    }
    
    .carousel-progress {
        width: 120px;
    }
    
    /* Companies mobile */
    .company-logo {
        height: 70px;
        min-width: 110px;
        padding: 0.75rem 1.3rem;
        margin: 0 0.4rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
        border-radius: 8px;
    }
    
    .company-logo img {
        max-height: 38px;
        max-width: 80%;
        padding: 7px;
        background: #ffffff;
    }
    
    .companies-title {
        font-size: 1.2rem;
    }
    
    .logos-track {
        animation-duration: 30s;
    }
}

/* iPhone-specific improvements */
@media only screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    /* iPhone-specific fixes */
    .site-header {
        /* Ensure header stays fixed on iPhone Safari */
        position: fixed !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .navbar {
        /* Ensure navbar stays fixed on iPhone Safari */
        position: fixed !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Improve text rendering on iPhone */
    .site-name, .site-tagline, .nav-link, .social-link {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Better touch targets for iPhone */
    .nav-link, .social-link {
        min-height: 48px; /* Larger touch target for iPhone */
        padding: 0.75rem 0.5rem;
    }
    
    /* Prevent text selection issues on iPhone */
    .site-header, .navbar {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}
