:root {
    --bg-color: #C1DAF0; /* Light blue from the logo background */
    --primary-color: #7B2234; /* Maroon from the text */
    --accent-color: #f7f6f1; /* Off-white from the 'eyes' */
    --text-dark: #333333;
    --text-light: #555555;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Full Width Image Container */
.hero-image-container {
    width: 100vw;
    height: 60vh; /* Adjusts to show a good portion of the logo */
    background-color: var(--bg-color);
    overflow: hidden;
}

.full-width-image {
    width: 100vw;
    height: 100%;
    border: none;
    object-fit: cover;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(193, 218, 240, 0), rgba(255, 255, 255, 0.7));
}

.content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    animation: fadeUp 1s ease-out forwards;
    position: relative;
    z-index: 2;
}

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

.title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #a03147, var(--primary-color));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    animation: gradientPulse 3s linear infinite;
}

@keyframes gradientPulse {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.8rem;
    }
    
    .hero-image-container {
        height: 45vh;
    }
}
