/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animated shapes */
.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-circle {
    border-radius: 50%;
    background: linear-gradient(45deg, #e91e63, #f06292);
}

.shape-square {
    background: linear-gradient(45deg, #1a365d, #2d5aa0);
    border-radius: 8px;
}



.shape1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.shape2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation: float2 12s ease-in-out infinite;
}



.shape4 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 10%;
    animation: float4 9s ease-in-out infinite;
}

.shape5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 5%;
    animation: float5 15s ease-in-out infinite;
}

.shape6 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 25%;
    animation: float6 11s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -10px) rotate(270deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-25px, 30px) rotate(120deg);
    }
    66% {
        transform: translate(20px, -15px) rotate(240deg);
    }
}



@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -25px) rotate(90deg);
    }
    50% {
        transform: translate(15px, -50px) rotate(180deg);
    }
    75% {
        transform: translate(35px, -15px) rotate(270deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        transform: translate(15px, -20px) rotate(72deg);
    }
    40% {
        transform: translate(-10px, -35px) rotate(144deg);
    }
    60% {
        transform: translate(-25px, -10px) rotate(216deg);
    }
    80% {
        transform: translate(5px, 10px) rotate(288deg);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-30px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(25px, 25px) rotate(240deg);
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.content-center {
    text-align: center;
    width: 100%;
}

.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-logo {
    height: 150px;
    width: auto;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coming-soon {
    color: #1a1a1a;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a365d;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
}

/* Footer */
.footer {
    padding: 2rem;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: auto;
    animation: fadeIn 2s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #1a365d;
    transform: translateY(-1px);
}

/* Focus styles for accessibility */
.footer-link:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 2rem 1rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .main-logo {
        height: 120px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .main-logo {
        height: 100px;
    }
}