/* ============================================
   $OMANYTE Marketing Website Styles
   Theme: Prehistoric ocean + fossil temple
   Colors: Dark navy, fossil beige (#F4D79A), purple (#9C4EDB), aqua (#35E0FF)
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --bg-dark: #0a0e27;
    --bg-darker: #050812;
    --fossil-beige: #F4D79A;
    --purple: #9C4EDB;
    --aqua: #35E0FF;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 1.5rem;
    --card-padding: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #0f1a3a 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--fossil-beige), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--aqua);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aqua);
    transition: width var(--transition-normal);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(156, 78, 219, 0.2) 0%, rgba(10, 14, 39, 0.8) 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(156, 78, 219, 0.5));
}

.hero-headline {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--fossil-beige), var(--purple), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-supporting {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), #7B3DB8);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(156, 78, 219, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(156, 78, 219, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--aqua);
    border-color: var(--aqua);
}

.btn-secondary:hover {
    background: var(--aqua);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(53, 224, 255, 0.4);
}

/* ============================================
   Why $OMANYTE Section
   ============================================ */
.why-section {
    padding: var(--section-padding);
    background: rgba(15, 20, 40, 0.5);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--fossil-beige), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

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

.mascot-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(156, 78, 219, 0.3));
    animation: fadeInLeft 0.8s ease-out;
}

.why-text {
    animation: fadeInRight 0.8s ease-out;
}

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

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-light);
}

.spiral-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.why-vibes {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-muted);
    font-style: italic;
    padding: 1.5rem;
    background: rgba(156, 78, 219, 0.1);
    border-left: 4px solid var(--purple);
    border-radius: 8px;
}

/* ============================================
   Ancient Energy Section
   ============================================ */
.ancient-energy {
    padding: 3rem 1.5rem;
    background: rgba(5, 8, 18, 0.8);
    text-align: center;
    border-top: 1px solid rgba(156, 78, 219, 0.2);
    border-bottom: 1px solid rgba(156, 78, 219, 0.2);
}

.ancient-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--fossil-beige);
    margin-bottom: 1rem;
}

.ancient-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Links & Contract Section
   ============================================ */
.links-section {
    padding: var(--section-padding);
    background: rgba(10, 14, 39, 0.6);
}

/* Prominent Contract Address */
.contract-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.contract-label {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--fossil-beige);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 20, 40, 0.9);
    border: 2px solid var(--purple);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 40px rgba(156, 78, 219, 0.3);
    transition: all var(--transition-normal);
    gap: 1rem;
}

.contract-address-box:hover {
    border-color: var(--aqua);
    box-shadow: 0 12px 50px rgba(53, 224, 255, 0.4);
    transform: translateY(-2px);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--aqua);
    word-break: break-all;
    flex: 1;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--purple), #7B3DB8);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--aqua), #2BC5E0);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(53, 224, 255, 0.4);
}

.copy-btn:active {
    transform: scale(0.98);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.contract-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Link Cards Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: rgba(15, 20, 40, 0.7);
    border: 2px solid rgba(156, 78, 219, 0.3);
    border-radius: 16px;
    padding: var(--card-padding);
    text-decoration: none;
    color: var(--text-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 78, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: var(--aqua);
    box-shadow: 0 10px 40px rgba(53, 224, 255, 0.3);
    background: rgba(15, 20, 40, 0.9);
}

.link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.link-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.link-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.link-arrow {
    font-size: 1.5rem;
    color: var(--aqua);
    transition: transform var(--transition-normal);
    align-self: flex-end;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 3rem 1.5rem;
    text-align: center;
    background: rgba(5, 8, 18, 0.9);
    border-top: 1px solid rgba(156, 78, 219, 0.2);
}

.footer-main {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* ============================================
   Responsive Design (Mobile-First)
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-supporting {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .mascot-img {
        max-width: 300px;
    }

    .contract-address-box {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
    }

    .contract-address {
        text-align: center;
        margin-bottom: 1rem;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 3rem 1.5rem;
    }
}

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

    .hero-headline {
        font-size: 1.5rem;
    }

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

/* Smooth scroll reveal */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

