:root {

    --primary: #555849;
    --accent: #E6D8A8;
    --white: #ffffff;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Inter', sans-serif;
    color: white;
    min-height: 100vh;

    background: url("bg.jpg") center center/cover no-repeat;

    position: relative;
    overflow: hidden;

}

.overlay {

    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .65));

}

.navbar {

    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px 0;

}

.logo {

    width: 58px;
    height: 58px;

    background: white;

    border-radius: 50%;

    padding: 6px;

    border: 2px solid var(--accent);

}

.navbar-brand {

    color: white;
    text-decoration: none;

}

.navbar-brand span {

    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;

}

.hero {

    position: relative;

    z-index: 2;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

}

.tagline {

    display: inline-block;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--accent);

    margin-bottom: 20px;

    font-size: .9rem;

}

.hero h1 {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3.5rem, 8vw, 6rem);

    margin-bottom: 30px;

    line-height: 1;

}

.hero p {

    max-width: 700px;

    margin: auto;

    font-size: 1.15rem;

    line-height: 2;

    color: rgba(255, 255, 255, .9);

}

.divider {

    width: 90px;

    height: 2px;

    background: var(--accent);

    margin: 45px auto;

}

h5 {

    letter-spacing: 5px;

    text-transform: uppercase;

    color: var(--accent);

    font-weight: 400;

}

.social {

    display: flex;

    justify-content: center;

    gap: 20px;

}

.social a {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    color: white;

    font-size: 1.3rem;

    transition: .35s;

    backdrop-filter: blur(8px);

}

.social a:hover {

    background: var(--accent);

    color: var(--primary);

    transform: translateY(-5px);

}

@media(max-width:768px) {

    .hero h1 {

        font-size: 3.2rem;

    }

    .navbar-brand span {

        font-size: 1.4rem;

    }

    .logo {

        width: 48px;
        height: 48px;

    }

    .hero p {

        font-size: 1rem;

    }

    .social {

        gap: 12px;

    }

    .social a {

        width: 48px;
        height: 48px;

    }

}