/* Coming Soon Page Styles */
.coming-soon-section.fullscreen {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/coming-soon-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.center-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(46, 204, 113, 0.8);
    animation: pulse 2s ease-in-out infinite alternate;
}

.center-content p {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 0;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 40px rgba(46, 204, 113, 0.8), 0 0 60px rgba(46, 204, 113, 0.4);
        transform: scale(1.05);
    }
}

/* Seedling Animation (replaced grass) */
.grass-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    overflow: visible;
    z-index: 2;
}

.grass {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: var(--primary-color);
    z-index: -1;
}

.seedling-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.seedling {
    position: relative;
    margin-bottom: 0;
    transform-origin: bottom center;
}

.seedling-stem {
    width: 6px;
    height: 0;
    background: linear-gradient(to right, #1d8a47, #23b55d, #1d8a47);
    margin: 0 auto;
    border-radius: 3px;
    animation: growStem 3s ease-out forwards, swayingStem 4s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(35, 181, 93, 0.3);
}

.seedling-leaf {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg) scale(0);
    transform-origin: bottom right;
    box-shadow: 0 0 10px rgba(35, 181, 93, 0.3);
}

.seedling-leaf-left {
    width: 25px;
    height: 35px;
    left: -20px;
    animation: growLeafLeft 2s ease-out 1s forwards, swayingLeaf 4s ease-in-out infinite alternate;
}

.seedling-leaf-right {
    width: 35px;
    height: 25px;
    right: -20px;
    border-radius: 50% 50% 0 50%;
    transform: rotate(-45deg) scale(0);
    transform-origin: bottom left;
    animation: growLeafRight 2s ease-out 1.5s forwards, swayingLeaf 4s ease-in-out 0.5s infinite alternate;
}

.seedling-leaf-top {
    width: 20px;
    height: 40px;
    left: -7px;
    top: -35px;
    animation: growLeafTop 2s ease-out 2s forwards, swayingLeafTop 4s ease-in-out 1s infinite alternate;
}

@keyframes growStem {
    0% {
        height: 0;
    }
    100% {
        height: 80px;
    }
}

@keyframes swayingStem {
    0% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(2deg);
    }
}

@keyframes growLeafLeft {
    0% {
        transform: rotate(45deg) scale(0);
    }
    100% {
        transform: rotate(45deg) scale(1);
    }
}

@keyframes growLeafRight {
    0% {
        transform: rotate(-45deg) scale(0);
    }
    100% {
        transform: rotate(-45deg) scale(1);
    }
}

@keyframes growLeafTop {
    0% {
        transform: rotate(0deg) scale(0);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes swayingLeaf {
    0% {
        transform: rotate(43deg) scale(1);
    }
    100% {
        transform: rotate(47deg) scale(1);
    }
}

@keyframes swayingLeafTop {
    0% {
        transform: rotate(-2deg) scale(1);
    }
    100% {
        transform: rotate(2deg) scale(1);
    }
}

/* Computer Animation */
.computer-animation {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 3;
    perspective: 1000px;
}

.computer {
    width: 400px;
    height: 300px;
    position: relative;
    transform: rotateY(-20deg) rotateX(5deg);
    transform-style: preserve-3d;
    animation: computerFloat 3s ease-in-out infinite alternate;
}

@keyframes computerFloat {
    0% {
        transform: rotateY(-20deg) rotateX(5deg) translateY(0);
    }
    100% {
        transform: rotateY(-15deg) rotateX(3deg) translateY(-15px);
    }
}

.computer-screen {
    width: 350px;
    height: 220px;
    background: #111;
    border-radius: 10px;
    border: 12px solid #333;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.code-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    overflow: hidden;
}

.code-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.2;
    color: #00ff00;
    margin: 0;
    white-space: pre;
    padding: 0;
    animation: codeScroll 20s linear infinite;
}

@keyframes codeScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-500px);
    }
}

.computer-base {
    width: 400px;
    height: 25px;
    background: #333;
    position: absolute;
    bottom: -25px;
    left: -25px;
    border-radius: 0 0 20px 20px;
    transform: rotateX(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.computer-base::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: #222;
    border-radius: 5px;
}

/* Glowing Effect */
.computer-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(46, 204, 113, 0.3), transparent);
    z-index: 1;
    animation: glowEffect 3s ease-in-out infinite alternate;
}

@keyframes glowEffect {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Animation Classes */
.animate-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .computer-animation {
        right: 5%;
    }
    
    .computer {
        transform: scale(0.9) rotateY(-20deg) rotateX(5deg);
    }
}

@media screen and (max-width: 992px) {
    .center-content h1 {
        font-size: 4rem;
    }
    
    .center-content {
        width: 100%;
    }
    
    .computer-animation {
        position: absolute;
        bottom: 200px;
        top: auto;
        right: 50%;
        transform: translateX(50%) scale(0.8);
    }
    
    .seedling-container {
        height: 120px;
    }
    
    .seedling-stem {
        animation-name: growStem-small;
    }
    
    @keyframes growStem-small {
        0% {
            height: 0;
        }
        100% {
            height: 60px;
        }
    }
}

@media screen and (max-width: 768px) {
    .center-content h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .center-content p {
        font-size: 1.2rem;
    }
    
    .computer {
        transform: scale(0.6);
    }
    
    .computer-animation {
        bottom: 150px;
    }
    
    .seedling-leaf-left, .seedling-leaf-right {
        width: 20px;
        height: 25px;
    }
    
    .seedling-leaf-top {
        width: 15px;
        height: 30px;
    }
}

@media screen and (max-width: 576px) {
    .center-content h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .center-content p {
        font-size: 1rem;
    }
    
    .computer {
        transform: scale(0.5);
    }
    
    .computer-animation {
        bottom: 120px;
    }
    
    .seedling-container {
        height: 100px;
    }
    
    .seedling-stem {
        width: 4px;
    }
    
    .seedling-leaf-left, .seedling-leaf-right {
        width: 15px;
        height: 20px;
    }
    
    .seedling-leaf-top {
        width: 12px;
        height: 25px;
    }
} 