@import url('global.css');

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Sections SPA */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
}

.section.active {
    display: block;
}



/* Home Section */
#home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(1.2);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #66bb6a 0%, #43a047 50%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(67, 160, 71, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(67, 160, 71, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sacred Ocean Card - Blue Theme */
.stat.sacred-ocean {
    border-color: rgba(33, 150, 243, 0.3);
}

.stat.sacred-ocean:hover {
    border-color: rgba(33, 150, 243, 0.5);
}

.stat.sacred-ocean .stat-number {
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
}

.stat.sacred-ocean .stat-number img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

/* Loading Content */
.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-content i {
    font-size: 3rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.content-loaded {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(67, 160, 71, 0.3);
}

/* ========================================
   RESPONSIVE HOME PAGE
   ======================================== */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1rem;
    }
}
/* End of home.css */