:root {
    --gold: #c5a059;
    --dark-bg: #0b0d11;
    --text-light: #e0e0e0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* The Hero Section containing the background map */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* REPLACE 'map.jpg' with your actual map file path */
    background: url('assets/images/bg2.png') no-repeat center center fixed; 
    background-size: cover;
}

/* The Fading Overlay - This makes the map "fade" into the darkness */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(11, 13, 17, 0.8) 0%, 
        rgba(11, 13, 17, 0.4) 50%, 
        rgba(11, 13, 17, 0.9) 100%
    );
    z-index: 1;
}

.content {
    position: relative;
    width: 50%;
    z-index: 2; /* Sits above the overlay */
    padding: 2rem;
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.8);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.book-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px); /* Modern frosted glass effect */
}

.book-cover {
    width: 300px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
    border-radius: 5px;
}

.book-info h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .book-container {
        flex-direction: column;
        text-align: center;
    }
    .title {
        font-size: 2.5rem;
    }
}
