/* Variables globales */
:root {
    --primary-color: #FF385C;
    --secondary-color: #222222;
    --accent-color: #00A699;
    --background-color: #ffffff;
    --text-color: #222222;
    --light-gray: #f7f7f7;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    background-color: white;
    padding: 1rem 2rem;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 80px;
    width: auto;
    filter: brightness(0);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF385C;
}

/* Section Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: #f8f9fa;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/Salon.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 58, 92, 0.3), 
        rgba(0, 166, 153, 0.3),
        rgba(255, 58, 92, 0.3));
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 58, 92, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 58, 92, 0.4);
}

/* Sections communes */
section {
    padding: 8rem 1rem;
    position: relative;
    overflow: hidden;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) translateZ(30px);
}

/* Description */
.description {
    margin-top: 0;
    padding: 1rem 0;
    background-color: #f8f9fa;
}

.description-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.description-content h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 2rem;
    text-align: center;
}

.description-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.description-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-section h3 {
    color: #2d3436;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-section h3 i {
    color: #FF385C;
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
}

.feature-section ul {
    list-style: none;
    padding: 0;
}

.feature-section li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-section .amenity-icon {
    color: #FF385C;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.feature-section li span,
.feature-section li p {
    flex: 1;
    line-height: 1.4;
    padding-top: 0.2rem;
}

.highlight-section {
    margin: 2rem auto;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.05), rgba(0, 166, 153, 0.05));
    border: none;
    box-shadow: none;
}

.highlight-section h3 {
    color: #FF385C;
}

.highlight-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3436;
    font-style: italic;
}

.description-cta {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin-top: 3rem;
}

.description-logo {
    text-align: center;
    margin: 2rem auto;
    max-width: 300px;
}

.description-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 65px;
        margin-top: 0;
        overflow-x: hidden;
    }

    .hero {
        display: none;
    }

    .mobile-hero-content {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .mobile-hero {
        display: block;
        position: relative;
        width: 100%;
        height: 100vh;
        margin: 0;
        overflow: hidden;
    }

    .mobile-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .mobile-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
            rgba(255, 58, 92, 0.3), 
            rgba(0, 166, 153, 0.3),
            rgba(255, 58, 92, 0.3));
        z-index: 1;
    }

    .mobile-hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        text-align: center;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .mobile-hero-content h1 {
        font-size: 2em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .mobile-hero-content p {
        font-size: 1.2em;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    header {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        height: 60px;
    }

    .logo {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        background: rgba(255, 255, 255, 0.95);
        padding: 8px 15px;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .logo img {
        width: 125px;
        height: auto;
    }

    nav {
        display: none;
    }

    .floating-airbnb-button {
        display: flex !important;
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
        background: #FF385C;
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(255, 56, 92, 0.3);
        font-weight: 500;
        font-size: 14px;
        min-width: 200px;
        justify-content: center;
    }

    .description {
        padding: 20px 15px;
    }

    .description-content {
        padding: 0;
    }

    .description h2 {
        font-size: 1.8em;
        margin: 15px 0;
        padding: 0 15px;
    }

    .description p {
        font-size: 1em;
        margin-bottom: 1em;
        padding: 0 15px;
    }

    .description-features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .feature-section {
        padding: 15px;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .gallery-item {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }

    .main-photo {
        height: 250px;
    }

    .amenities-slider {
        height: 160px;
    }

    .amenity-item {
        min-height: 110px;
        padding: 10px;
    }

    .streaming-icon {
        width: 45px;
        height: 45px;
    }

    .amenity-icon {
        font-size: 2rem;
    }

    .contact {
        padding: 20px 15px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Fix pour Safari mobile */
@supports (-webkit-touch-callout: none) {
    .mobile-hero {
        height: 250px;
    }

    .mobile-hero picture,
    .mobile-hero img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item picture,
    .gallery-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* Équipements */
.amenities {
    margin-top: 0;
    padding: 1rem 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    overflow: hidden;
}

.amenities-slider {
    display: flex;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    height: 200px;
}

.amenities-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #FF385C;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: none;
    color: #FF385C;
    font-size: 1.2rem;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 140px;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

.amenity-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 2.5rem;
    color: #FF385C;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1) rotate(5deg);
}

.streaming-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0;
    display: block;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
}

.amenity-item:hover .streaming-icon {
    transform: scale(1.1);
}

.amenity-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #484848;
    margin-top: 0.8rem;
    line-height: 1.2;
}

/* Styles spécifiques pour les icônes */
.icon-tv::before {
    content: "\f26c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.icon-netflix::before {
    content: "\f008";
}

.icon-disney::before {
    content: "\f008";
}

.icon-canal::before {
    content: "\f144";
}

.icon-amazon::before {
    content: "\f270";
}

.icon-climate::before {
    content: "\f2dc";
}

.icon-washer::before {
    content: "\f898";
}

.icon-dryer::before {
    content: "\f898";
}

.icon-coffee::before {
    content: "\f0f4";
}

.icon-airfryer::before {
    content: "\f2e7";
}

.icon-parking::before {
    content: "\f540";
}

.icon-wifi::before {
    content: "\f1eb";
}

.icon-oven::before {
    content: "\f06d";
}

.icon-workspace::before {
    content: "\f109";
}

.icon-hairdryer::before {
    content: "\f72e";
}

.icon-iron::before {
    content: "\f553";
}

.icon-kettle::before {
    content: "\f0f4";
}

/* Contact */
.contact {
    background-color: var(--light-gray);
    margin-top: 0;
    padding: 1rem 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.8rem 0;
    font-size: 1.2rem;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.airbnb-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 58, 92, 0.3);
}

.airbnb-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 58, 92, 0.4);
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 140px;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

.amenity-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1) rotate(5deg);
}

