* {
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    user-select: none;
    overflow-x: hidden !important;
    background-color: #fff;
}

.body {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.page {
    min-height: 150vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.body {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    width: 100%;
}

.header {
    height: 86.5vh;
    background: url("../images/maincheetah.png") center/cover no-repeat;
    width: 100%;
    position: relative;
}

.headerBundles {
    height: 86.5vh;
    background: url("../images/bundleAnimalk.png") center/cover no-repeat;
    width: 100%;
    position: relative;
}


.imgbox {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.boximg, .imgbox img {
    max-width: 100%;
    height: auto;
    display: block;
}

.box {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.box1 {
    grid-column: 1;
    grid-row: 1;
}

.box3 {
    grid-column: 3;
    grid-row: 1;
}

.box2 {
    grid-column: 2;
    grid-row: 2;
}

.info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Road Rage", sans-serif;
    text-align: center;
    color: black;
}
.info p{
    font-size: 2.8rem;
}

.info h1 {
    font-size: 2.8rem;
    margin-bottom: 0.1rem;
    font-weight: 100;
}

.times {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 100;

}

.times h2 {
    font-size: 3rem;
    margin-bottom: 0rem;
    font-weight: 100;

}

.times p {
    font-size: 2.5rem;
    font-weight: 100;

}

.box2 .info p,
.box3 .info p {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 100;

}

.btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid black;
    border-radius: 0.5rem;
    font-size: 2rem;
    color: black;
    text-decoration: none;
    font-family: "Road Rage", sans-serif;
    font-weight: 100;
    transition: all 0.3s ease; 
}

.btn:hover {
    transform: scale(1.08); 
    background: rgba(0, 0, 0, 0.25); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.25); 
    border-color: #333; 
}



.navBar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    box-sizing: border-box;
    height: auto;
    min-height: 70px;
    background: #7ea87c;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    font-family: Arial, sans-serif;
    color: white;
    z-index: 500;
    justify-content: space-between;
    gap: 1.5rem;
}

.navBar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 28%;
    height: 100%;
    background: #1d3d2c;
    border-radius: 1rem 0 0 1rem;
    clip-path: polygon(0 0, 85% 0, 65% 100%, 0 100%);
    z-index: -1;
}

/* Session auth controls in navbar (shared with animals styles) */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    flex-shrink: 0;
}

