/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Prevent individual element zoom issues */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html {
    /* Consistent text rendering across devices */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Base font size for consistent scaling */
    font-size: 16px;
    /* Allow natural browser zoom behavior */
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    /* Prevent horizontal scroll */
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #dcc8a8 0%, #eedcc2 100%) !important;
    color: #333;
    height: 90px !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block !important;
    min-height: 90px !important;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: calc(100% - 60px);
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2d2d2d;
    white-space: nowrap;
    text-align: left;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin-left: auto;
    padding-right: 20px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #DAA520;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.15)), 
                url('../images/piano boy.jpg') center 25%/cover;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: right;
    color: white;
    margin-top: 0;
    padding-top: calc(90px + 2vh);
    padding-right: 8vw;
    position: relative;
}

.hero-content h2 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-style: italic;
    position: relative;
    /* Fallback color for all browsers - bright gold */
    color: #FFEF00;
    /* Multi-layered text shadows for metallic gold effect with prominent relief outline */
    text-shadow: 
        /* Bold dark gray outline for definition */
        -2px -2px 0px #2a2a2a,
        2px -2px 0px #2a2a2a,
        -2px 2px 0px #2a2a2a,
        2px 2px 0px #2a2a2a,
        -3px 0px 0px #2a2a2a,
        3px 0px 0px #2a2a2a,
        0px -3px 0px #2a2a2a,
        0px 3px 0px #2a2a2a,
        /* Main depth shadow */
        4px 4px 0px #DAA520,
        5px 5px 0px #B8860B,
        6px 6px 0px #A0701B,
        7px 7px 0px #8B5A1B,
        /* Deep outer shadow for relief */
        8px 8px 20px rgba(0,0,0,0.9),
        /* Enhanced golden glow */
        0 0 25px rgba(255,239,0,0.7),
        0 0 40px rgba(255,215,0,0.5),
        /* Bright highlight */
        -1px -1px 1px rgba(255,255,255,0.9);
    line-height: 1.2;
    letter-spacing: 4px;
    white-space: nowrap;
    position: absolute;
    top: calc(90px + 0.5vh);
    right: 1.2vw;
    
    /* Enhanced gold gradient for Webkit browsers */
    background: linear-gradient(45deg, 
        #DAA520 0%,
        #FFEF00 25%,
        #FFFFCC 50%,
        #FFEF00 75%,
        #DAA520 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -10px;
    width: 80px;
    height: 50px;
    transform: rotate(-15deg);
    background-image: url('../images/musical-notes.png');
    background-size: contain;
    background-repeat: no-repeat;
}


.hero-subtitle {
    display: none;
}

.hero-description {
    margin-bottom: 2rem;
    max-width: 500px;
    position: absolute;
    bottom: 4vh;
    right: 37vw;
    text-align: left;
    color: #4A2C17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    line-height: 1.4;
}

.hero-services-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.85) 0%, rgba(255, 215, 0, 0.75) 50%, rgba(218, 165, 32, 0.85) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(218, 165, 32, 0.9);
    backdrop-filter: blur(2px);
}

