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

:root {
    --primary-yellow: #FFD700;
    --accent-yellow: #FFA500;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --text-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
}

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

/* 3D Bee Container */
#container3D {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

#container3D canvas {
    display: block;
}

/* Flying Wasps Animation (Fallback) */
.flying-wasps {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wasp {
    position: absolute;
    font-size: 20px;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.wasp-1 {
    animation: fly1 15s infinite;
    animation-delay: 0s;
}

.wasp-2 {
    animation: fly2 18s infinite;
    animation-delay: 3s;
}

.wasp-3 {
    animation: fly3 20s infinite;
    animation-delay: 6s;
}

.wasp-4 {
    animation: fly4 16s infinite;
    animation-delay: 9s;
}

.wasp-5 {
    animation: fly5 22s infinite;
    animation-delay: 12s;
}

@keyframes fly1 {
    0% {
        transform: translate(-50px, 100vh) rotate(0deg);
    }

    25% {
        transform: translate(20vw, 70vh) rotate(90deg);
    }

    50% {
        transform: translate(80vw, 30vh) rotate(180deg);
    }

    75% {
        transform: translate(60vw, 80vh) rotate(270deg);
    }

    100% {
        transform: translate(-50px, 100vh) rotate(360deg);
    }
}

@keyframes fly2 {
    0% {
        transform: translate(100vw, 50vh) rotate(0deg);
    }

    25% {
        transform: translate(70vw, 20vh) rotate(-90deg);
    }

    50% {
        transform: translate(30vw, 60vh) rotate(-180deg);
    }

    75% {
        transform: translate(10vw, 30vh) rotate(-270deg);
    }

    100% {
        transform: translate(100vw, 50vh) rotate(-360deg);
    }
}

@keyframes fly3 {
    0% {
        transform: translate(50vw, -50px) rotate(0deg);
    }

    25% {
        transform: translate(80vw, 40vh) rotate(120deg);
    }

    50% {
        transform: translate(20vw, 80vh) rotate(240deg);
    }

    75% {
        transform: translate(40vw, 20vh) rotate(360deg);
    }

    100% {
        transform: translate(50vw, -50px) rotate(480deg);
    }
}

@keyframes fly4 {
    0% {
        transform: translate(-50px, 30vh) rotate(0deg);
    }

    25% {
        transform: translate(40vw, 10vh) rotate(-120deg);
    }

    50% {
        transform: translate(90vw, 70vh) rotate(-240deg);
    }

    75% {
        transform: translate(50vw, 90vh) rotate(-360deg);
    }

    100% {
        transform: translate(-50px, 30vh) rotate(-480deg);
    }
}

@keyframes fly5 {
    0% {
        transform: translate(30vw, 100vh) rotate(0deg);
    }

    25% {
        transform: translate(70vw, 60vh) rotate(90deg);
    }

    50% {
        transform: translate(10vw, 20vh) rotate(180deg);
    }

    75% {
        transform: translate(90vw, 40vh) rotate(270deg);
    }

    100% {
        transform: translate(30vw, 100vh) rotate(360deg);
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    text-decoration: none;
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon fill="none" stroke="%23FFD700" stroke-width="0.5" stroke-opacity="0.1" points="24,0 49,14.5 49,43.4 24,57.9 -1,43.4 -1,14.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--primary-black);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 80px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 80px;
    left: 120px;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@keyframes float {

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

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Hexagon Grid */
.hexagon-grid {
    position: relative;
    height: 300px;
}

.hexagon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 2s ease-in-out infinite;
}

.hex-1 {
    top: 0;
    left: 40px;
    animation-delay: 0s;
}

.hex-2 {
    top: 60px;
    left: 0;
    animation-delay: 0.3s;
}

.hex-3 {
    top: 60px;
    left: 80px;
    animation-delay: 0.6s;
}

.hex-4 {
    top: 120px;
    left: 40px;
    animation-delay: 0.9s;
}

.hex-5 {
    top: 180px;
    left: 0;
    animation-delay: 1.2s;
}

.hex-6 {
    top: 180px;
    left: 80px;
    animation-delay: 1.5s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

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

/* Coming Soon Section */
.coming-soon {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.coming-soon-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--gradient-yellow);
    color: var(--primary-black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.submit-btn:active .btn-ripple {
    width: 200px;
    height: 200px;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.modal-content p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .form-group {
        flex-direction: column;
    }

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

    .flying-wasps {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .feature-card {
        padding: 2rem;
    }
}