@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-gold: #fdb913;
    --primary-navy: #003366;
    --navy-dark: #001f3f;
    --navy-light: #004d99;
    --accent-blue: #007bff;
    --text-dark: #1a1a1a;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, var(--primary-navy), var(--navy-dark));
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Outfit', sans-serif;
}

/* Background Animation */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-gold);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: move 20s infinite alternate;
}

.blob-2 {
    background: var(--navy-light);
    right: -100px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    animation-delay: -5s;
}

@keyframes move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 100px);
    }
}

/* Header */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.college-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(253, 185, 19, 0.3));
    transition: var(--transition);
}

.college-logo:hover {
    transform: scale(1.05);
}

.brand-name h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--text-white);
}

/* Hero Section */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    text-align: center;
}

.status-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: flow 3s infinite;
}

@keyframes flow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.working-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(253, 185, 19, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.status-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: var(--primary-gold);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--primary-gold);
    position: relative;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Features/Info */
.info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 3rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 2rem 5%;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-info span {
    margin: 0 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .brand-name h1 {
        font-size: 1.3rem;
    }

    .status-card {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .status-card h2 {
        font-size: 1.6rem;
    }

    .info-sections {
        grid-template-columns: 1fr;
    }

    .contact-info span {
        display: block;
        margin: 0.5rem 0;
    }

    .notify-form div {
        flex-direction: column;
    }
}

/* Floating Animation for card */
.status-card {
    animation: float 6s ease-in-out infinite;
}

.notify-form button:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 185, 19, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}