:root {
    --primary-purple: #301934;
    --secondary-teal: #80CBC4;
    --accent-pink: #F4C2C2;
    --digital-gold: #D4AF37;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Background Energy Effect */
.energy-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(128, 203, 196, 0.05), transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(48, 25, 52, 0.03), transparent 50%);
    animation: bg-move 20s infinite alternate ease-in-out;
}

@keyframes bg-move {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2) translate(2% 2%);
    }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: var(--transition-fast);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 120px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 20px rgba(128, 203, 196, 0.2));
    animation: branding-pulse 4s ease-in-out infinite;
}

header.scrolled .logo img {
    height: 60px;
    animation: none;
}

@keyframes branding-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(128, 203, 196, 0.2));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(128, 203, 196, 0.4));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--digital-gold);
    transition: var(--transition-fast);
}

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

.nav-links a:hover {
    color: var(--digital-gold);
}

/* Sections General */
section {
    padding: 100px 10%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-purple);
}

/* Hero Section */
.hero {
    flex-direction: row;
    align-items: center;
    padding-top: 150px;
    background: radial-gradient(circle at 10% 10%, rgba(244, 194, 194, 0.1), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(128, 203, 196, 0.1), transparent 40%);
}

.hero-content {
    flex: 1;
    padding-right: 5%;
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--digital-gold);
    border: 1px solid var(--digital-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--digital-gold);
    transition: var(--transition-fast);
    z-index: -1;
}

.cta-button:hover {
    color: var(--white);
}

.cta-button:hover::before {
    left: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.secondary-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.secondary-link:hover {
    color: var(--primary-purple);
    border-bottom: 1px solid var(--primary-purple);
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    display: block;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Shop Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128, 203, 196, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.product-card:hover .glow-effect {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary-purple);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--digital-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.add-to-cart {
    padding: 1rem 2rem;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.add-to-cart:hover {
    background: var(--digital-gold);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.service-card.highlight {
    background: var(--primary-purple);
    color: var(--white);
}

.service-card.highlight h3,
.service-card.highlight .price {
    color: var(--digital-gold);
}

.service-card:hover {
    border-color: var(--digital-gold);
    background: rgba(212, 175, 55, 0.05);
}

.service-card.highlight:hover {
    background: #412246;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--digital-gold);
}

/* Science Section */
.science-section {
    background: var(--bg-light);
}

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

.science-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.science-text p {
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--digital-gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.science-visuals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.science-visuals img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.science-visuals img:nth-child(1) {
    grid-column: span 2;
}

.science-visuals img:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* About Us */
.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bottom-brand {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 4rem;
}

.large-logo {
    max-width: 800px;
    width: 95%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.23));
    transition: var(--transition-slow);
}

.large-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.4));
}

/* Footer Control */
footer {
    background: var(--primary-purple);
    color: var(--white);
    padding: 80px 10% 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--digital-gold);
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 1000px;
    margin: 0 auto;
}

.copyright {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   Burger Menu Toggle
   ===================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    transform: rotate(-45deg);
}

/* =====================
   Tablet (≤ 1024px)
   ===================== */
@media (max-width: 1024px) {
    section {
        padding: 80px 6%;
    }

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

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

    .science-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* =====================
   Mobile (≤ 768px)
   ===================== */
@media (max-width: 768px) {

    /* Header & Nav */
    header {
        padding: 1rem 5%;
    }

    header.scrolled {
        padding: 0.6rem 5%;
    }

    .logo img {
        height: 70px;
        animation: none;
    }

    header.scrolled .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(15px);
        padding: 120px 3rem 3rem;
        gap: 2.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        transition: right 0.4s ease;
        z-index: 1050;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Mobile overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1040;
    }

    .nav-overlay.open {
        display: block;
    }

    /* Sections */
    section {
        padding: 70px 5%;
        min-height: auto;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1px;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: 100svh;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.15;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-visual img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: contain;
    }

    .floating {
        animation: none;
        /* Disable on mobile for performance */
    }

    /* Shop */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image {
        height: 260px;
    }

    .product-info {
        padding: 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Science */
    .science-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .science-text h3 {
        font-size: 1.4rem;
    }

    .science-visuals {
        grid-template-columns: 1fr;
    }

    .science-visuals img:nth-child(1) {
        grid-column: span 1;
    }

    .stats {
        gap: 2rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    /* About / Brand end */
    .about-section {
        max-width: 100%;
    }

    .bottom-brand {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .large-logo {
        max-width: 320px;
        width: 90%;
    }

    /* Footer */
    footer {
        padding: 50px 6% 20px;
    }

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
/* =====================
   Legal Pages
   ===================== */

.legal-page {
    padding-top: 150px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.legal-content h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

