@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #fff7e1;
    --text-dark: #2c0303;
    --accent: #ecbf36;
    --footer-bg: #2d2216;
    --footer-text: #fff7e1;
    --unbounded: 'Unbounded', sans-serif;
    --header-height: 104px;
    --top-notice-height: 40px;
}

/* Top Notice Bar */
.top-notice {
    background-color: var(--text-dark);
    color: var(--footer-text);
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: var(--top-notice-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-notice span {
    opacity: 0.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--unbounded);
    overflow-x: hidden;
}

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 3, 3, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.age-verification-overlay.fade-out {
    animation: fadeOut 0.3s ease;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.age-verification-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-verification-content h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff7e1;
    margin-bottom: 32px;
    line-height: 1.2;
}

.age-verification-content p {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff7e1;
    margin-bottom: 48px;
    opacity: 0.9;
}

.age-verification-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.age-btn {
    padding: 16px 48px;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-enter {
    background-color: #fff7e1;
    color: #2c0303;
}

.age-enter:hover {
    background-color: #ecbf36;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(236, 191, 54, 0.3);
}

.age-exit {
    background-color: transparent;
    color: #fff7e1;
    border: 2px solid #fff7e1;
}

.age-exit:hover {
    background-color: rgba(255, 247, 225, 0.1);
}

@media (max-width: 768px) {
    .age-verification-content {
        padding: 40px 24px;
    }

    .age-verification-content h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .age-verification-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .age-verification-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

header {
    height: var(--header-height);
    background-color: var(--bg-primary);
    position: fixed;
    top: var(--top-notice-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 3, 3, 0.05);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

/* Desktop Nav */
.desktop-nav {
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.desktop-nav ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-actions button {
    cursor: pointer;
    background: transparent;
    border: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 3, 3, 0.95);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
}

.search-header {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.search-header input {
    flex: 1;
    padding: 16px 24px;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #fff7e1;
    background-color: transparent;
    color: #fff7e1;
    outline: none;
}

.search-header input::placeholder {
    color: rgba(255, 247, 225, 0.6);
}

.close-search {
    width: 56px;
    height: 56px;
    background-color: transparent;
    border: 2px solid #fff7e1;
    color: #fff7e1;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-search:hover {
    background-color: #fff7e1;
    color: #2c0303;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.search-room-item {
    display: flex;
    gap: 24px;
    padding: 20px;
    background-color: #fff7e1;
    cursor: pointer;
    transition: all 0.3s;
}

.search-room-item:hover {
    background-color: #fceec5;
    transform: translateX(8px);
}

.search-room-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}

.search-room-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-room-info h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 8px;
}

.search-room-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.no-results {
    text-align: center;
    padding: 40px;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    color: #fff7e1;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-primary);
    z-index: 1000;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-bottom: 1px solid rgba(44, 3, 3, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}

.mega-menu.active {
    top: calc(var(--header-height) + var(--top-notice-height));
    opacity: 1;
    visibility: visible;
}

.mega-menu-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
}

.mega-menu-categories {
    flex: 0 0 540px;
    padding: 24px 0 60px 40px;
    border-right: 1px solid rgba(44, 3, 3, 0.1);
}

.mega-menu-categories ul {
    display: flex;
    flex-direction: column;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 20px 0;
    border-bottom: 1px solid rgba(44, 3, 3, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item a {
    font-size: 32px;
    font-weight: 800;
    text-transform: none;
    /* Usually Unbounded looks better without forced caps */
    color: var(--text-dark);
}

.category-item .category-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.category-item:hover,
.category-item.active {
    background-color: var(--text-dark);
    margin-right: -1px;
    /* Overlap border */
    padding-left: 20px;
}

.category-item:hover a,
.category-item.active a {
    color: #fff;
}

.category-item:hover .category-arrow,
.category-item.active .category-arrow {
    filter: invert(1);
    transform: translateX(5px);
}

.category-item.more-item a {
    font-size: 32px;
    opacity: 0.8;
}

.mega-menu-footer-links {
    margin-top: 40px;
    display: flex;
    gap: 32px;
}

.mega-menu-footer-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
}

.mega-menu-footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.mega-menu-content {
    flex: 1;
    padding: 40px 80px;
    background-color: var(--bg-primary);
}

.submenu {
    display: none;
}

.submenu.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.submenu h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    opacity: 0.5;
}

.submenu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submenu ul li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.submenu ul li a:hover {
    color: var(--accent);
}

.search-btn,
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 24px;
    height: 24px;
}

.menu-btn img {
    width: 28px;
    height: 28px;
}

main {
    margin-top: calc(var(--header-height) + var(--top-notice-height));
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 751px;
}

.hero-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.hero-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-content h2 {
    font-weight: 900;
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 300px;
}

.find-more {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 400;
}

.find-more img {
    position: static;
    width: 32px;
    height: 32px;
}

.footer-info {
    background-color: var(--text-dark);
    color: var(--bg-primary);
    padding: 110px 180px;
    text-align: center;
    position: relative;
}

.scroll-top {
    position: absolute;
    top: 40px;
    left: 180px;
    background: none;
    border: none;
    cursor: pointer;
}

.scroll-top img {
    width: 32px;
    transform: rotate(-90deg);
    filter: invert(95%) sepia(21%) saturate(242%) hue-rotate(357deg) brightness(101%) contrast(101%);
}

.footer-info h3 {
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 24px;
}

.responsible-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.drink-responsibly {
    position: absolute;
    right: 180px;
    top: 110px;
    text-align: left;
}

.drink-responsibly p {
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.drink-responsibly a {
    text-decoration: underline;
    font-weight: 700;
}

/* Subpages */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 0 40px;
}

.page-hero h1 {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.page-hero p {
    font-size: 24px;
    font-weight: 300;
}

.content-section {
    padding: 120px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 48px;
    text-align: center;
}

.text-block p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.features-list li {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.features-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 48px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

.footer-main {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 180px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 180px;
}

.footer-col h4 {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 32px;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 180px 80px;
    text-align: center;
    border-top: 1px solid rgba(255, 247, 225, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.6;
}

.footer-bottom .brand {
    font-weight: 900;
    opacity: 1;
}

@media (max-width: 1400px) {

    .footer-info,
    .footer-main,
    .footer-bottom {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1200px) {

    .header-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .desktop-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .hero-item {
        height: 50vh;
    }

    .drink-responsibly {
        position: static;
        margin-top: 40px;
        text-align: center;
    }

    .scroll-top {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-info h3 {
        font-size: 24px;
    }
}

/* Thursday Jackpot Page Styles */
.jackpot-hero {
    position: relative;
    background-color: var(--bg-primary);
}

.jackpot-hero-image {
    height: 400px;
    overflow: hidden;
}

.jackpot-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.jackpot-hero-bottom {
    padding: 60px 0;
}