/* Konas of Light - Main Styles */

:root {
    /* Color Palette - Mystical Green and Gold */
    --primary-green: rgb(26, 61, 40);
    --secondary-green: rgb(45, 90, 61);
    --tertiary-green: rgb(74, 124, 89);
    --mystic-green-dark: rgb(15, 36, 25);
    --mystic-green-black: rgb(5, 18, 11);
    
    --accent-gold: rgb(212, 175, 55);
    --accent-gold-light: rgb(244, 208, 63);
    --accent-gold-dark: rgb(184, 148, 31);
    
    --text-white: rgb(255, 255, 255);
    --text-gray: rgb(184, 184, 184);
    --text-light-gray: rgb(224, 224, 224);
    
    /* Shadows and Effects */
    --glow-gold: rgba(212, 175, 55, 0.6);
    --glow-green: rgba(45, 90, 61, 0.4);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--mystic-green-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 61, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--glow-gold));
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--glow-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--mystic-green-black) 100%);
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-glow-1 {
    top: 25%;
    right: 25%;
    background: var(--secondary-green);
}

.hero-glow-2 {
    bottom: 25%;
    left: 25%;
    background: var(--accent-gold);
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(45, 90, 61, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-gradient {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light-gray);
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-title {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.feature-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--glow-gold);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(to top, rgba(15, 36, 25, 0.8), transparent);
}

.floating-symbol {
    position: absolute;
    width: 64px;
    height: 64px;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.floating-symbol-1 {
    top: 0;
    right: 0;
}

.floating-symbol-2 {
    bottom: 0;
    left: 0;
    width: 48px;
    height: 48px;
    animation-delay: 2s;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: rgba(45, 90, 61, 0.2);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(45, 90, 61, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Content Blocks */
.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: rgba(45, 90, 61, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.content-card p {
    font-size: 1.125rem;
    color: var(--text-light-gray);
    line-height: 1.7;
}

.info-card {
    background: rgba(45, 90, 61, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light-gray);
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(45, 90, 61, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-white);
}

/* Grids */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.two-col-grid-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.three-col-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

/* Images */
.image-block {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.square-image {
    aspect-ratio: 1;
    height: auto;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 25, 0.8), transparent);
}

/* Bullet List */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* Text Utilities */
.text-accent {
    color: var(--accent-gold);
}

.text-bold {
    font-weight: 600;
}

.text-link {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-gold-light);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* CTA Center */
.cta-center {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-info {
    text-align: right;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--mystic-green-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .two-col-grid,
    .two-col-grid-image,
    .three-col-grid {
        grid-template-columns: 1fr;
    }
    
    .col-span-2 {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .content-card,
    .info-card,
    .highlight-card {
        padding: 1.5rem;
    }
}
