:root {
    --primary-red: #da2027; /* Crimson Red from Flag */
    --primary-blue: #003594; /* Royal Blue from Flag */
    --accent-gold: #ffcc00;
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image and Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -2;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(15, 23, 42, 0.8));
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    z-index: 10;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shine 8s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Logo Styling */
.logo {
    display: inline-block;
    margin-bottom: 20px;
}

.logo-img {
    max-height: 120px; /* Adjust height based on logo proportions */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* Title & Content */
.title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    margin: 0 auto 2.5rem;
}

/* Contact Button */
.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 14px 28px;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 53, 148, 0.3);
}

.email-btn svg {
    opacity: 0.8;
}

/* Footer Section */
.footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Animated Circles in Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: move 20s linear infinite alternate;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-red);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .glass-card {
        padding: 40px 20px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
}
