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

:root {
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --accent-gold: #f4a261;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --text-dark: #2b2d42;
    --text-medium: #555b6e;
    --text-light: #8d99ae;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body,
html {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-size: 16px;
    letter-spacing: 0.3px;
    overflow-x: hidden;
    background: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--text-dark);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    transition: var(--transition);
    font-weight: 500;
    color: var(--primary-color);
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
}

p {
    font-weight: 400;
    color: var(--text-medium);
}

strong {
    font-weight: 700;
}

.content-ct {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ========================================
    Banner & Header
======================================== */
.banner {
    background: url('../hp-img/banner.gif');
    background-repeat: repeat;
    background-position: center;
}

.hero-header {
    height: 300px;
    padding: 4em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-header img {
    width: 40%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* ========================================
    Main Content Area
======================================== */
.me-row {
    padding: 3%;
    background: var(--bg-light);
}

.row-title {
    font-weight: 600;
}

/* ========================================
    Navigation Tabs
======================================== */
.nav-tabs {
    margin-top: 20px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-tabs li {
    font-size: 18px;
}

.nav-tabs li a {
    padding: 12px 28px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    color: var(--text-medium);
    font-weight: 600;
    border: none;
    background: transparent;
    position: relative;
}

.nav-tabs li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav-tabs li a:hover::after,
.nav-tabs li.active a::after {
    width: 100%;
}

.nav-tabs li.active a {
    color: var(--primary-color);
    background: transparent;
    border: none;
}

.nav-tabs li a:hover {
    background: transparent;
    color: var(--primary-color);
}

/* ========================================
    Raffle & Menu Cards - NEW DESIGN
======================================== */
.schedule .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.schedule .row>[class*="col-"] {
    padding: 10px;
}

.schedule .media {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule .media:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.schedule .media-image {
    margin-right: 0;
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 15px;
}

.schedule .media-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.schedule .media-object {
    object-fit: contain;
    height: 100%;
    width: 100%;
    max-height: 110px;
    transition: var(--transition);
}

.schedule .media:hover .media-object {
    transform: scale(1.05);
}

.schedule .media-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.schedule .media-content h5 {
    text-transform: none;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule .media-content h5 span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.schedule .media-content h5 .price {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.schedule .media-content p {
    text-align: left;
    margin: 8px 0 0 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.schedule .media-content a {
    color: var(--text-dark);
    font-size: 14px;
}

/* ========================================
    Menu Section Specific Styles
======================================== */
#menu .media-content h5 {
    font-size: 16px;
}

#menu .media-content h5 i {
    display: block;
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

#menu .media-content p {
    font-size: 13px;
    line-height: 1.6;
}

#menu .media-content p strong {
    color: var(--primary-color);
}

/* ========================================
    Events Section
======================================== */
.media-events {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.media-events .row {
    display: flex;
    flex-wrap: nowrap;
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.media-events .row:last-child {
    border-bottom: none;
}

.schedule .event-time {
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
    padding-right: 15px;
}

.schedule .event-time h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
}

.schedule .event-content {
    flex: 1;
}

.schedule .event-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.schedule .event-content h3 span {
    font-size: 20px;
}

/* ========================================
    Footer
======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin-top: 40px;
    color: #fff;
}

.footer p {
    margin-bottom: 0;
}

.footer-credit {
    font-size: 16px;
    padding: 40px;
    text-align: center;
}

.footer-credit p a {
    color: #64b5f6 !important;
    transition: var(--transition);
}

.footer-credit p a:hover {
    color: #90caf9 !important;
}

/* ========================================
    Animations
======================================== */
.animated {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/* ========================================
    Media Queries - Responsive Design
======================================== */

/* Small Mobile */
@media (max-width: 360px) {
    .hero-header {
        padding: 2em 1em;
        text-align: center;
        height: 180px;
    }

    .hero-header img {
        width: 75%;
        height: auto;
    }

    .content-ct {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .nav-tabs li {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-tabs li a {
        padding: 10px 20px;
        display: block;
        border-radius: var(--radius-sm);
    }

    .schedule .row>[class*="col-"] {
        width: 100%;
        padding: 8px 0;
    }

    .schedule .media {
        flex-direction: column;
        text-align: center;
    }

    .schedule .media-image {
        width: 100%;
        height: 160px;
        padding: 20px;
    }

    .schedule .media-object {
        max-height: 120px;
    }

    .schedule .media-content {
        padding: 20px;
        align-items: center;
    }

    .schedule .media-content h5 {
        align-items: center;
        font-size: 14px;
    }

    .schedule .media-content h5 span {
        font-size: 18px;
        padding: 8px 20px;
    }

    .media-events h3 {
        font-size: 16px;
    }

    /* Events section mobile fix */
    .media-events .row {
        display: flex;
        flex-wrap: nowrap;
        padding: 12px 5px;
    }

    .schedule .event-time {
        min-width: 70px;
        padding-right: 10px;
    }

    .schedule .event-time h3 {
        font-size: 13px;
    }

    .schedule .event-content h3 {
        font-size: 13px;
    }

    .schedule .event-content h3 span {
        font-size: 16px;
    }

    .footer-credit {
        font-size: 13px;
        padding: 30px 15px;
    }
}

/* Mobile */
@media (min-width: 361px) and (max-width: 767px) {
    .hero-header {
        padding: 2em 1em;
        text-align: center;
        height: 200px;
    }

    .hero-header img {
        width: 65%;
        height: auto;
    }

    .content-ct {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .nav-tabs li {
        font-size: 16px;
    }

    .nav-tabs li a {
        padding: 10px 20px;
    }

    .schedule .row>[class*="col-"] {
        width: 100%;
        padding: 8px 0;
    }

    .schedule .media {
        flex-direction: column;
        text-align: center;
    }

    .schedule .media-image {
        width: 100%;
        height: 180px;
        padding: 25px;
    }

    .schedule .media-object {
        max-height: 130px;
    }

    .schedule .media-content {
        padding: 20px 25px 25px;
        align-items: center;
    }

    .schedule .media-content h5 {
        font-size: 16px;
        align-items: center;
    }

    .schedule .media-content h5 span {
        font-size: 20px;
        padding: 10px 24px;
    }

    .schedule .media-content p {
        font-size: 14px;
        text-align: center;
    }

    #menu .media-content h5 {
        font-size: 18px;
    }

    .media-events .row {
        display: flex;
        flex-wrap: nowrap;
        padding: 12px 8px;
    }

    .schedule .event-time {
        min-width: 75px;
        padding-right: 12px;
    }

    .schedule .event-time h3 {
        font-size: 14px;
    }

    .schedule .event-content h3 {
        font-size: 14px;
    }

    .schedule .event-content h3 span {
        font-size: 18px;
    }

    .footer-credit {
        padding: 35px 20px;
        font-size: 14px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-header {
        padding: 3em 1em;
        text-align: center;
    }

    .hero-header img {
        width: 55%;
        height: auto;
    }

    .nav-tabs li {
        font-size: 20px;
    }

    .nav-tabs li a {
        padding: 14px 30px;
    }

    .schedule .media-image {
        width: 160px;
        height: 160px;
    }

    .schedule .media-object {
        max-height: 130px;
    }

    .schedule .media-content h5 {
        font-size: 17px;
    }

    .schedule .media-content h5 span {
        font-size: 18px;
    }

    .schedule .media-content p {
        font-size: 15px;
    }

    #menu .media-content h5 {
        font-size: 20px;
    }

    .schedule .event-time h3 {
        font-size: 20px;
    }

    .schedule .event-content h3 {
        font-size: 20px;
    }

    .media-events h3 {
        font-size: 22px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-header {
        padding: 4em 1em;
        text-align: center;
    }

    .hero-header img {
        width: 35%;
        height: auto;
    }

    .nav-tabs li {
        font-size: 18px;
    }

    .nav-tabs li a {
        padding: 14px 35px;
    }

    .schedule .row>[class*="col-lg-6"] {
        padding: 12px;
    }

    .schedule .media-image {
        width: 150px;
        height: 150px;
    }

    .schedule .media-content h5 {
        font-size: 16px;
    }

    .schedule .media-content h5 span {
        font-size: 17px;
    }

    .schedule .media-content a {
        font-size: 16px;
    }

    .schedule .media-content p {
        font-size: 14px;
    }

    #menu .media-content h5 {
        font-size: 18px;
    }

    .schedule .event-time h3 {
        font-size: 20px;
    }

    .schedule .event-content h3 {
        font-size: 20px;
    }

    .media-events h3 {
        font-size: 22px;
    }

    .footer-credit {
        font-size: 15px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .schedule .media-image {
        width: 160px;
        height: 160px;
    }

    .schedule .media-content {
        padding: 25px;
    }

    .schedule .media-content h5 {
        font-size: 17px;
    }

    .schedule .media-content h5 span {
        font-size: 18px;
        padding: 8px 18px;
    }
}