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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 0 100% 0 100%;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 20%;
    right: 20%;
    animation-delay: 2s;
    transform: rotate(135deg);
}

.leaf-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(225deg);
}

.leaf-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
    transform: rotate(315deg);
}

.leaf-5 {
    top: 50%;
    left: 5%;
    animation-delay: 3s;
    transform: rotate(90deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Main Content */
.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

.tagline {
    font-size: 1rem;
    color: #666;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.coming-soon-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 5px 30px rgba(76, 175, 80, 0.3);
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.input-group button {
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.input-group button:hover {
    transform: scale(1.05);
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-section p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Links Section */
.links-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.policy-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.policy-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.policy-link:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.policy-link i {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    margin-top: 3rem;
    padding: 2rem 0;
    color: #666;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.5s both;
    text-align: center;
}

.footer-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2E7D32;
    text-decoration: underline;
}

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

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

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes handleWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes leafBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes leafGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.8));
    }
}

@keyframes stemSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

@keyframes cartBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-8px) scale(1.02);
    }
    60% {
        transform: translateY(-4px) scale(1.01);
    }
}

@keyframes wheelSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes handleSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

@keyframes leafFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
    }
    50% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@keyframes logoHover {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.01);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1.5rem 1rem;
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}
