/* ========================================
   McdAmac B.V. - Elegant Minimal
   ======================================== */

:root {
    --primary: #1a3a5f;
    --primary-light: #2c5282;
    --text: #3a3a3a;
    --text-light: #718096;
    --bg: #f0f4f8;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.92);
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eef5 0%, #f0f4f8 40%, #e2eaf3 100%);
}

.bg-shapes::before,
.bg-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.bg-shapes::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 58, 95, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.bg-shapes::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 90, 107, 0.12) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: -6s;
}

.shape-1,
.shape-2,
.shape-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: float 15s ease-in-out infinite;
    animation-delay: -3s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 58, 95, 0.1) 0%, transparent 70%);
    top: 20%;
    right: 25%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -8s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(58, 90, 107, 0.08) 0%, transparent 70%);
    bottom: 30%;
    right: 15%;
    animation: float 20s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-10px, 20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

/* ========================================
   HERO / LANDING
   ======================================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow:
        0 4px 6px -1px rgba(26, 58, 95, 0.05),
        0 20px 40px -10px rgba(26, 58, 95, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 12px -2px rgba(26, 58, 95, 0.08),
        0 30px 60px -15px rgba(26, 58, 95, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
}

.logo-wrap {
    margin-bottom: 2rem;
}

.logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tagline {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0.4;
    margin: 0 auto 1.5rem;
}

.contact-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(26, 58, 95, 0.15);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
    border-color: rgba(26, 58, 95, 0.3);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(26, 58, 95, 0.08);
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 480px) {
    .card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .logo-img {
        max-width: 220px;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
}
