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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

/* Container for consistent width and centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section Styles */
.header {
    padding: 2rem 0;
    position: relative;
    z-index: 100;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Main Content Section */
.main-content {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Coming Soon Content Styling */
.coming-soon-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    /* Initial state for loading animation */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

/* Main Title with Gradient Text Effect */
.main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

/* Title Glow Animation */
@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.8); }
}

/* Subtitle Styling */
.subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
}

/* Individual Feature Item */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 160px;
}

/* Feature Item Hover Effect */
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

/* Feature Icon Styling */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2684fc, #1e6bd8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(38, 132, 252, 0.3);
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

/* UPDATED: Notify Section with Professional Email Integration */
.notify-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 20;
}

.notify-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* NEW: Notify text styling */
.notify-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* NEW: Contact Email Section */
.contact-email {
    margin: 2rem 0;
}

/* NEW: Professional Email Link Styling */
.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* NEW: Notify subtitle */
.notify-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Notification Form Styling */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

/* Form Input Styling */
.notify-form input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Input Focus Effect */
.notify-form input:focus {
    border-color: rgba(38, 132, 252, 0.5);
    box-shadow: 0 0 20px rgba(38, 132, 252, 0.2);
}

/* Form Button Styling */
.notify-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2684fc, #1e6bd8);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(38, 132, 252, 0.3);
    white-space: nowrap;
}

/* Button Hover Effect */
.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(38, 132, 252, 0.4);
}

/* Launch Info Section - UPDATED Styling */
.launch-info {
    font-size: 1.2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 20;
}

.launch-info p {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-block;
    margin: 0 auto;
}

/* Launch Date Badge */
.launch-date {
    background: linear-gradient(135deg, #2684fc, #1e6bd8);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    margin-left: 0.5rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(38, 132, 252, 0.3);
}

/* Floating Elements - Background Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Individual Floating Cards */
.floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: float 8s ease-in-out infinite;
}

/* Floating Card Positions */
.card-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 35%;
    left: 6%;
    animation-delay: 4s;
}

.card-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: 6s;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-25px) rotate(3deg);
        opacity: 0.7;
    }
}

/* Footer Section */
.footer {
    padding: 3rem 0 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

/* Individual Social Link Styling */
.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Social Link Hover Effect */
.social-link:hover {
    background: rgba(38, 132, 252, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(38, 132, 252, 0.3);
}

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

/* RESPONSIVE DESIGN - Mobile and Tablet Styles */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .features {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-item {
        min-width: 140px;
        padding: 1rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    
    .notify-form input {
        min-width: 100%;
        max-width: 350px;
    }
    
    .notify-form button {
        width: 100%;
        max-width: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Hide some floating elements on mobile for cleaner look */
    .card-3, .card-4 {
        display: none;
    }
    
    .launch-info {
        padding: 0 1rem;
    }
    
    .launch-info p {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* NEW: Mobile email link styling */
    .email-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
    }
    
    .notify-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}