.streaming-icon {
    transition: transform 0.3s ease;
}

.amenity-item:hover .streaming-icon {
    transform: scale(1.1);
}

/* Effet de gradient animé */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .amenities-slider {
        height: 160px;
    }
    
    .amenity-item {
        min-height: 110px;
    }
    
    .streaming-icon, .amenity-icon {
        width: 40px;
        height: 40px;
    }
    
    .amenity-item span {
        font-size: 0.8rem;
    }
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Suppression des anciens styles */
.custom-icon,
.netflix-icon,
.disney-icon,
.canal-icon,
.amazon-icon {
    display: none;
}

@media (max-width: 768px) {
    .streaming-icon {
        width: 70px;
        height: 70px;
        margin-top: 1rem;
    }
    
    .amenity-icon {
        margin-top: 2rem;
    }
    
    .amenity-item span {
        margin-top: 1.5rem;
    }
}

.map-section {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.google-map:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .map-section {
        margin: 2rem auto;
    }
    
    .google-map {
        height: 300px;
    }
}

/* Styles pour les boutons de partage sociaux */
.social-share {
    text-align: center;
    padding: 30px 0;
}

.social-share h3 {
    margin-bottom: 20px;
    color: #333;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: scale(1.1);
}

.share-button.facebook {
    background: #3b5998;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.linkedin {
    background: #0077b5;
}

/* Optimisation des images */
.gallery-item picture,
.gallery-item img,
.mobile-hero picture,
.mobile-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Fix pour Safari */
@supports (-webkit-touch-callout: none) {
    .gallery-item picture,
    .gallery-item img,
    .mobile-hero picture,
    .mobile-hero img {
        height: 100%;
        width: 100%;
        position: relative;
    }
    
    .mobile-hero {
        position: relative;
        overflow: hidden;
    }
}

/* Optimisations pour le mode incognito */
@media (forced-colors: active) {
    .gallery-item picture,
    .gallery-item img,
    .mobile-hero picture,
    .mobile-hero img {
        forced-color-adjust: none;
    }
}

/* Styles de base pour les conteneurs d'images */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.mobile-hero {
    position: relative;
    overflow: hidden;
    height: 300px;
}

/* Styles pour le mode mobile */
@media (max-width: 768px) {
    .mobile-hero {
        height: 250px;
        margin-top: 0;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Amélioration de l'accessibilité */
:focus {
    outline: 3px solid #FF385C;
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Optimisation pour l'impression */
@media print {
    .social-share,
    .booking-links,
    .nav-links {
        display: none !important;
    }
}

/* Optimisation du chargement des polices */
@font-face {
    font-family: 'FontAwesome';
    font-display: swap;
    src: url('path-to-your-fontawesome.woff2') format('woff2');
}

.mobile-hero {
    display: none;
    position: relative;
}

.mobile-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    z-index: 2;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.mobile-hero-content h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-hero-content p {
    font-size: 1.1em;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero {
        display: none;
    }

    .mobile-hero {
        display: block !important;
        width: 100%;
        height: 300px;
        position: relative;
        overflow: hidden;
        margin-top: 60px;
    }

    .mobile-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
        z-index: 1;
    }

    .mobile-hero-content {
        padding: 15px;
    }

    .mobile-hero-content h1 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .mobile-hero-content p {
        font-size: 1em;
    }
} 