/* Styles personnalisés pour Eclipse Roleplay */

/* Navigation fixe */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 2, 3, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    display: none;
}

@media (min-width: 768px) {
    .navbar {
        display: block;
        padding: 1rem 0;
    }
}

/* Menu hamburger pour mobile - en haut à droite */
.mobile-menu-button {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    background: rgba(0, 2, 3, 0.9);
    border: 2px solid #60a5fa;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.mobile-menu-button:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 2, 3, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(96, 165, 250, 0.3);
    padding: 2rem;
    z-index: 1000;
    transition: bottom 0.3s ease;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    bottom: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    font-size: 1.1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-menu .nav-link:hover {
    color: #60a5fa;
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu .play-button {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    background-color: #60a5fa;
    border: 1px solid #60a5fa;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.mobile-menu .play-button:hover {
    background-color: transparent;
    color: #60a5fa;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Animation personnalisée pour le point Live */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Styles pour le hero avec vidéo en background */
.hero-bg {
    background-color: #000203;
    background-image: url('../assets/img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(3px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 2, 3, 0.7) 0%,
        rgba(0, 2, 3, 0.6) 50%,
        rgba(0, 2, 3, 0.8) 100%
    );
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/img/particles.png');
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.hero-bg > .hero-container {
    position: relative;
    z-index: 3;
}

/* Hero container responsive */
.hero-container {
    min-height: 100vh;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .hero-container {
        min-height: calc(100vh - 120px);
        padding-top: 80px;
    }
}

/* Styles pour le logo Eclipse */
.logo-main {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-sub {
    font-size: 0.875rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #60a5fa;
    display: block;
}

/* Styles pour les boutons de navigation */
.nav-link {
    color: white;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #60a5fa;
}

.live-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.live-button:hover {
    background-color: #4b5563;
}

.live-dot-container {
    position: relative;
}

.live-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #ef4444;
    border-radius: 50%;
}

.live-dot-ping {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #ef4444;
    border-radius: 50%;
    position: absolute;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.play-button {
    background-color: #60a5fa;
    border: 1px solid #60a5fa;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: transparent;
    color: #60a5fa;
}

/* Styles pour le contenu hero */
.hero-content {
    max-width: 100%;
    align-self: center;
    margin-top: 0;
    padding: 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        margin-top: -20%;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        margin-top: -35%;
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #60a5fa;
    line-height: 1.2;
    max-width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 1.8rem;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.0125rem;
        margin-bottom: 1.5rem;
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.6125rem;
        max-width: 1000px;
    }
}

.hero-subtitle-white {
    color: white;
    font-weight: bold;
}

.hero-description {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1rem;
        text-align: left;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Styles pour les statistiques du serveur */
.server-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

@media (min-width: 640px) {
    .server-stats {
        flex-direction: row;
        gap: 2rem;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(55, 65, 81, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.stat-icon {
    color: #60a5fa;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #60a5fa;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
}

.stat-max {
    color: #9ca3af;
    font-weight: normal;
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: flex;
        justify-content: flex-start;
        margin-left: -2rem;
        margin-top: 8rem;
        order: 0;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        margin-top: 18rem;
    }
}

.hero-image img {
    max-width: 80%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .hero-image img {
        max-width: 100%;
        max-height: 500px;
    }
}

@media (min-width: 768px) {
    .hero-image img {
        max-width: 110%;
        max-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero-image img {
        max-width: 120%;
        max-height: 700px;
    }
}

.hero-cta-button {
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-cta-button:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

/* Styles généraux */
.container-custom {
    max-width: 72rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Bande de transition entre Hero et FAQ */
.transition-band {
    height: 120px;
    background: linear-gradient(to bottom, 
        rgba(0, 2, 3, 0) 0%,
        rgba(0, 0, 0, 0.8) 25%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 2, 3, 0) 100%
    );
    position: relative;
    z-index: 5;
    margin: -20px 0;
}

/* Section FAQ */
.faq-section {
    background-color: #000203;
    background-image: url('../assets/img/background2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.faq-section > * {
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(17, 24, 39, 0.6);
    border: 2px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(17, 24, 39, 0.8);
}

.faq-item.active {
    border-color: #60a5fa;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #60a5fa;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer-text {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Section Download & Play */
.download-section {
    background-color: #000203;
    background-image: url('../assets/img/background3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.download-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #60a5fa;
    min-width: 40px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.step-description {
    color: #9ca3af;
    font-size: 0.95rem;
}

.step-button {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.buy-button {
    background-color: #3b82f6;
    color: white;
}

.buy-button:hover {
    background-color: #2563eb;
    transform: scale(1.05);
}

.download-button {
    background-color: #10b981;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.download-button:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.play-button-main {
    background-color: #f59e0b;
    color: white;
}

.play-button-main:hover {
    background-color: #d97706;
    transform: scale(1.05);
}

.how-to-join {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    color: #60a5fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-to-join:hover {
    color: #93c5fd;
    transform: translateX(10px);
}

.play-icon {
    width: 40px;
    height: 40px;
    background-color: #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.how-to-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
    .download-steps {
        order: 2;
    }
    
    .download-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .step-item:hover {
        transform: none;
    }
    
    .how-to-join:hover {
        transform: none;
    }
}

/* Section Join Us */
.join-us-section {
    background-color: #000203;
    position: relative;
    overflow: hidden;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('../assets/img/particles.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('../assets/img/particles.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    filter: hue-rotate(200deg) brightness(1.5);
}

.shape-1 { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.shape-2 { top: 15%; right: 10%; animation: float 8s ease-in-out infinite reverse; }
.shape-3 { top: 60%; right: 5%; animation: float 7s ease-in-out infinite; }
.shape-4 { bottom: 20%; left: 8%; animation: float 9s ease-in-out infinite reverse; }
.shape-5 { top: 40%; left: 15%; animation: float 5s ease-in-out infinite; }
.shape-6 { bottom: 30%; right: 15%; animation: float 6s ease-in-out infinite reverse; }
.shape-7 { top: 25%; right: 25%; animation: float 7s ease-in-out infinite; }
.shape-8 { bottom: 10%; left: 25%; animation: float 8s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.join-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.join-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(0deg);
}

.social-card:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.social-card:hover .card-background {
    transform: scale(1.1);
}

.facebook-card .card-background {
    background-image: url('../assets/img/facebook.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.facebook-logo {
    height: 3.5rem;
    filter: brightness(0) invert(1);
}

.youtube-card .card-background {
    background-image: url('../assets/img/youtube.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.discord-card .card-background {
    background-image: url('../assets/img/discord.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50%;
    padding-top: 1rem;
}

.facebook-card .social-logo {
    justify-content: center;
}

.youtube-card .social-logo {
    justify-content: center;
}

.discord-card .social-logo {
    justify-content: center;
}

.discord-logo {
    height: 3.5rem;
    filter: brightness(0) invert(1);
}

.discord-card .character-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 50%;
}

.discord-card .character {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.youtube-logo {
    height: 3.15rem;
    filter: brightness(0) invert(1);
}

.youtube-card .character-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 50%;
}

.youtube-card .character {
    max-width: 100%;
    width: 100%;
    height: auto;
}





.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-transform: lowercase;
}

.discord-card .logo-text {
    text-transform: uppercase;
}

.youtube-icon {
    background: white;
    color: #ff0000;
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.character-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50%;
}

.character {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.social-card:hover .character {
    transform: scale(1.05) translateY(-5px);
}

@media (max-width: 768px) {
    .join-title {
        font-size: 2.5rem;
    }
    
    .social-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        height: 300px;
    }
    
    .social-card:hover {
        transform: none;
    }
    
    .shape {
        display: none;
    }
    
    /* Réduire la taille des personnages sur mobile uniquement */
    .character {
        max-width: 25%;
    }
    
    .discord-card .character-image {
        width: 25%;
    }
    
    .youtube-card .character-image {
        width: 25%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (min-width: 769px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Footer intégré */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.footer-left .footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.footer-roleplay {
    color: #60a5fa;
}

.footer-center .footer-copyright {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #60a5fa;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.language {
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language.active {
    color: #60a5fa;
    font-weight: bold;
}

.language:hover {
    color: #60a5fa;
}

.language-separator {
    color: #4b5563;
}

/* Responsive improvements */
@media (max-width: 640px) {
    .hero-bg {
        background-size: cover;
        background-position: center top;
    }
    
    .hero-bg::before {
        background-size: 80%;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .hero-cta-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .download-steps {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .step-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .how-to-join {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .twitch-embed iframe {
        height: 280px;
    }
    
    .streamer-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .streamer-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-left .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        height: 250px;
    }
}

/* Large screens optimization */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.0125rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        max-width: 130%;
    }
} 