@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --color: #CD7F32;
    --hover: #DA8A67;
    --gold: #FFD700;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

/* Header */
header {
    background: var(--glass);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(230, 180, 34, 0.2);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--color));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--color);
}

nav a:hover::after {
    width: 100%;
}

/* Cover Section */
.cover {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/desmos3.png");
    padding: 6vw;
    overflow: hidden;
}
f
.cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/sponsors-cover.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.cover__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cover h1 {
    color: var(--black);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.cover p {
    color: var(--black);
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Button Styles */
.button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--color);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button:hover {
    transform: scale(1.05);
    background-color: #ffca2c;
}

/* Spacer */
.spacer {
    height: 80px;
}

/* Constrained Group */
.group {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.group h2 {
    color: var(--black);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.group p {
    color: var(--dark-gray);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}
