/* ===== Heritage On The Air - Welcome Page ===== */

:root {
    --hota-khaki: #b49977;
    --hota-khaki-light: #c9b199;
    --hota-khaki-dark: #967a5a;
    --hota-khaki-pale: #f5efe8;
    --hota-dark: #2e3842;
    --hota-dark-light: #3a4752;
    --hota-cream: #faf7f2;
    --hota-gold: #d4a855;
    --hota-text: #4a4a4a;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(46,56,66,0.85) 0%, rgba(58,71,82,0.80) 50%, rgba(150,122,90,0.75) 100%),
                url('/assets/images/login-bg.webp') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/overlay.webp') repeat;
    opacity: 0.08;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--hota-cream), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    width: 280px;
    max-width: 70vw;
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
    animation: heroFadeIn 1s ease-out;
}

.hero-title {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--hota-khaki-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.5rem;
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--hota-khaki);
    margin: 0 auto 2rem;
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-cta {
    animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero-cta .btn {
    padding: 0.85rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hota-primary {
    background: var(--hota-khaki);
    color: #fff;
    border: 2px solid var(--hota-khaki);
}

.btn-hota-primary:hover {
    background: var(--hota-khaki-dark);
    border-color: var(--hota-khaki-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 153, 119, 0.4);
}

.btn-hota-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-hota-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    border: none;
}

.hero-scroll-indicator:hover {
    color: #fff;
    border: none;
}

.hero-scroll-indicator i {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---- Section Base ---- */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header .section-line {
    width: 60px;
    height: 3px;
    background: var(--hota-khaki);
    margin: 0 auto 1.5rem;
}

.section-header p {
    font-size: 1.05rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- About / What is HOTA ---- */
.about-section {
    background: var(--hota-cream);
}

.about-section .section-header h2 {
    color: var(--hota-dark);
}

.about-icon-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    transition: all 0.35s ease;
    background: #fff;
    border: 1px solid rgba(180, 153, 119, 0.15);
    height: 100%;
}

.about-icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(180, 153, 119, 0.15);
    border-color: var(--hota-khaki-light);
}

.about-icon-box .icon-wrap {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--hota-khaki-pale);
    color: var(--hota-khaki);
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.35s ease;
}

.about-icon-box:hover .icon-wrap {
    background: var(--hota-khaki);
    color: #fff;
}

.about-icon-box h4 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hota-dark);
    margin-bottom: 1rem;
}

.about-icon-box p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- Pillars Section ---- */
.pillars-section {
    background: var(--hota-dark);
    position: relative;
    overflow: hidden;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/overlay.webp') repeat;
    opacity: 0.04;
}

.pillars-section .section-header h2 {
    color: #fff;
}

.pillars-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.pillar-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

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

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

.pillar-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(46,56,66,0.95), rgba(46,56,66,0.6) 60%, transparent);
    color: #fff;
}

.pillar-overlay h3 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.pillar-overlay p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- Steps / How to Section ---- */
.steps-section {
    background: var(--hota-cream);
}

.steps-section .section-header h2 {
    color: var(--hota-dark);
}

.step-item {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: var(--hota-khaki);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(180, 153, 119, 0.35);
}

.step-item h4 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hota-dark);
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 32px;
        left: calc(50% + 40px);
        width: calc(100% - 80px);
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            var(--hota-khaki-light),
            var(--hota-khaki-light) 6px,
            transparent 6px,
            transparent 12px
        );
        z-index: 1;
    }

    .step-item:last-child .step-connector {
        display: none;
    }
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--hota-khaki-dark) 0%, var(--hota-khaki) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/overlay.webp') repeat;
    opacity: 0.06;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-cta-white {
    background: #fff;
    color: var(--hota-khaki-dark);
    border: 2px solid #fff;
    font-weight: 700;
}

.btn-cta-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ---- Quote Section ---- */
.quote-section {
    background: #fff;
    position: relative;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--hota-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border: none;
    text-align: center;
}

.quote-section blockquote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--hota-khaki-light);
    display: block;
    line-height: 1;
    margin-bottom: -1rem;
    font-family: Georgia, serif;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--hota-khaki);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 600;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--hota-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/overlay.webp') repeat;
    opacity: 0.04;
}

.stat-block {
    position: relative;
    text-align: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-block:last-child {
    border-right: none;
}

.stat-number {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--hota-khaki);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ---- Recent Activations ---- */
.recent-section {
    background: var(--hota-cream);
}

.recent-section .section-header h2 {
    color: var(--hota-dark);
}

.activation-card {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(180, 153, 119, 0.12);
    transition: all 0.3s ease;
    height: 100%;
}

.activation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(180, 153, 119, 0.12);
    border-color: var(--hota-khaki-light);
}

.activation-date-badge {
    flex-shrink: 0;
    width: 68px;
    text-align: center;
    background: linear-gradient(135deg, var(--hota-dark) 0%, var(--hota-dark-light) 100%);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.activation-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hota-khaki);
    line-height: 1;
}

.activation-date-badge .month {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 0.2rem;
}

.activation-date-badge .year {
    display: block;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.15rem;
}

.activation-details {
    flex: 1;
    min-width: 0;
}

.activation-site-name {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hota-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.activation-site-name .text-khaki {
    color: var(--hota-khaki);
}

.activation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.6rem;
}

.activation-meta .meta-item {
    font-size: 0.74rem;
    color: #888;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.activation-meta .meta-item i {
    color: var(--hota-khaki-light);
    font-size: 0.68rem;
}

.activation-meta .meta-item.points {
    color: var(--hota-gold);
    font-weight: 700;
}

.activation-meta .meta-item.points i {
    color: var(--hota-gold);
}

.activation-activator {
    font-size: 0.78rem;
    color: #666;
}

.activation-activator i {
    color: var(--hota-khaki-light);
    margin-right: 0.25rem;
}

.first-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--hota-gold), var(--hota-khaki));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    margin-left: 0.4rem;
    vertical-align: middle;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .pillar-card { height: 350px; margin-bottom: 1.5rem; }
    .section-padding { padding: 4rem 0; }
    .stat-number { font-size: 1.8rem; }
    .stat-block { padding: 1.5rem 0.5rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; letter-spacing: 0.1em; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-logo { width: 200px; }
    .section-header h2 { font-size: 1.5rem; }
    .hero-cta .btn { display: block; margin-bottom: 0.75rem; }
    .pillar-card { height: 300px; }
    .step-item { margin-bottom: 2.5rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-block { padding: 1.25rem 0.5rem; }
    .stat-label { font-size: 0.62rem; letter-spacing: 0.1em; }
    .activation-card { flex-direction: column; gap: 0.75rem; }
    .activation-date-badge { width: 100%; flex-direction: row; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: 8px; }
    .activation-date-badge .day { font-size: 1.1rem; }
}
