/*
Theme Name: Green Mint Cloud Coming Soon
Theme URI: https://greenmint.cloud
Description: A modern coming soon page theme for Green Mint Cloud
Author: Green Mint Cloud
Author URI: https://greenmint.cloud
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenmint-coming-soon
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/



/* Root Variables */
:root {
    --primary-green: #2d8659;
    --light-green: #4CAF50;
    --dark-green: #1b5e3f;
    --gold: #f4c430;
    --light-bg: #f8fafb;
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 196, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.coming-soon-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-wrapper {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

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

.logo-wrapper img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Headings */
.coming-soon-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Description */
.coming-soon-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Email Section */
.email-section {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(244, 196, 48, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid var(--light-green);
}

.email-section p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.email-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.email-link:hover {
    color: var(--light-green);
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--light-green);
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(76, 175, 80, 0.2);
}

.social-links p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 40px 20px;
    }

    .coming-soon-content h1 {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.1rem;
    }

    .coming-soon-description {
        font-size: 1rem;
    }

    .email-link {
        font-size: 1rem;
    }

    .logo-wrapper img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .coming-soon-content h1 {
        font-size: 2rem;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }

    .coming-soon-description {
        font-size: 0.95rem;
    }

    .email-section {
        padding: 20px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .logo-wrapper img {
        max-width: 120px;
    }
}

/* Hide WordPress admin bar for visitors */
body:not(.wp-admin) {
    padding-top: 0 !important;
}

/* Remove default WordPress styles that might interfere */
.wp-site-blocks,
.wp-block-template-part,
.wp-block-group {
    margin: 0;
    padding: 0;
}
