/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: auto; /* Allow scrolling */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 20%, #4a5568 40%, #667eea 70%, #764ba2 100%);
    position: relative;
}

/* Animated Background Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(45, 55, 72, 0.2) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(20px); }
}

/* Main Wrapper */
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Container */
.container {
    display: flex;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    min-height: calc(100vh - 120px); /* Account for padding */
}

/* Left Section - Profile */
.left-section {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 0 30px 30px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100%;
}

.profile-container {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 35% center; /* Move image content further to the left to center the person */
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 15px rgba(255, 255, 255, 0.15);
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Contact & Social */
.contact-social {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.contact-item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* X Icon Styling */
.x-icon {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    display: inline-block;
    line-height: 1;
}

/* Right Section - Content */
.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    min-height: 100%;
    overflow-y: auto;
}

.welcome-content {
    margin-bottom: 30px;
    flex-shrink: 0;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}



.intro-text {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.intro-text p:last-of-type {
    margin-bottom: 20px;
}

.coming-soon-badge {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.coming-soon-badge strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Countdown Container */
.countdown-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.countdown-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 15px;
    border-radius: 15px;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.time-unit:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.time-unit .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.time-unit .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 40px 20px;
    }
    
    .left-section {
        flex: 0 0 350px;
    }
    
    .right-section {
        padding: 30px 40px;
    }
    
    .welcome-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
        padding: 30px 15px;
        min-height: auto;
    }
    
    .left-section {
        flex: 0 0 auto;
        border-radius: 0;
        padding: 30px 20px;
        height: auto;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .right-section {
        flex: 1;
        padding: 20px 30px;
        justify-content: flex-start;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .intro-text {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .countdown-container {
        padding: 20px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .time-unit .number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .left-section {
        padding: 25px 15px;
    }
    
    .profile-container {
        margin-bottom: 25px;
    }
    
    .contact-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .right-section {
        padding: 20px 15px;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .intro-text p {
        font-size: 0.95rem;
    }
    
    .countdown {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .time-unit {
        min-width: 65px;
        padding: 12px 8px;
    }
    
    .time-unit .number {
        font-size: 1.6rem;
    }
    
    .time-unit .label {
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.left-section {
    animation: slideInLeft 0.8s ease-out;
}

.right-section {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.profile-image {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.countdown {
    animation: fadeInUp 1s ease-out 0.8s both;
}