/* Variables de couleurs */
:root {
    --primary-color: #db3a00;
    --tertiary-color: #b83200;
    --white-color: #ffffff;
    --light-gray: #f5f5f7;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --black-color: #1a1a1a;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographie */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(219, 58, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219, 58, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(219, 58, 0, 0.05);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    padding: 20px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

/* Section Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,245,240,1) 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(219, 58, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(219, 58, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(219, 58, 0, 0); }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Compte à rebours */
.countdown-container {
    margin: 40px 0;
}

.countdown-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.countdown {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: var(--border-radius);
    min-width: 90px;
    box-shadow: var(--box-shadow);
}

.countdown-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 5px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: -10px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Phone Mockup */
.image-container {
    position: relative;
    height: 500px;
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 600px;
    background-color: var(--black-color);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.phone-screen {
    background-color: var(--white-color);
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-logo {
    font-weight: 800;
    font-size: 1.2rem;
    background-color: rgba(255,255,255,0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.app-content {
    padding: 20px;
    flex: 1;
    background-color: var(--light-gray);
}

.app-dish {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.dish-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
}

.dish-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.dish-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.rating {
    color: #FFC107;
    font-size: 0.9rem;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.promo-text {
    flex: 1;
}

.promo-list {
    list-style: none;
    margin: 25px 0 35px;
}

.promo-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.promo-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.promo-image {
    flex: 1;
}

.promo-card {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: var(--border-radius);
    overflow: hidden;
    color: var(--white-color);
    box-shadow: var(--box-shadow-hover);
}

.promo-card-header {
    background-color: rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.promo-badge {
    background-color: var(--white-color);
    color: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.promo-card-body {
    padding: 30px;
}

.promo-card-body p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.promo-code {
    background-color: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.promo-conditions {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 15px 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white-color);
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: var(--white-color);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-btn:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

.modal-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.download-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.download-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.ios {
    background-color: rgba(0,0,0,0.05);
    border-color: #000;
}

.android {
    background-color: rgba(66, 133, 244, 0.05);
    border-color: #4285F4;
}

.web {
    background-color: rgba(219, 58, 0, 0.05);
    border-color: var(--primary-color);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
}

.ios .option-icon {
    background-color: #000;
    color: var(--white-color);
}

.android .option-icon {
    background-color: #4285F4;
    color: var(--white-color);
}

.web .option-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.option-text h3 {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.option-text p {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    font-style: italic;
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .promo-content {
        flex-direction: column;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-separator:nth-child(4) {
        display: none;
    }
    
    .download-option {
        flex-direction: column;
        text-align: center;
    }
    
    .option-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* Styles pour le slider d'images de l'application */
.app-slider-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.app-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    border-radius: 0 0 20px 20px;
}

.slide-content h4 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.slide-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Section découverte par quartier */
.discovery-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.neighborhood-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.neighborhood-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.neighborhood-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.neighborhood-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(219, 58, 0, 0.8));
    color: white;
    padding: 15px;
}

.neighborhood-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
}

.neighborhood-info {
    padding: 20px;
}

.neighborhood-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: var(--dark-gray);
}

.neighborhood-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Section prix et concours */
.prize-list {
    margin: 25px 0;
}

.prize-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.prize-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.prize-item h4 {
    margin: 0 0 5px 0;
    color: white;
}

.prize-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.promo-note {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

/* Section à venir */
.coming-soon {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coming-soon-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.coming-soon-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    font-size: 1.8rem;
}

.coming-soon-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffd700;
    color: #333;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Footer amélioré */
.app-download-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.app-download-link:hover {
    text-decoration: underline;
}

.footer-legal {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.author-rating {
    color: #FFC107;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Ajustements pour le nouveau design */
.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
}

.feature-card h3 {
    font-size: 1.4rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .app-slider-container {
        max-width: 100%;
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    html,body {
        overflow-x: hidden;
    }
    .neighborhoods-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tagline{
        display: none;
    }
}
    
