/* home.css */
@import 'colors.css';

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 90vh;
    /* Slightly less than full viewport for modern look */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left as per design */
    overflow: hidden;
    color: var(--white);
    text-align: left;
    padding-top: 80px;
    /* Space for fixed nav */
}

/* Background Handling */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a real image or a high-quality gradient placeholder */
    background: url('../../../assets/img/hero.jpg') no-repeat center center/cover;
    z-index: -1;
    filter: blur(2px);
    /* Adding slight blur as requested to maintain effect */
}

/* Gradient Overlay - Crucial for text readability and "Pulcro" look */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 4rem;
    /* Use container padding logic ideally, but this works for hero */
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-hero {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: capitalize;
    /* Cleaner than uppercase */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-hero {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 210, 214, 0.3);
}

.btn-primary-hero:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* === STATS SECTION === */
.stats-section {
    background: var(--bg-color);
    /* Match body bg to blend or distinct dark tone */
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* === GENERAL SECTIONS === */
.section {
    padding: 6rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--secondary-color);
    /* The specific cyan blue */
    font-size: 1.1rem;
}

.see-all-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.see-all-link:hover {
    text-decoration: underline;
}

/* === CARDS (Workshops & Events) === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.card {
    background: var(--bg-card);
    /* White with low opacity */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: var(--bg-card-hover);
    border-color: rgba(0, 210, 214, 0.3);
}

.card-img {
    height: 220px;
    background-color: #1a2634;
    /* Placeholder dark blue */
    position: relative;
    overflow: hidden;
}

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

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === NAV STYLES === */
.nav-logo-img {
    height: 45px;
    /* Increased 25% from 35px */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

/* === RADIO SECTION === */
.radio-section {
    background: #022C3C;
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.radio-img {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 210, 214, 0.5));
}

.radio-img-container {
    display: block;
}

/* Custom CSS Radio Icon (( . )) */
.radio-icon-css {
    font-size: 5rem;
    /* Increased size for better visibility */
    font-weight: 300;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* More space between parens and logo */
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1;
}

.radio-dot-img {
    height: 65px;
    /* Increased to match the size of the parentheses */
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(0, 210, 214, 0.3));
}

.radio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.radio-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* === COMMUNITY CTA === */
.community-section {
    background: var(--primary-color);
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
}

.community-overlay {
    /* Optional geometric pattern overlay could go here */
}

.community-content {
    position: relative;
    z-index: 2;
}

.community-content h2 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-content p {
    color: rgba(10, 18, 24, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === FOOTER === */
.main-footer {
    background: #020609;
    padding: 4rem 2rem 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}