/* Modern Reset & Base Styles */
:root {
    --bg-color: #f8f9fa;
    /* Very light gray, almost white */
    --text-primary: #1a1a2e;
    /* Dark blue-black for high contrast */
    --text-secondary: #5a5a70;
    /* Muted dark gray */
    --accent-color: #d4af37;
    /* Gold, slightly darker for visibility on white */
    --glass-bg: rgba(255, 255, 255, 0.7);
    /* More opaque white for glass */
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-color: rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

/* Background Effects */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Subtle light gradient */
    background: radial-gradient(circle at center, #ffffff 0%, #eef1f5 70%);
    z-index: -2;
    animation: rotateBackground 60s linear infinite;
}

body::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* Subtle pattern for texture */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* Main Container */
.container {
    max-width: 800px;
    width: 100%;
    z-index: 1;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo {
    max-width: 250px;
    height: auto;
    /* Drop shadow to make it pop on white if it has white parts, otherwise keeps it grounded */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    /* Dark gradient for text */
    background: linear-gradient(135deg, #1a1a2e 0%, #4a4a6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    /* Slightly bolder for light mode */
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

p.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Address & Contact */
.footer-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Darker border for light mode */
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.icon {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .container {
        padding: 25px;
    }
}