:root {
    /* Color Palette */
    --bg-color: #051923;
    /* Deep Navy Background */
    --bg-secondary: #0a2230;
    /* Slightly lighter navy for cards */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #0099ff;
    /* Adjusted to match 'Flux' cyan/blue */
    --accent-purple: #6600cc;
    /* New accent from 'Bettas' */
    --accent-red: #6600cc;
    /* Fallback/Replace red with purple for consistency */
    --gradient-logo: linear-gradient(to right, #0099ff, #6600cc);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(102, 0, 204, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: #000;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 25, 35, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-top-bar {
    background: linear-gradient(to right, #000, var(--bg-secondary));
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-top-bar a,
.social-top-bar span {
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-top-bar a:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(102, 0, 204, 0.6);
}

.social-top-bar span {
    color: var(--text-primary);
    font-size: 0.85rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 5px;
    /* Prevent descenders clipping */
    filter: drop-shadow(0 0 15px rgba(102, 0, 204, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at center, #0a2230 0%, #051923 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    /* Enhanced text highlighting - Subtler */
    filter: drop-shadow(0 0 10px rgba(0, 153, 255, 0.4));
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-content .btn-outline {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    background: rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Blue transparency overlay + Image */
    background-image: linear-gradient(to bottom, rgba(5, 25, 35, 0.5), rgba(0, 153, 255, 0.1)), url('../assets/hero_betta.png');
    /* Gradient gets 'cover' (auto), Image gets '55% auto' */
    background-size: auto, 55% auto;
    background-repeat: no-repeat;
    background-position: center, center bottom;
    opacity: 0.8;
    /* Increased opacity for clarity */
    animation: slowFloat 6s infinite alternate ease-in-out;
    /* Changed to float */
}

@keyframes slowFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

/* About Section */
.about-content-split {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    text-align: center;
}

.about-text {
    max-width: 800px;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.about-text h4 {
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--text-primary);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.faq-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-secondary);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.about-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-info {
    transform: translateY(0);
}

.item-info h5 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.item-info span {
    color: var(--accent-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Contact */
.contact-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-text {
    max-width: 600px;
}

.contact-text p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: #020d12;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple hide for now, need JS for toggle */
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#lightbox.active {
    opacity: 1;
    pointer-events: all;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-red);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}