/* Feral Frequencies Website Styles */
/* Color scheme inspired by the FF logo */

:root {
    --primary-gold: #F4E4A6;
    --dark-slate: #2C3E50;
    --medium-gray: #6B7280;
    --accent-black: #000000;
    --pure-white: #FFFFFF;
    --card-bg: #232B36;
    --border-color: #333;
    --text-muted: #AAA;
    --hover-gold: #E6D085;
    --gradient-gold: linear-gradient(135deg, #F4E4A6, #E6D085);
    --nav-blue: var(--dark-slate);
    --bg-dark: var(--nav-blue);
    --panel: rgba(255, 255, 255, 0.03);
    --accent: var(--primary-gold);
    --accent-2: #00d4ff;
    --card-bg-gradient: linear-gradient(135deg, rgba(255, 204, 51, 0.03), rgba(0, 212, 255, 0.02));
    --text-light: var(--pure-white);
    --muted-light: #9fb0c6;
    --dark-panel: rgba(6, 18, 34, 0.55);
    --input-border: rgba(255, 255, 255, 0.06);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-slate) !important;
    background-color: #2C3E50 !important;
    /* Fallback */
    color: var(--pure-white) !important;
    color: #FFFFFF !important;
    /* Fallback */
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 74px;
}

html {
    background: var(--dark-slate) !important;
    background-color: #2C3E50 !important;
    /* Fallback */
    background: linear-gradient(180deg, var(--bg-dark) 0%, #031226 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 72px;
    z-index: 9999;
    background: var(--nav-blue);
    box-shadow: 0 6px 20px rgba(2, 8, 16, 0.6);
    backdrop-filter: blur(6px);
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    display: block;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 48px;
    width: auto;
    transition: transform .25s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--muted-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: .35rem .6rem;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 5.5rem 0 7rem;
    position: relative;
    overflow: visible;
}

.hero .container {
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 980px;
    text-align: center;
}

.hero-brand {
    display: block;
    margin: 0 auto 2.5rem;
    background: linear-gradient(180deg, var(--nav-blue), #0b2b40);
    border-radius: 22px;
    display: inline-block;
    box-shadow: 0 14px 40px rgba(2, 8, 16, 0.62), 0 0 64px rgba(255, 204, 51, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0;
}

.hero-logo {
    height: 240px;
    width: 240px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    transition: transform .28s ease, box-shadow .28s ease;
}

.hero-logo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.65), 0 0 86px rgba(255, 204, 51, 0.18);
}

.hero h1 {
    font-size: 3.2rem;
    margin: 0;
    color: var(--accent);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.hero .subtitle {
    color: var(--accent-2);
    margin-top: .5rem;
    font-weight: 600;
}

.hero .description {
    color: var(--muted-light);
    max-width: 760px;
    margin: .85rem auto 1.25rem;
}

/* Buttons */
.cta-button,
.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #ffb84d);
    color: #071427;
    padding: .9rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform .15s ease, box-shadow .15s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 178, 50, 0.12);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(255, 178, 50, 0.15);
}

.btn-secondary {
    background: linear-gradient(180deg, var(--nav-blue), #0b2b40);
    color: var(--accent);
    padding: .7rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform .12s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--dark-slate);
    background-image:
        radial-gradient(circle at 25% 25%, rgba(244, 228, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(107, 114, 128, 0.1) 0%, transparent 50%);
    padding: 120px 0 80px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(244, 228, 166, 0.3);
}

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

.hero .description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Product Grid */
.products-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 3.5rem 1.25rem 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold);
}

.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background: linear-gradient(180deg, var(--nav-blue), #0b2b40);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(2, 8, 16, 0.55), 0 0 40px rgba(255, 204, 51, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.product-icon img {
    border-radius: 12px !important;
    background: transparent !important;
    border: none !important;
    height: 128px;
    width: auto;
    display: block;
    margin: 0;
    box-shadow: 0 12px 36px rgba(2, 8, 16, 0.45), 0 0 36px rgba(255, 204, 51, 0.10), 0 0 14px rgba(255, 204, 51, 0.06);
    object-fit: cover;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-icon img:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(2, 8, 16, 0.5), 0 0 60px rgba(255, 204, 51, 0.18), 0 0 22px rgba(255, 204, 51, 0.08);
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.product-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.price {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--dark-slate);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent-black);
}

.feature-item h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.testimonial {
    background: var(--dark-slate);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    border-left: 4px solid var(--primary-gold);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial p {
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: 600;
    text-align: right;
}

/* Footer */
footer {
    background: var(--accent-black);
    padding: 3rem 0 1rem;
    margin-top: auto;
    border-top: 2px solid var(--primary-gold);
    color: var(--muted-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--medium-gray);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-slate);
        padding: 1rem;
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width:720px) {
    .hero-logo {
        height: 150px;
        width: 150px
    }

    .hero-brand {
        margin-bottom: 1.25rem;
        padding: 10px
    }

    .hero h1 {
        font-size: 2.1rem
    }

    .header-nav {
        padding: .6rem 0
    }

    .header-nav .nav-menu {
        gap: .4rem
    }

    .product-card .product-icon {
        padding: 12px 0
    }

    .product-card .product-icon img {
        height: 92px;
        margin: 0
    }
}

/* Sound Wave Animation */
@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

.sound-wave {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0 10px;
    justify-content: center;
    align-items: flex-end;
}

.wave-bar {
    width: 3px;
    height: 20px;
    background: var(--primary-gold);
    animation: wave 1s ease-in-out infinite;
    border-radius: 6px;
}

.wave-bar:nth-child(1) {
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    animation-delay: 0.4s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.text-muted {
    color: var(--text-muted);
}

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

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.py-4 {
    padding: 2rem 0;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form styles moved from inline */
.form-card {
    margin-top: 3rem;
    text-align: left;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
}

.form-card .form-title {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background: var(--nav-blue);
    color: var(--text-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* End overrides */