@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background-color: #D6E3D6;
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow-x: hidden;
}

/* Background Animated Elements */
.bg-glow {
    position: fixed;
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, rgba(0, 102, 0, 0.08) 0%, rgba(214, 227, 214, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.container {
    background: #f9f8f8;
    border: 1px solid rgba(0, 102, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 102, 0, 0.15), 0 0 20px rgba(0, 102, 0, 0.08);
    padding: 3.5rem 2.5rem;
    max-width: 700px;
    width: 100%;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    background: #ffffff;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.logo:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px -8px rgba(0, 102, 0, 0.2);
}

.hero-image-container {
    margin-bottom: 0;
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.bike-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover .bike-image {
    transform: scale(1.03);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #005000;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
    margin-top: -1.5rem;
    text-shadow: 0 4px 10px rgba(255, 255, 255, 0.9);
}

.message {
    font-size: 1.1rem;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 102, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #006600;
    border: 2px solid #005000;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 102, 0, 0.2);
}

.link-button:hover {
    background: #005000;
    border-color: #004400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 0, 0.3);
    color: #ffffff;
}

.link-button svg {
    transition: transform 0.3s ease;
}

.link-button:hover svg {
    transform: scale(1.1);
}

footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 500;
}