/* Reset & Variables */
:root {
    --bee-yellow: #FFD700;
    --bee-black: #000000;
    --bee-white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bee-white);
    color: var(--bee-black);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem;
    z-index: 1000;
}

.logo-container {
    width: 50px;
}

.nav-logo {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: var(--bee-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--bee-black);
    text-decoration: none;
    color: var(--bee-black);
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--bee-black);
    color: var(--bee-yellow);
}

/* Sections General */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Manifesto Section */
.manifesto-section {
    background-color: var(--bee-white);
}

.manifesto-text-block {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.manifesto-text-block.pt-version {
    font-size: 1.2rem;
    color: #666;
    margin-top: 3rem;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    display: block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Drops Section */
.drops-section {
    background-color: #f9f9f9;
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: transparent;
    padding: 1rem;
    text-align: left;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.drops-cta .cta-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.drops-cta .cta-link {
    font-size: 2rem;
    font-weight: 900;
    text-decoration: underline;
    color: var(--bee-black);
    transition: color 0.3s;
}

.drops-cta .cta-link:hover {
    color: #555;
    text-decoration: none;
}

.cta-subtext-pt {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Teaser Section (Drop 002) */
.teaser-section {
    background-color: var(--bee-black);
    color: var(--bee-white);
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teaser-content .teaser-text {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* About Section */
.about-section {
    background-color: var(--bee-white);
    padding: 6rem 2rem;
}

.about-content {
    font-size: 2rem;
    line-height: 1.6;
}

.about-content .highlight {
    font-weight: 900;
}

/* Footer */
.footer {
    background-color: var(--bee-black);
    color: var(--bee-white);
    padding: 4rem 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--bee-white);
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .manifesto-text-block {
        font-size: 1.5rem;
    }

    .drops-grid {
        grid-template-columns: 1fr;
    }
}