.hero-services-list li {
    margin-bottom: 0.3rem;
    color: #2d2d2d;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.cta-buttons {
    position: absolute;
    bottom: 2vh;
    right: 6vw;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Scrolling services banner */
.scrolling-banner {
    position: absolute;
    top: calc(90px + 8vh);
    right: -5vw;
    width: 1100px;
    height: 40px;
    z-index: 15;
    pointer-events: none;
    opacity: 0.9;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B2635;
    text-shadow: 
        2px 2px 0px #5D1A22,
        3px 3px 6px rgba(0,0,0,0.6),
        0 0 15px rgba(139, 38, 53, 0.4);
    letter-spacing: 3px;
    white-space: nowrap;
    animation: scroll-text 50s linear infinite;
    line-height: 40px;
}

@keyframes scroll-text {
    0% {
        transform: translateX(1100px);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Video Thumbnails */
.video-thumbnails {
    position: absolute !important;
    bottom: 8vh !important;
    right: 6vw !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    z-index: 20;
    width: 480px !important;
}

.video-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-caption {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 20;
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 225px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.video-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-1 video {
    object-position: bottom;
}

.video-2 video {
    object-position: top;
}


.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 10px 8px 5px;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 250px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(145deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    color: white;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    border: 1px solid #B8860B;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #FFEF00 0%, #B8860B 50%, #A0701B 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 0 20px rgba(218, 165, 32, 0.5);
}

.btn-secondary {
    background: linear-gradient(145deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    color: white;
    border: 1px solid #B8860B;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #FFEF00 0%, #B8860B 50%, #A0701B 100%);
    border-color: #A0701B;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 0 20px rgba(218, 165, 32, 0.5);
}

/* Sections */
section {
    padding: 80px 0;
}

.about {
    background: #f9f9f9;
}

.about h2, .services h2, .testimonials h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #DAA520;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.qualifications {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.qualifications li {
    font-size: 1.1rem;
    padding: 8px 0;
    color: #2d2d2d;
}

/* English Tutoring Banner */
.english-tutoring-banner {
    position: relative;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 0 auto 3rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    border: 2px solid #B8860B;
    font-weight: bold;
    z-index: 10;
    position: relative;
}

.new-badge {
    background: #FF4444;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 5px rgba(255, 68, 68, 0.3);
}

.banner-text {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.service-card p {
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 3px 0;
    color: #555;
    font-size: 0.9rem;
}

.service-card li:before {
    content: "♪ ";
    color: #DAA520;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.testimonial-card cite {
    color: #DAA520;
    font-weight: bold;
}

/* Contact - Enhanced */
.contact-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-enhanced h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.contact-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #555;
    font-style: italic;
}

/* Enhanced Contact Details */
.contact-details-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #DAA520;
}

.contact-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-text strong {
    font-size: 1.2rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.contact-info-text a {
    color: #DAA520;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #B8860B;
    text-decoration: underline;
}

.contact-info-text span {
    color: #555;
    font-size: 1.1rem;
}

/* Enhanced Lesson Options */
.lesson-options-enhanced {
    background: linear-gradient(135deg, #f9f9f9 0%, #eedcc2 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.lesson-options-enhanced h4 {
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 2rem;
    text-align: center;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.lesson-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.lesson-item:hover {
    transform: translateY(-3px);
}

.lesson-item.highlight {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: white;
    font-weight: bold;
}

.lesson-item.highlight .lesson-price {
    color: white;
}

.lesson-label {
    font-weight: 600;
    color: #2d2d2d;
}

.lesson-item.highlight .lesson-label {
    color: white;
}

.lesson-price {
    font-weight: bold;
    color: #DAA520;
}

/* Footer */
footer {
    background: #2d2d2d;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Comprehensive Responsive Design for All Screen Sizes */

/* Large desktops (1600px+) */
@media (min-width: 1600px) {
    .hero-content h2 {
        font-size: 4.2rem;
    }
    .video-thumbnails {
        width: 520px !important;
    }
    .container {
        max-width: 1400px;
    }
}

/* Standard desktops (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .hero-content h2 {
        font-size: 3.6rem;
    }
    .video-thumbnails {
        width: 460px !important;
    }
    .hero-description {
        right: 36vw;
    }
}

/* Small laptops and large tablets (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-content h2 {
        font-size: 3.2rem;
        right: 2vw;
    }
    .video-thumbnails {
        width: 400px !important;
        right: 4vw !important;
        bottom: 10vh !important;
    }
    .hero-description {
        right: 33vw;
        max-width: 420px;
        font-size: 1.3rem;
    }
    .nav-menu a {
        font-size: 1.3rem;
    }
    .btn-primary, .btn-secondary {
        width: 230px;
        font-size: 1rem;
    }
    .scrolling-banner {
        right: -3vw;
        width: 1000px;
    }
}

/* Very small laptops (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content h2 {
        font-size: 2.8rem;
        right: 3vw;
        top: calc(90px + 1vh);
    }
    .video-thumbnails {
        width: 340px !important;
        right: 3vw !important;
        bottom: 8vh !important;
    }
    .hero-description {
        right: 30vw;
        max-width: 380px;
        font-size: 1.2rem;
        bottom: 6vh;
    }
    .hero-services-list {
        font-size: 1rem;
        padding: 1.3rem 1.8rem;
    }
    .cta-buttons {
        right: 3vw;
        bottom: 3vh;
    }
    .btn-primary, .btn-secondary {
        width: 200px;
        font-size: 0.95rem;
        padding: 6px 16px;
    }
    .nav-menu a {
        font-size: 1.2rem;
    }
    .scrolling-banner {
        right: -2vw;
        width: 900px;
        font-size: 1.6rem;
    }
}

/* Mobile First: Smartphones (max-width: 767px) */
@media (max-width: 767px) {
    /* Hide scrolling banner on mobile for cleaner layout */
    .scrolling-banner {
        display: none;
    }
    
    /* Navigation - Hamburger Menu */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
        height: 70px;
    }
    
    .navbar {
        height: 70px !important;
        min-height: 70px !important;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .nav-menu {
        display: none; /* Hide desktop menu on mobile */
    }
    
    /* Mobile Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        padding: 100px 15px 30px;
        background-position: center 20%;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        position: static;
        margin-bottom: 0;
        text-align: center;
        right: auto;
        top: auto;
        white-space: normal;
        letter-spacing: 2px;
    }
    
    /* Mobile Services List */
    .hero-description {
        position: static;
        width: 100%;
        max-width: none;
        margin: 0;
        text-align: center;
        right: auto;
        bottom: auto;
        order: 2;
    }
    
    .hero-services-list {
        font-size: 0.95rem;
        padding: 1.5rem;
        margin: 0;
        line-height: 1.4;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(218, 165, 32, 0.9) 0%, rgba(255, 215, 0, 0.8) 50%, rgba(218, 165, 32, 0.9) 100%);
    }
    
    .hero-services-list li {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Mobile Video Layout */
    .video-thumbnails {
        position: static !important;
        width: 100% !important;
        max-width: 320px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        order: 3;
    }
    
    .video-thumbnail {
        height: 200px;
        width: 100%;
    }
    
    .video-caption {
        font-size: 1rem;
        padding: 10px 15px;
        margin-bottom: 0.5rem;
    }
    
    /* Mobile Call-to-Action Buttons */
    .cta-buttons {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        order: 4;
        margin-top: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1.1rem;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    /* Mobile Content Sections */
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Mobile About Section */
    .about h2, .services h2, .testimonials h2, .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Mobile Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Mobile Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Mobile Contact */
    .contact-details-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .lesson-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .lesson-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    /* Mobile English Banner */
    .english-tutoring-banner {
        padding: 12px 20px;
        margin-bottom: 2rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 90px 10px 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle .bar {
        width: 22px;
        height: 2px;
    }
    
    .hero-services-list {
        font-size: 0.9rem;
        padding: 1.2rem;
    }
    
    .hero-services-list li {
        font-size: 0.9rem;
    }
    
    .video-thumbnails {
        max-width: 280px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 260px;
        font-size: 1rem;
        padding: 10px 18px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .about h2, .services h2, .testimonials h2, .contact h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 767px) {
    /* Increase tap target sizes */
    a, button, .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active {
        background: linear-gradient(135deg, rgba(220, 200, 168, 0.98) 0%, rgba(238, 220, 194, 0.98) 100%);
        backdrop-filter: blur(10px);
    }
    
    /* Improve readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Video controls are touch-friendly by default */
    video {
        outline: none;
    }
    
    /* Close mobile menu when clicking outside */
    .nav-menu.active + .hero {
        pointer-events: none;
    }
}

/* Force deployment refresh - Mobile optimized */