.nav-user {
    color: #fffbe6;
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-account-btn, .nav-logout-btn {
    background: #f1c057;
    color: #1d3d2c;
    border: none;
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.nav-account-btn:hover, .nav-logout-btn:hover {
    background: #ffd274;
}

.nav-logout-form {
    display: inline;
}

.leftText {
    position: relative;
    flex-shrink: 0;
    font-family: "Road Rage", sans-serif;
    white-space: nowrap;
}

.leftText h1 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: #f1c057;
    margin: 0;
}

.leftText p {
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    color: #f1c057;
    margin: 0;
}

.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.menu li a:hover::after {
    transform: scale(1.1);
}

.menu li {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    font-weight: bold;
    cursor: pointer;
}

.planBtn {
    flex-shrink: 0;
    background: #659a66;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-size: clamp(0.9rem, 1.1vw, 1.3rem);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.planBtn a {
    color: white;
    text-decoration: none;
}

.planBtn:hover {
    background: #4d8856;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.planBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


.cheetahtxt {
    position: absolute;
    top: 50%;
    left: 5vw;
    transform: translateY(-50%);
    width: 35vw;
    font-family: "Road Rage", sans-serif;
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 200;
    z-index: 300;
}

.bodytxt {
    color: black;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 100;
    font-family: "Road Rage", sans-serif;
    text-align: center;
}

.bodytxt h1 {
    line-height: 3;
    font-weight: 100;
}

.bodytxt p {
    width: 100%;
    max-width: 600px;
    font-size: 32px;
    margin: 0 auto;
    position: relative;
    left: 0;
    transform: none;
}

.footer {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px;
    margin: 0px;

}

.footer-img {
    background: url("../../assets/images/footer.png");
    min-height: 449px;
    max-height: 449px;
    width: 100%;
}

.bottom-span {
    position: relative;
    top: 40%;
    left: 10%;
    max-width: 30vw;
}

.bottom-span p {
    font-family: "Road Rage";
    font-size: 42px;
}

.bottom-span img {
    gap: 50%;
    padding: 2%;
}

.footerinfo {
    position: relative;
    top: 15%;
    left:40%;
    max-width: 50%;
    font-family: "Road Rage";
    font-size: 42px;
    text-align: center;
}

.links {
    color: white;
    text-decoration: none;
}

a {
    color: white;
    text-decoration: none; 
}

/* Hotel Booking Page Styles */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    align-items: start;
}

.booking-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-form h2 {
    font-family: "Road Rage", sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 300;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-hint {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="date"] {
    padding: 0.7rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.form-group select:focus,
.form-group input[type="number"]:focus,
.form-group input[type="date"]:focus {
    outline: none;
    border-color: #7ea87c;
    box-shadow: 0 0 6px rgba(126, 168, 124, 0.2);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 245, 0.95));
    padding: 1.8rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-card h3 {
    background: linear-gradient(90deg, #7ea87c, #66b37a);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card p {
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.5;
}

.info-details {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border-left: 4px solid #7ea87c;
}

.info-details p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.info-details strong {
    color: #333;
}

.info-details span {
    color: #7ea87c;
    font-weight: 600;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.price-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.price {
    color: #7ea87c;
    font-size: 1.5rem;
    font-weight: 700;
}

.pay-btn {
    background: linear-gradient(180deg, #7ecb8f, #66b37a);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pay-btn:hover {
    background: linear-gradient(180deg, #6dbc7e, #5a9f6d);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(70, 130, 90, 0.25);
}

.pay-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(70, 130, 90, 0.15);
}

.rooms-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.rooms-section h2 {
    font-family: "Road Rage", sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 300;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.room-card {
    background: white;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.room-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.room-card h3 {
    padding: 1rem;
    text-align: center;
    font-family: "Road Rage", sans-serif;
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form h2 {
        font-size: 1.5rem;
    }

    .rooms-section h2 {
        font-size: 1.6rem;
    }

    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .room-img {
        height: 180px;
    }
}

/* Tickets/Bundles Page Styles */
.bundles-intro {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
}

.bundles-intro h2 {
    font-family: "Road Rage", sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 300;
}

.bundles-intro p {
    font-size: 1.1rem;
    color: #666;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 2rem;
}

.bundle-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.bundle-card.featured {
    border: 2px solid #7ea87c;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, #7ea87c, #66b37a);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    transform: rotate(45deg);
    font-size: 0.85rem;
}

.bundle-header {
    background: linear-gradient(135deg, rgba(126, 168, 124, 0.1), rgba(102, 179, 122, 0.08));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bundle-header h3 {
    font-family: "Road Rage", sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.bundle-subtitle {
    color: #7ea87c;
    font-size: 0.95rem;
    margin: 0.3rem 0 0 0;
    font-weight: 600;
}

.bundle-price {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bundle-price .price {
    font-size: 2.2rem;
    color: #7ea87c;
    font-weight: 700;
}

.per-person {
    color: #999;
    font-size: 0.9rem;
    margin: 0.3rem 0 0 0;
}

.bundle-features {
    list-style: none;
    padding: 1.5rem;
    flex: 1;
}

.bundle-features li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.bundle-features li:last-child {
    border-bottom: none;
}

.bundle-btn {
    margin: 1.5rem;
    padding: 0.9rem;
    background: linear-gradient(180deg, #e0e0e0, #d0d0d0);
    border: none;
    border-radius: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #333;
}

.bundle-btn:hover {
    background: linear-gradient(180deg, #d0d0d0, #c0c0c0);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.featured-btn {
    background: linear-gradient(180deg, #7ecb8f, #66b37a) !important;
    color: white !important;
}

.featured-btn:hover {
    background: linear-gradient(180deg, #6dbc7e, #5a9f6d) !important;
    box-shadow: 0 8px 16px rgba(70, 130, 90, 0.25) !important;
}

.bundles-faq {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 2rem;
}

.bundles-faq h2 {
    font-family: "Road Rage", sans-serif;
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 0.8rem;
    border-left: 4px solid #7ea87c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #333;
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bundles-intro h2 {
        font-size: 1.8rem;
    }

    .bundle-card.featured {
        transform: scale(1.02);
    }

    .bundles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .bundle-header h3 {
        font-size: 1.4rem;
    }

    .bundle-price .price {
        font-size: 1.8rem;
    }

    .featured-badge {
        right: -1.5rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Rewards Page Styles */
.page-content {
    flex: 1;
    width: 100%;
    padding: clamp(1rem, 3vw, 3rem);
}

.rewards-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(126, 168, 124, 0.08), rgba(102, 179, 122, 0.08));
    border-radius: clamp(0.5rem, 2vw, 1rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 2px solid #7ea87c;
}

.rewards-container h2 {
    font-family: 'Road Rage', cursive;
    color: #7ea87c;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-align: center;
}

.rewards-container h3 {
    font-family: 'Road Rage', cursive;
    color: #66b37a;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
}

.status-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.reward-card {
    background: linear-gradient(135deg, #7ea87c, #66b37a);
    color: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: clamp(0.5rem, 2vw, 1rem);
    text-align: center;
    box-shadow: 0 4px 15px rgba(126, 168, 124, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(126, 168, 124, 0.4);
}

.reward-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.reward-value {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #ffffff;
    font-family: 'Road Rage', cursive;
}

.reward-card.highlight {
    background: linear-gradient(135deg, #66b37a, #7ea87c);
    border: 3px solid #ffffff;
}

/* Discount Info */
.discount-info {
    background: rgba(255, 255, 255, 0.5);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: clamp(0.5rem, 2vw, 1rem);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    border-left: 5px solid #7ea87c;
}

.tier-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(0.8rem, 2vw, 1.5rem);
    margin-top: 1rem;
}

.tier {
    background: white;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 0.5rem;
    border: 2px solid #7ea87c;
    text-align: center;
}

.tier-label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 0.5rem;
}

.tier-discount {
    display: block;
    color: #7ea87c;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Purchase History */
.purchase-history {
    background: rgba(255, 255, 255, 0.7);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: clamp(0.5rem, 2vw, 1rem);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.purchase-list {
    max-height: 400px;
    overflow-y: auto;
}

.purchase-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: clamp(0.8rem, 1vw, 1rem);
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.purchase-item:last-child {
    border-bottom: none;
}

.purchase-type {
    font-weight: 600;
    color: #333;
}

.purchase-date {
    color: #666;
    font-size: 0.9rem;
}

.purchase-amount {
    font-weight: bold;
    color: #7ea87c;
    text-align: right;
}

.no-purchases {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-style: italic;
}

/* Rewards Actions */
.rewards-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.action-btn {
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #7ea87c, #66b37a);
    color: white;
    border: none;
    border-radius: clamp(0.3rem, 1vw, 0.5rem);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(126, 168, 124, 0.3);
}

.action-btn:active {
    transform: scale(0.98);
}

.logout-btn {
    background: #dc3545;
}

.logout-btn:hover {
    background: #c82333;
}

@media (max-width: 768px) {
    .rewards-container {
        padding: 1rem;
    }

    .purchase-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .purchase-amount {
        text-align: center;
    }

    .tier-list {
        grid-template-columns: 1fr;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
    }
}

