/* Luxury Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background-color: #763c0d;
}

/* Background Configuration */
.bg-container {
    background-image: url('images/bg-2.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darken the background */
    z-index: 1;
}

/* Content Container */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Logo */
.logo {
    max-width: 200px;
    /* Adjust based on actual logo aspect ratio */
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Typography - Luxury Gold & Fonts */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #B58B00;
    /* Darker Gold / Goldenrod Style */
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

p.tagline {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #f0f0f0;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* Review Button / CTA */
.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #B58B00;
    color: #ffffff;
    border: 2px solid #B58B00;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    box-shadow: 0 0 20px rgba(181, 139, 0, 0.8);
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .logo {
        max-width: 150px;
    }

    p.tagline {
        font-size: 1rem;
    }
}