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

body {
    background: #17120f;
    color: #f5eee5;
    font-family: Arial, sans-serif;
}

nav {
    width: 100%;
    padding: 30px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    letter-spacing: 8px;
    color: #d6a85b;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu a {
    color: #f5eee5;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero {
    min-height: calc(100vh - 100px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 60px 10%;
    overflow: hidden;
}

.hero-text {
    max-width: 550px;
    z-index: 2;
}

.small-title {
    color: #d6a85b;
    letter-spacing: 5px;
    font-size: 13px;
    margin-bottom: 25px;
}

h1 {
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 0.95;
    font-weight: 400;
}

h1 span {
    color: #d6a85b;
    font-style: italic;
}

.description {
    max-width: 430px;
    margin-top: 35px;

    color: #cfc2b5;
    line-height: 1.7;
    font-size: 16px;
}

.button {
    display: inline-block;

    margin-top: 40px;
    padding: 17px 38px;

    background: #d6a85b;
    color: #17120f;

    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;

    transition: 0.3s;
}

.button:hover {
    background: #f0cc8b;
    transform: translateY(-3px);
}

.glow {
    width: 45%;
    height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.gold-circle {
    width: 420px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 50% 40%,
            #f5d48a 0%,
            #c99542 25%,
            #76501e 55%,
            transparent 72%
        );

    filter: blur(8px);

    box-shadow:
        0 0 80px #c99542,
        0 0 180px rgba(214, 168, 91, 0.35);

    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        transform: scale(0.95);
        opacity: 0.7;
    }

    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media (max-width: 800px) {

    nav {
        padding: 25px;
    }

    .menu {
        display: none;
    }

    .hero {
        padding: 50px 25px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    h1 {
        font-size: 60px;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .glow {
        display: none;
    }
}
