:root {
    /* Primary Colors */
    --clr-bg: #ffffff;
    /* White background */
    --clr-text: #4a4a4a;
    /* Text color matching screenshot */
    --clr-heading: #505050;
    /* Dark grey for titles */
    --clr-red: #ed1c24;
    /* Specific red used in the logo and text */

    /* Typography */
    --font-heading: 'Signika', sans-serif;
    --font-text: 'Heebo', sans-serif;

    /* Animations */
    --transition-smooth: 0.3s ease;
}

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Effects */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.03;
    /* Extremely subtle */
    animation: float 20s ease-in-out infinite alternate;
}

.glow-orb.red {
    background: radial-gradient(circle, var(--clr-red) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.glow-orb.silver {
    background: radial-gradient(circle, #a0a0a0 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* Header & Logo */
.header {
    width: 100%;
    padding: 2rem 0;
}

.logo-wrapper {
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.logo {
    height: 60px;
    /* Scaled down logo */
    width: auto;
    object-fit: contain;
}

/* Typography elements */
.content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--clr-heading);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.highlight {
    color: var(--clr-red);
}

.subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--clr-text);
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

/* Contact Card */
.contact-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    margin: 0 auto;
    transition: transform var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--clr-heading);
}

.address-tel {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.address-tel em {
    font-style: italic;
}

.contact-link {
    display: inline-block;
    color: var(--clr-red);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    background: rgba(237, 28, 36, 0.06);
    border: 1px solid rgba(237, 28, 36, 0.2);
    border-radius: 40px;
    transition: all var(--transition-smooth);
}

.contact-link:hover {
    background: rgba(237, 28, 36, 0.12);
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem 0 1rem;
    font-size: 0.95rem;
    color: #999;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .logo {
        height: 45px;
    }

    .glow-orb {
        width: 400px;
        height: 400px;
    }
}