:root {
    --primary-color: #a07850; /* Bronze from logo */
    --accent-color: #ede5d5;  /* Cream from logo */
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: #000;
    color: var(--text-light);
    overflow: hidden;
    line-height: 1.6;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row; /* Split for desktop */
    background-color: #000;
}

.hero-image {
    width: 50%;
    height: 100%;
    background: url('IMG_7714.JPG.jpg') no-repeat center top;
    background-size: cover;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 80%, #000 100%);
}

.hero-main {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 5;
    background-color: #000;
}

.header {
    position: absolute;
    top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.logo {
    height: 80px;
    width: auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.content {
    width: 100%;
    text-align: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 550px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(160, 120, 80, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--accent-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--accent-color);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
    transform: translateX(3px) translateY(-3px);
}

.footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 200;
    letter-spacing: 0.05em;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        height: 50vh;
        background-position: center top;
    }

    .hero-image::after {
        background: linear-gradient(to bottom, transparent 80%, #000 100%);
    }

    .hero-main {
        width: 100%;
        height: auto;
        min-height: 50vh;
        padding: 4rem 1.5rem; /* Increased padding */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .header {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .title {
        font-size: 2.2rem;
    }
    
    .glass-card {
        padding: 0;
        border: none;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    .logo {
        height: 50px;
    }

    .footer {
        position: relative;
        bottom: 0;
        margin-top: 3rem;
    }
}
