/* ALA PUKA - Modern Visual Design System & CSS Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors based on forest-green logo */
    --brand-green: #005A43;
    --brand-green-rgb: 0, 90, 67;
    --brand-accent: #00ffb7;
    --brand-accent-glow: rgba(0, 255, 183, 0.4);
    --canvas-base: #011813;
    --canvas-base-end: #032e24;
    --card-bg: rgba(4, 38, 30, 0.65);
    --card-border: rgba(0, 255, 183, 0.12);
    --text-primary: #f0fdf4;
    --text-secondary: rgba(240, 253, 244, 0.7);
    --gold-accent: #f59e0b;
    --gold-accent-glow: rgba(245, 158, 11, 0.4);

    --font-display: 'Outfit', sans-serif;
    --font-label: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--canvas-base);
    background: linear-gradient(135deg, var(--canvas-base) 0%, var(--canvas-base-end) 100%);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Navigation */
header {
    width: 100%;
    background: rgba(1, 24, 19, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 183, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.logo-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-subtitle-link {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    display: block;
    margin-top: 2px;
}

.logo-subtitle-link:hover {
    color: var(--brand-accent);
}

.logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 2px solid var(--brand-accent);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    transition: color 0.3s, background-color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--brand-accent);
    background: rgba(0, 255, 183, 0.05);
    text-shadow: 0 0 8px var(--brand-accent-glow);
}

.nav-links a.active {
    color: var(--brand-accent);
    font-weight: 700;
    background: rgba(0, 255, 183, 0.08);
}

/* Hamburger & Mobile Menu Styles */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--brand-accent);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    transition: transform 0.3s ease;
    padding: 8px;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1, 24, 19, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: var(--font-label);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-menu-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 8px 16px;
}

.mobile-menu-links a:hover, .mobile-menu-links a.active {
    color: var(--brand-accent);
    text-shadow: 0 0 10px var(--brand-accent-glow);
}

@media (max-width: 1150px) {
    .nav-links {
        display: none;
    }
    .hamburger-btn {
        display: block;
    }
}

/* Glassmorphic Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 183, 0.3);
    box-shadow: 0 20px 45px rgba(0, 255, 183, 0.08);
}

/* Buttons */
.btn-primary {
    background: var(--brand-accent);
    color: #011813;
    border: 1px solid var(--brand-accent);
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--brand-accent-glow);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #00e5a3;
    box-shadow: 0 6px 20px rgba(0, 255, 183, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.3s, background-color 0.3s;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Sections Base */
section {
    padding: 80px 0;
}

.section-tag {
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 48px;
}

/* Full-Screen Hero Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    padding: 0;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-img-cover, .slide-video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-video-cover {
    transform: scale(1.15);
}

.slide-img-cover {
    transform: scale(1);
    animation: kenburns 15s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.1) translate(-1%, -1%); }
}

.slider-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 24, 19, 0.95) 0%, rgba(1, 24, 19, 0.6) 40%, rgba(1, 24, 19, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.slider-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-card {
    max-width: 600px;
    background: rgba(1, 24, 19, 0.85);
    border: 1px solid rgba(0, 255, 183, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.hero-logo-overlay {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 4;
    pointer-events: auto;
}

.hero-overlay-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid rgba(0, 255, 183, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 255, 183, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-overlay-logo:hover {
    transform: scale(1.06) rotate(3deg);
    border-color: var(--brand-accent);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 35px rgba(0, 255, 183, 0.35);
}

@media (max-width: 768px) {
    .hero-logo-overlay {
        bottom: 28px;
        right: 28px;
    }
    .hero-overlay-logo {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
}

/* Full screen video parallax section */
.video-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(2, 44, 34, 0.85) 0%, rgba(1, 24, 19, 0.98) 100%);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    padding: 0 24px;
    max-width: 800px;
}

/* Responsive Image Containers */
.responsive-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background: #04261e;
}

.responsive-image, .responsive-video {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: transform 0.5s ease;
}

.responsive-image:hover, .responsive-video:hover {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .responsive-image, .responsive-video {
        aspect-ratio: 9 / 16;
    }
}

/* Modern HTML Quotes */
.modern-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.modern-quote-card {
    background: rgba(4, 38, 30, 0.5);
    border: 1px solid rgba(0, 255, 183, 0.12);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.modern-quote-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 183, 0.35);
}

.quote-header {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.quote-body {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.quote-author {
    font-family: var(--font-label);
    font-size: 0.82rem;
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Grid Layout helpers */
.split-grid-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 968px) {
    .split-grid-50 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FAQ Accordion Styling */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(4, 38, 30, 0.45);
    border: 1px solid rgba(0, 255, 183, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 255, 183, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    font-family: var(--font-label);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--brand-accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content-inner {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Code block highlight */
pre {
    background: rgba(1, 15, 12, 0.85);
    border: 1px solid rgba(0, 255, 183, 0.15);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--brand-accent);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

/* Footer style */
footer {
    background: rgba(1, 18, 14, 0.95);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 255, 183, 0.08);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    font-family: var(--font-label);
    font-size: 0.9rem;
}

.footer-nav a {
    color: rgba(240, 253, 244, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--brand-accent);
}

.footer-text {
    color: rgba(240, 253, 244, 0.3);
    font-size: 0.82rem;
    max-width: 600px;
    line-height: 1.6;
}
