@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #ED1C24;
    --dark-red: #C11219;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #F4F4F4;
    --accent-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.shuttle-container {
    position: relative;
    width: 100px;
    height: 150px;
}

.shuttle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 60px solid var(--white);
    position: absolute;
    top: 0;
    left: 20px;
    animation: bounce 1s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
}

.shuttle::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-red);
    border-radius: 50%;
}

.shadow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: shadowPulse 1s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
}

.loading-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-top: 20px;
    text-align: center;
    line-height: 1.2;
}

.loading-text span.brand-red {
    color: var(--primary-red);
}

.loading-text span.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #AAA;
    font-weight: 400;
    animation: pulse 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-80px) rotate(15deg);
    }
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(0.5);
        opacity: 0.1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-text span.brand-red {
    color: var(--primary-red);
}

.logo-text span.brand-sub {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #DDD;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-red);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.btn-nav {
    padding: 8px 20px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a.btn-nav:hover {
    background-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
}

nav ul li a.btn-nav::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('https://lh3.googleusercontent.com/p/AF1QipPXrMUqLlkqEgWmeagK43dGpHAKzn-TgjCKE7O4=w1920-h1080-p-k-no') no-repeat center center/cover;
    z-index: -1;
    animation: bgZoom 15s infinite alternate ease-in-out;
}

@keyframes bgZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title span {
    color: var(--primary-red);
    -webkit-text-stroke: 1px var(--primary-red);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #DDD;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--dark-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* About Section */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.section-title {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-red);
    border-radius: 10px;
    transform: translate(15px, 15px);
    z-index: -1;
    transition: transform 0.3s ease;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #CCC;
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(237, 28, 36, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

/* Facilities Section */
.facilities {
    background-color: var(--dark-gray);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-card {
    background-color: var(--accent-gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--primary-red);
}

.facility-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.facility-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.facility-card p {
    color: #BBB;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237, 28, 36, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Call to Action */
.cta {
    background: linear-gradient(rgba(237, 28, 36, 0.9), rgba(193, 18, 25, 0.9)), url('https://lh3.googleusercontent.com/p/AF1QipOWnBSnR4sId4pRngo_1SxgIudgcqx_w8a1i20S=w1920-h1080-p-k-no') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-red);
}

.btn-white::before {
    background-color: var(--black);
}

.btn-white:hover {
    color: var(--white);
}

/* Booking & Contact Section */
.booking-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.booking-wrapper,
.contact-wrapper {
    background-color: var(--dark-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--primary-red);
}

.booking-form .form-row,
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group input,
.booking-form .form-group select,
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.booking-form .btn-primary,
.contact-form .btn-white {
    margin-top: 10px;
    font-size: 1.2rem;
    height: 55px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-col p {
    color: #AAA;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col p i {
    color: var(--primary-red);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #AAA;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

/* Professional Summer Camp Redesign */
.sc-hero {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('https://lh3.googleusercontent.com/gps-cs-s/AHVAwepRuxWqzufr1OLHv2fpucJCX0Dbpu1058FQbobz_h3jx_4v3dvhm7Jh2BUTP56NETRv7i5FVJZq45_N82s_78FSPrR3UkaJMSLptH469QAZvRDO5e-ZMhoarjbSO39B0ipqyoMTIsaIbswS=w1920-h1080-p-k-no') no-repeat center center/cover;
    height: 90vh;
}

.sc-hero .hero-title {
    font-size: 5rem;
}

.sc-hero .hero-title .sc-year-hero {
    color: #FFD700;
    font-size: 4rem;
    font-style: italic;
    -webkit-text-stroke: 0;
}

.sc-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sc-info-card {
    background: var(--accent-gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.sc-info-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.sc-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.sc-info-card p {
    font-size: 1.1rem;
    color: #BBB;
}

.sc-pricing-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.sc-pricing-box {
    background: var(--accent-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.sc-pricing-box:hover {
    transform: translateY(-15px);
}

.sc-pricing-box.recommended {
    transform: scale(1.05);
    border: 2px solid #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    z-index: 2;
}

.sc-pricing-box.recommended:hover {
    transform: scale(1.05) translateY(-15px);
}

.sc-pricing-header {
    padding: 30px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.sc-pricing-header.beginners {
    background: linear-gradient(135deg, #002244, #004488);
}

.sc-pricing-header.intermediate {
    background: linear-gradient(135deg, #800000, #cc0000);
}

.sc-pricing-header.advanced {
    background: linear-gradient(135deg, #003366, #0066cc);
}

.sc-pricing-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.sc-recommended-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #FFD700;
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.sc-pricing-body {
    padding: 30px;
    background: var(--accent-gray);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sc-price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.sc-price span {
    font-size: 1.2rem;
    color: #888;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.sc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.sc-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #DDD;
}

.sc-pricing-features li:last-child {
    border-bottom: none;
}

.sc-pricing-features li i {
    color: var(--primary-red);
}

.sc-cta {
    background: linear-gradient(rgba(237, 28, 36, 0.9), rgba(193, 18, 25, 0.9)), url('https://lh3.googleusercontent.com/p/AF1QipOWnBSnR4sId4pRngo_1SxgIudgcqx_w8a1i20S=w1920-h1080-p-k-no') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
}

.sc-cta-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .sc-pricing-box.recommended {
        transform: scale(1);
    }

    .sc-pricing-box.recommended:hover {
        transform: translateY(-10px);
    }

    .sc-hero .hero-title {
        font-size: 3.5rem;
    }
}

/* Scroll Up Button */
#scrollTopBtn {
    position: fixed;
    bottom: -60px;
    /* Hidden initially below the viewport */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

#scrollTopBtn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

#scrollTopBtn:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .booking-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--dark-gray);
        flex-direction: column;
        padding: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .booking-form .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Modal Popup & Receipt Print Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--dark-gray);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--primary-red);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-red);
}

.printable-receipt {
    display: none;
    background-color: #fff;
    color: #000;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

@media print {
    body * {
        visibility: hidden;
    }

    #printReceipt,
    #printReceipt * {
        visibility: visible;
    }

    #printReceipt {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

/* Image Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10001;
    /* Must sit above everything */
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 4px solid var(--primary-red);
    border-radius: 8px;
    animation: zoomIn 0.3s cubic-bezier(0.28, 0.84, 0.42, 1);
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-red);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}