/* LED Multimedia - Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', 'Rubik', sans-serif;
    background-color: #252439;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(37, 36, 57, 0.95) 0%, rgba(37, 36, 57, 0) 100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c278fb, #f973ff);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, #fb7878, #ffaf74);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 40px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 36, 57, 0.3) 0%, rgba(37, 36, 57, 0.7) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.maps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.map-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.map-card:hover {
    transform: scale(1.05);
}

.map-card:hover .map-img {
    filter: drop-shadow(0 0 30px rgba(194, 120, 251, 0.5));
}

.map-img {
    width: 400px;
    height: auto;
    transition: filter 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.map-label {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.group-member {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.group-member span {
    font-size: 14px;
    color: #c2c2d3;
}

.group-member img {
    height: 35px;
    width: auto;
}

/* Content Section */
.content-section {
    background-color: #1b1a2d;
    padding: 100px 40px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.content-block {
    padding: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.content-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(194, 120, 251, 0.3);
}

.content-block--full {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.content-block p {
    font-size: 16px;
    color: #c2c2d3;
    line-height: 1.8;
    margin-bottom: 25px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #c278fb, transparent);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #c2c2d3;
    margin-top: 5px;
}

.content-block .btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #c278fb, #f973ff);
    color: #ffffff;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 5px 5px 30px 0px rgba(195, 120, 251, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block .btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #fb7878, #ffaf74);
    box-shadow: 5px 5px 30px 0px rgba(251, 122, 120, 0.35);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1b1a2d 0%, #252439 100%);
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    font-size: 14px;
    color: #d1d5db;
}

.footer a {
    color: #fb7878;
}

.footer a:hover {
    text-decoration: underline;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c278fb, #f973ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #fb7878, #ffaf74);
    transform: scale(1.1);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .maps-container {
        gap: 40px;
    }

    .map-img {
        width: 300px;
    }

    .hero-title {
        font-size: 32px;
    }

    .content-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 14px;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .maps-container {
        flex-direction: column;
        gap: 50px;
    }

    .map-img {
        width: 280px;
    }

    .map-label {
        font-size: 20px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-block {
        padding: 30px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }

    .hero-title {
        font-size: 22px;
    }

    .map-img {
        width: 240px;
    }
}
