:root {
    --bg-overlay: rgba(10, 25, 47, 0.7); /* Deep blue overlay to make text pop while fitting "water/clean" theme */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --accent: #2196F3;
    --accent-hover: #1976D2;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(16px);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    background-color: #0f172a;
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

/* Background image handling with overlay */
.bg-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('img/header.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}
.bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.dashboard {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-info {
    animation: fadeUp 0.8s ease-out;
}

.hero-info h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    animation: fadeLeft 0.8s ease-out 0.2s both;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-section {
    margin-bottom: 2.5rem;
}
.card-section:last-child {
    margin-bottom: 0;
}

.card-section h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

address {
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.6;
}
address small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

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

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 968px) {
    .dashboard {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 3rem;
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    body {
        overflow-y: auto; /* Allow scroll on smaller screens */
    }

    .hero-info h1 {
        font-size: 3rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
}
@media (max-width: 480px) {
    .hero-info h1 {
        font-size: 2.5rem;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}
