:root {
    --primary: #000000;
    --bg: #ffffff;
    --text: #000000;
    --text-dim: #666666;
    --border: #eeeeee;
    --spacing-lg: 8rem;
    --spacing-md: 4rem;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.btn-login {
    background: #ffffff;
    color: #000000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-login:hover {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    opacity: 1 !important;
}

/* Hero Section */
section.hero {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    text-align: center;
    gap: 2rem;
}

.hero-title {
    padding: 0 5%;
    z-index: 10;
}

.hero-logo {
    height: 80px;
    width: auto;
}

.hero-gallery {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.scroll-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.scroll-track img {
    height: 520px;
    width: 264px; /* Corrected for 1419x2796 ratio */
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}

.hero-footer {
    padding: 0 5%;
    z-index: 10;
    max-width: 1200px;
}

.hero-footer p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    height: 56px;
    transition: transform 0.3s;
}

.badge:hover {
    transform: translateY(-2px);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-dim);
    font-weight: 300;
    font-size: 0.95rem;
}

/* Business Info Section */
section.business {
    padding: 4rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

section.business h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Footer */
footer {
    padding: 6rem 5% 4rem;
    background: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4rem;
}

/* Features Section */
section.features {
    padding: 4rem 5%;
    background: #fafafa;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (max-width: 968px) {
    section.hero {
        padding-top: 10rem;
    }

    .hero-title img {
        height: 60px;
    }

    .hero-footer p {
        font-size: 1.1rem;
    }

    .scroll-track img {
        height: 380px;
        width: 193px; /* Corrected for 1419x2796 ratio */
    }
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
