/* 
GIDMA Coming Soon - Custom CSS
Color Palette from Client:
1. Darkest Navy Blue: #0A1F3D (background)
2. Deep Navy Blue: #112D4E
3. Medium Blue: #1E3A5F
4. Dark Gray-Blue: #3D4E60
5. Light Gray: #A7B0BD
*/

/* Base Styles */
:root {
    --darkest-navy: #0A1F3D;
    --deep-navy: #112D4E;
    --medium-blue: #1E3A5F;
    --gray-blue: #3D4E60;
    --light-gray: #A7B0BD;
    --white: #ffffff;
    --accent: #4A90E2; /* Complementary accent color */
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darkest-navy) 0%, var(--deep-navy) 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main Container */
.container-fluid {
    background: radial-gradient(circle at 20% 30%, rgba(16, 45, 78, 0.8) 0%, rgba(10, 31, 61, 0.9) 70%);
    padding: 2rem 1rem;
}

/* Logo Section */
.logo-container {
    text-align: center;
}

.logo-image-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.logo-image-container:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.logo-img {
    max-width: 100%;
    height: auto;
    filter: brightness(1.2) contrast(1.3) drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: filter 0.3s ease;
}

.logo-image-container:hover .logo-img {
    filter: brightness(1.3) contrast(1.4) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.logo-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 1.5rem !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Coming Soon Title */
.coming-soon-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    background: linear-gradient(to right, var(--white), var(--light-gray));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px;
}

.description {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Countdown Timer */
.countdown-container {
    max-width: 900px;
    margin: 0 auto;
}

.countdown-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--white);
    font-size: 1.8rem;
}

.countdown-box {
    background: rgba(30, 58, 95, 0.7);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    margin: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    background: rgba(30, 58, 95, 0.9);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Notify Form */
.notify-form h3 {
    color: var(--white);
    font-weight: 600;
}

.input-group {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    height: auto;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-notify {
    background: linear-gradient(to right, var(--medium-blue), var(--accent));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-notify:hover {
    background: linear-gradient(to right, var(--accent), var(--medium-blue));
    transform: scale(1.05);
}

.form-note {
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Social Links */
.social-links h4 {
    color: var(--white);
    font-weight: 600;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px) scale(1.1);
    color: var(--white);
    text-decoration: none;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1200px;
}

.footer-text {
    color: var(--light-gray);
    font-size: 1rem;
}

.footer-contact {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .logo-image-container {
        max-width: 350px;
        padding: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon-title {
        font-size: 3.5rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .logo-image-container {
        max-width: 300px;
        padding: 1rem;
    }
    
    .logo-subtitle {
        font-size: 1.1rem;
    }
    
    .coming-soon-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .countdown-box {
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }
}

@media (max-width: 576px) {
    .logo-image-container {
        max-width: 250px;
        padding: 0.8rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .btn-notify {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 0.2rem;
    }
    
    .footer-text, .footer-contact {
        font-size: 0.9rem;
    }
}

/* Animation for subtle effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container, .content, .countdown-container, .notify-form, .social-links {
    animation: fadeInUp 0.8s ease-out forwards;
}

.countdown-container {
    animation-delay: 0.2s;
}

.notify-form {
    animation-delay: 0.4s;
}

.social-links {
    animation-delay: 0.6s;
}
/* One-line Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15px;
}

footer.footer-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

footer.footer-inline p {
    margin: 0;
}

