/* HERO INTRO PAGE */
.hero {
    height: 100vh;
    width: 100%;
    background: url('background.png') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.brand-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.brand-subtitle {
    font-size: 2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.enter-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
}

.enter-btn:hover {
    transform: scale(1.05);
}

.hero-quote {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: auto;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup.hidden {
    display: none;
}

.popup-box {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    color: #fff;
    animation: fadeIn 0.4s ease forwards;
}

#contactType {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
    background: #222;
    color: #fff;
    border: none;
}

#popupInput {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
    border: none;
    background: #222;
    color: #fff;
}

#popupForm button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Success checkmark */
.checkmark {
    font-size: 3rem;
    color: #4CAF50;
    margin-top: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.checkmark.show {
    opacity: 1;
    transform: scale(1);
}

/* Page fade-out */
.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}
