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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a4a4d;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('https://placehold.co/1920x1080/1a4a4d/1a4a4d');
    background-size: cover;
    background-position: center;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 74, 77, 0.6);
    z-index: 1;
}

/* Header styles */
header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* Main content styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    text-align: center;
    max-width: 48rem;
}

.brand-logo {
    font-size: 10rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #f0c060, #c17e17);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h1 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    border-radius: 2px;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer styles */
footer {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .brand-logo {
        font-size: 7rem;
    }

    h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    header, footer {
        padding: 1.5rem;
    }

    .brand-logo {
        font-size: 5rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}
