:root {
    --bg-color: #000;
    --text-main: #ffffff;
    --text-muted: #888;
    --accent-blue: #007bff;
}

/* --- REVEAL ANIMATION --- */
.reveal-wrapper {
    overflow: hidden; /* Clips the text while it's "below" */
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    background-color: #000;
}

.reveal-text {
    font-size: 15vw; /* Fluid typography */
    font-weight: 800;
    letter-spacing: -5px;
    color: #1a1a1a; /* Dark grey for the "ghost" look */
    line-height: 1;
    text-transform: uppercase;
    
    /* Animation Initial State */
    transform: translateY(100%);
    transition: transform 2.0s cubic-bezier(0.7, 0, 0.3, 1);
}

.reveal-text.active {
    transform: translateY(0%);
}

/* --- FOOTER CONTENT --- */
.footer {
    padding: 60px 5%;
    border-top: 1px solid #222;
    background-color: #000!important;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}
.footer-column p {
    color: #8C8C8C!important;
}

.footer-column ul {
    list-style: none;
    padding-left: 0!important;
}

.footer-column ul li {
    color:#8C8C8C!important;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-column ul li:hover {
    color: white;
}

/* Buttons and Links */
.btn-book {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    margin: 20px 0;
}

.btn-chat {
    background: transparent;
    border: 1px solid #333;
    color: white;
    padding: 11px 11px;
    border-radius: 20px;
    margin-top: 15px;
    width: 100%;
}

.social-icons i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--text-muted);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    align-items: center;
}

/* The container that hides the text initially */
.reveal-wrapper {
    width: 100%;
    overflow: hidden; /* This creates the 'mask' effect */
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.reveal-text {
    font-size: 14vw;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a; /* Subtle dark grey like the image */
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.03em;
    
    /* Starting Position: Fully hidden below the container */
    transform: translateY(110%); 
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1); /* Professional 'Out-Expo' curve */
    will-change: transform;
}

/* The state triggered by JavaScript */
.reveal-text.active {
    transform: translateY(0%);
}

.seo-tags {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px!important;
}