:root {
    --gold: #c5a059;
    --dark: #111111; /* Used for text on white bg */
    --off-white: #fcfcfc;
    --pure-white: #ffffff;
    --charcoal: #333333;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

body {
    background-color: var(--pure-white); /* Changed to white */
    color: var(--dark); /* Text changed to dark */
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding-top: 0%;
}

#intro {
    height: calc(120vh - 80px); /* Adjusts for navbar height */
    background: url('../images/banner_2.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient adjusted to blend with white theme if necessary, 
       or kept dark for text readability on banner */
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(0,0,0,0.6));
}

.banner-button-container { position: relative; z-index: 5; }

.banner-button-container h4 {
    color: var(--gold);
    letter-spacing: 10px;
    font-family: 'Syncopate', sans-serif;
    margin-bottom: 20px;
}

.banner-button-container h1 {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 900;
    color: var(--pure-white); /* Keep heading white for contrast on banner */
    line-height: 0.85;
    margin-bottom: 20px;
}

.banner-button-container h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--pure-white);
}

#pp1{
    margin-bottom: 30px;
    color: white;
}

.banner-btn {
    margin-top: 40px;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.4s;
    background: rgba(0,0,0,0.4);
}

.banner-btn:hover {
    background: var(--gold);
    color: var(--pure-white);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin-bottom: 20px;
    filter: grayscale(1);
}

.loader-bar {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 10px auto;
    animation: load 2s forwards;
}

.loader-content p {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #999;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100px; }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevents the invisible div from blocking clicks */
}