/* =====================================================================
   0) CSS VARIABLES (Design Tokens)
   ===================================================================== */
:root {
    /* Color Palette */
    --primary-color: #C7972C;
    --secondary-color: #000000;
    --secondary-color-soft: #000000CC;

    /* Button Gold */
    --btn-gold: #C08400;

    /* Text & Surfaces */
    --text-color-black: #000000;
    --text-color-white: #ffffff;
    --text-color-soft: #DDDDDDDD;

    /* Font families */
    --font-heading: "Readex Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
    --font-body: "Roboto", system-ui, -apple-system, Segoe UI, Arial, "Noto Sans", sans-serif;

    /* Readex Pro is a variable font (160–700). Pick weights you’ll use */
    --w-thin: 200;      /* Readex min is ~160 – using 200 is safer */
    --w-light: 300;
    --w-regular: 400;
    --w-medium: 500;
    --w-semibold: 600;
    --w-bold: 700;

    /* Optional optical size (if available) */
    --opsz: 14;

    /* Type scale (clamp for fluid typography) */
    --fs-100: clamp(0.7rem, 0.65rem + 0.3vw, 0.75rem);   /* ~12px */
    --fs-200: clamp(0.8rem, 0.7rem + 0.35vw, 0.875rem);  /* ~14px */
    --fs-300: clamp(0.9rem, 0.85rem + 0.4vw, 1rem);      /* ~16px */
    --fs-400: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);     /* ~18px */
    --fs-500: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);    /* ~24px */
    --fs-600: clamp(1.5rem, 1.2rem + 1vw, 1.75rem);      /* ~28px */
    --fs-700: clamp(1.75rem, 1.3rem + 1.2vw, 2.25rem);   /* ~36px */
    --fs-800: clamp(2.25rem, 1.5rem + 1.6vw, 3rem);      /* ~48px */
    --fs-850: clamp(2.75rem, 1.8rem + 2.2vw, 3.5rem);    /* ~56px */
    --fs-900: clamp(3rem, 2rem + 3vw, 4.25rem);          /* ~68px */

    /* Spacing scale (8px base) */
    --space-1: 0.25rem; /* 4px */
    --space-2: 0.5rem;  /* 8px */
    --space-3: 0.75rem; /* 12px */
    --space-4: 1rem;    /* 16px */
    --space-5: 1.5rem;  /* 24px */
    --space-6: 2rem;    /* 32px */
    --space-7: 3rem;    /* 48px */
    --space-8: 4rem;    /* 64px */

    /* Radii & Shadows */
    --radius-0: 0;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 6px 20px rgba(0,0,0,.08);

    /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;

    /* Z-index scale */
    --z-nav: 1000;
    --z-overlay: 1100;
    --z-modal: 1200;
}

/* =====================================================================
   1) RESET / NORMALIZE
   ===================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {  font-family: var(--font-body); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-300);
  font-weight: var(--w-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; }

:focus:not(:focus-visible) { outline: none; }

.bg-gold {
    background-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-white-soft {
    background-color: rgb(255 255 255 / 80%);
}

.font-roboto {
    font-family: var(--font-body);
}

.font-readex-pro {
    font-family: var(--font-heading);
}

.font-12 { font-size: var(--fs-100); /* ~12px */ }
.font-14 { font-size: var(--fs-200); /* ~14px */ }
.font-16 { font-size: var(--fs-300); /* ~16px */ }
.font-18 { font-size: var(--fs-400); /* ~18px */ }
.font-24 { font-size: var(--fs-500); /* ~24px */ }
.font-28 { font-size: var(--fs-600); /* ~28px */ }
.font-36 { font-size: var(--fs-700); /* ~36px */ }
.font-48 { font-size: var(--fs-800); /* ~48px */ }
.font-56 { font-size: var(--fs-850); /* ~56px */ }
.font-68 { font-size: var(--fs-900); /* ~68px */ }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =====================================================================
   2) BASE TYPOGRAPHY
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    margin: 0 0 var(--space-3);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-700) !important; }
h4 { font-size: var(--fs-600); }
h5 { font-size: var(--fs-500); }
h6 { font-size: var(--fs-400); }

p { 
    margin: 0 0 var(--space-4);    
}

.lead { font-size: var(--fs-400); color: var(--color-text-muted); }

small, .text-sm { font-size: var(--fs-200); }
.muted    { color: var(--color-text-muted); }

hr {
  border: none;
  border-top: 1px solid var(--primary-color);
  margin: var(--space-6) 0;
}

ul {
    padding: 0;
    margin: 0;
}

/* =====================================================================
   3) LAYOUT (containers, grids, sections)
   ===================================================================== */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-4);
  max-width: var(--container-lg);
}
@media (min-width: 1200px) { .container { max-width: var(--container-xl); } }
@media (min-width: 1400px) { .container { max-width: var(--container-xxl); } }

.section {
  padding-block: var(--space-7);
}
.section--tight { padding-block: var(--space-6); }
.section--hero  { padding-block: calc(var(--space-8) + 1rem); }


/* =====================================================================
   4) NAVIGATION (header, nav, mobile)
   ===================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 90px;
    background: var(--secondary-color-soft);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

nav .navbar {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.navbar .logo a {
    font-size: 30px;
    color: var(--text-color-white);;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: var(--text-color-white);;
    font-size: 15px;
    font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: var(--text-color-white);;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: var(--secondary-color-soft);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .links li .sub-menu a {
    color: var(--text-color-white);;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 28px;
    color: var(--text-color-white);
    font-weight: var(--w-thin);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(90deg);
}
.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: var(--secondary-color);
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
    top: 75px;
    opacity: 1;
    pointer-events: auto;
    background: var(--secondary-color);
}
.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: var(--secondary-color);
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}
.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;    
    transform: translate(-50%, -50%);
    border-radius: 4px;
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}
.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu{
    display: none;
}

.account-btn .btn {
    font-family: var(--font-body);
    font-weight: var(--w-semibold);
    color: var(--primary-color);
    border-radius: 0;
    border: 1px solid var(--text-color-white);
    background-color: transparent;
}

@media (max-width:920px) {
    nav .navbar{
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a{
        font-size: 27px;
    }
    nav .navbar .links li{
        padding: 0;
        white-space: nowrap;
    }
    nav .navbar .links li a{
        font-size: 15px;
    }
}

@media (max-width:800px){
    nav{
    /* position: relative; */
    }
    .navbar .bx-menu{
        display: block;
    }
    nav .navbar .nav-links{
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: inherit;
        width: 100%;
        background:  var(--secondary-color);;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar-logo .logo-name{
        font-size: 25px;
        color: var(--text-color-white);;
    }
    .sidebar-logo  i,
    .navbar .bx-menu{
        font-size: 25px;
        color: var(--text-color-white);;
    }
    nav .navbar .links{
        display: block;
        margin-top: 20px;
    }
    nav .navbar .links li .arrow{
        line-height: 40px;
    }
    nav .navbar .links li{
        display: block;
    }
    nav .navbar .links li .sub-menu{
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }
    nav .navbar .links li .sub-menu li{
        border-bottom: none;
    }
    .navbar .links li .sub-menu .more-sub-menu{
        display: none;
        position: relative;
        left: 0;
    }
    .navbar .links li .sub-menu .more-sub-menu li{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow{
        transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu{
        display: none;
    }
    .navbar .links li .sub-menu .more span{    
        display: flex;
        align-items: center;
    /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu{
        display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu{
        display: none;
    }
    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu{
        display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
    }
    .navbar .nav-links.show2 .links .more-arrow{
        transform: rotate(90deg);
    }
}
@media (max-width:370px){
    nav .navbar .nav-links{
        max-width: 100%;
    }
}


/* Mobile menu basic (optional hook) */
.menu-toggle { display: none; }
@media (max-width: 991.98px) {
    .nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .nav--open { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-3) 0; }
}

/* =====================================================================
   5) COMPONENTS (cards, buttons, badges, forms)
   ===================================================================== */
.btn {
    font-family: var(--font-heading);
    font-size: var(--fs-200);
    font-weight: var(--w-semibold);
    --btn-bg: var(--primary-color);
    --btn-color: var(--text-color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .45rem 1.1rem;
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius);
    background: var(--btn-bg);
    color: var(--btn-color);
    cursor: pointer;
    transition: transform .06s ease, background .2s ease;
}
.btn:hover { 
    background: rgb(199 151 44 / 70%);
    border: 1px solid var(--secondary-color);
    color: var(--text-color-white);
 }

/* =====================================================================
   6) UTILITIES (spacing, display, text, radius)
   ===================================================================== */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-1{margin-top:var(--space-1)}.mb-1{margin-bottom:var(--space-1)}
.mt-2{margin-top:var(--space-2)}.mb-2{margin-bottom:var(--space-2)}
.mt-3{margin-top:var(--space-3)}.mb-3{margin-bottom:var(--space-3)}
.mt-4{margin-top:var(--space-4)}.mb-4{margin-bottom:var(--space-4)}
.mt-5{margin-top:var(--space-5)}.mb-5{margin-bottom:var(--space-5)}
.mt-6{margin-top:var(--space-6)}.mb-6{margin-bottom:var(--space-6)}

.pt-4{padding-top:var(--space-4)}.pb-4{padding-bottom:var(--space-4)}
.p-2{padding:var(--space-2)}.p-3{padding:var(--space-3)}.p-4{padding:var(--space-4)}.p-5{padding:var(--space-5)}

.d-flex{display:flex}.items-center{align-items:center}.justify-between{justify-content:space-between}
.text-center{text-align:center}
.rounded-sm{border-radius:var(--radius-sm)}.rounded{border-radius:var(--radius)}.rounded-lg{border-radius:var(--radius-lg)}

.hide{display:none !important}

/* Herso Section */

.hero {
    background-image: url('../images/banner/main-banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0 100px 0;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-heading);    
    font-weight: var(--w-semibold);
}

.hero-content h1 span {
    display: block;
    font-size: var(--fs-850);
}

.hero-desc {
    font-family: var(--font-body);
    font-size: var(--fs-500);
    font-weight: var(--w-regular);
    color: #DDDDDD;
    line-height: 28px;
}

.search-panel {
    background-color: var(--text-color-white);fff;
    border-radius: var(--radius-lg);
    border: 1px solid #BDBDBD;
}

.search-panel .input-group {
    border: 1px solid #969696;
    border-radius: var(--radius);
}

.search-panel .input-group span {
    padding-right: 0;
}

.search-panel input[type="text"],
.search-panel input[type="text"]::placeholder {
    color: #969696;
    font-family: var(--font-heading);
    font-size: var(--fs-100);
    font-weight: var(--w-semibold);
    opacity: 1; /* Safari */
}

.search-panel input[type="text"]:focus {
    box-shadow: none !important;
    border-color: inherit !important; /* ya apna custom color */
    outline: none !important;
}

.search-panel .btn {
    color: var(--secondary-color);
    padding: .65rem 1.1rem;
    border: 1px solid #FABA20;
}

.event-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.event-category .category {
  flex: 1 1 calc(50% - 4rem);
  max-width: calc(50% - 4rem);
  padding: 2rem;
  background-color: var(--text-color-white);;
  border-radius: var(--radius, 12px);
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.event-category .category:hover {
  transform: translateY(-4px);
}

/* Desktop (≥992px): 4 per row */
@media (min-width: 992px) {
    .event-category .category {
        flex: 1 1 calc(20% - 2.5rem);
        max-width: calc(20% - 2.5rem);
    }
}

.category img {
    margin: 0 auto;
}

.category span {
    font-family: var(--font-heading);
    font-size: var(--fs-100);
    font-weight: var(--w-semibold);
    margin-top: 5px;
    display: block;
}

/* Easy 3 Steps */
.easy-steps {    
    text-align: center;
    background-color: var(--primary-color);
}

.easy-steps .step {
    position: relative;
    padding: 50px 0;
}

.step img {
    display: inline-block;
}

.step span {
    font-size: var(--fs-200);
}

.step .dot {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.date {
    font-size: var(--fs-600);
}

.month {
    font-size: var(--fs-400);
}

.tickets-slider .slick-list {
    padding: 50px 0 !important;
}

.ticket-card {
    max-width: 420px;
    border: 1px solid var(--secondary-color);
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.2);
}

.ticket-body {
    padding: 10px;
}

.tickets-slider .ticket-body a.btn {
    padding: .45rem 1.8rem;    
}

.tickets-slider .slick-prev, 
.tickets-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 9;
}

.tickets-slider .slick-prev:before, 
.tickets-slider .slick-next:before {
    display: none;
}

.tickets-slider .slick-slide{ outline: none; }


.tickets-slider .slick-slide {
	transform: scale(0.8);
	transition: all 0.4s ease-in-out;
}


.tickets-slider .slick-slide img {
	max-width: 100%;
	transition: all 0.4s ease-in-out;
}

.tickets-slider .slick-center {
	transform: scale(1.1);
}

.slick-initialized .slick-slide {
    border-radius: 0;
}

.account-btn.mbl {display: none;}

/* Footer */
footer {
    position: relative;
}

.footer-logo {
    max-width: 250px;
}

.footer-column.one p {font-size: var(--fs-100);}

.footer-column.two,
.footer-column.three {
    position: relative;
}

.footer-column.two::after,
.footer-column.three::after {
    position: absolute;
    top: 0;
    right: 35px;
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--primary-color);
}

.footer-column.three::after {
    right: -10px;
}

.footer-column.four {
    padding-left: 5rem !important;
}

.newsletter {
    text-align: right;
}

.newsletter input {
    border: 1px solid var(--primary-color);
    border-radius: 0;
}

.newsletter input:focus {
    box-shadow: none;
    border-color: var(--primary-color); /* ya apna custom color */
    outline: none;
}

.newsletter input::placeholder {
    text-align: center;
}

.newsletter .btn {
    font-family: var(--font-body);
    font-size: var(--fs-200);
    font-weight: var(--w-semibold);
    border: 0;
    border-radius: 0;
    padding: .45rem 2.5rem;
}

.newsletter p {
    font-size: var(--fs-100);
    color: #777777;
}

.divider {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 39%;
    height: 1px;
    background-color: var(--primary-color);
}

footer hr {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 39% !important;
}

.copyright {
    color: #777777;
    font-size: var(--fs-100);
}

/* =====================================================================
   8) STATES (helpers, disabled, loading)
   ===================================================================== */
.is-disabled { opacity:.6; pointer-events:none; }
.is-loading  { opacity:.8; }

/* =====================================================================
   9) CATEGORY PAGE
   ===================================================================== */
.categories-section {
    background-color: var(--primary-color);
    padding: 160px 0 120px;
}

.section-desc {
    font-size: var(--fs-500);
    font-weight: var(--w-medium);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* each card */
.category-card {
  position: relative;
  flex: 1 1 calc(50% - 1.5rem); /* 2 cards per row by default */
  max-width: calc(50% - 1.5rem);
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color-white);;
  text-align: center;
  transition: background 0.3s ease;
}

.category-card:hover .overlay {
  background: rgba(0,0,0,0.6);
}

.category-card img {
  width: 74px;
  height: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.category-card h5 {
    font-family: var(--font-heading);
    font-weight: var(--w-semibold);
}

/* Desktop - 4 per row */
@media (min-width: 992px) {
  .category-card {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
  }
}

/* Small mobile fix */
@media (max-width: 480px) {
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.festival-hero img{ object-fit:cover; width:100%; height:auto; }

/* ticket card */
.ticket .card-img-top{ 
    width: 100%;
    height: 165px;              /* fixed height */
    object-fit: cover;          /* crop and fill */
    object-position: center;    /* center focus */
    border-radius: 0;
    overflow: hidden;
}
.ticket .card-img-top img {
    width: 100%;
}
.ticket.card {
    border-radius: 0;
}
.ticket h6{ 
    font-family: var(--font-heading);
    line-height: 1.35;
}
.ticket ul li {
    font-family: var(--font-heading);
    font-size: var(--fs-100);
    font-weight: 500;
    color: #555555;
}
.ticket ul li span{ width:1.1rem; text-align:center; }

.ticket.card .price {
    font-family: var(--font-heading);
    font-weight: var(--w-bold);
}

.ticket.card .btn-warning,
.event-block .btn-warning {
    border-radius: 0;
    background-color: var(--btn-gold);;
    border-color: var(--btn-gold);;
}
.ticket.card .btn-warning:hover,
.event-block .btn-warning:hover {
    background-color: #C7972C;
}

/* Event cards */
.event-card {
  background: var(--text-color-white);;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-card h6 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #000;
}

.event-block h4 {
  color: #000;
}

.event-card ul {
    font-family: var(--font-heading);
    color: #555555;
}

/* spacing adjust */
.event-block + .event-block {
  padding-top: 0;
}

/* =====================================================================
   10) LOGIN PAGE
   ===================================================================== */

.hero-strip{
    background: url("../../assets/images/banner/login-banner.png") center/cover no-repeat;
    padding-block: 12rem 8rem;
    position: relative;
}
/* Login card */
.auth-card{
    background:var(--text-color-white);;
    border-radius: var(--radius-0);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    max-width: 920px;
    margin-inline: auto;
    padding: clamp(1.5rem, 2vw, 3rem);
}

.auth-title{ font-family:"Readex Pro",sans-serif; font-weight:700; }
/* inner bordered panel like mockup */
.auth-inner {
    background-color: var(--text-color-white);
    border: 1px solid var(--text-color-black);
    border-radius: var(--radius-0);
    padding: 1.25rem;
}
.auth-inner .form-label{ font-weight:600; color:#222; }
.auth-inner .form-control{
    background: #D9D9D9;
    border:1px solid #D9D9D9;
    border-radius: var(--radius-0);    
    height: 48px;
}
.auth-inner .form-control:focus{ 
    box-shadow: none; 
    border-color: #bbb;
    outline: none; 
}
.auth-inner .form-control::placeholder{ 
    color:#9c9c9c;
}
.auth-inner .form-check-label {
    color: #404040;
    font-weight: var(--w-medium);
}
.forget-password {
    color: #717171;
    font-size: 12px;
    font-weight: 500;
}
.btn-gold{ 
    background-color: var(--btn-gold);; 
    color:var(--text-color-white);; 
    border: var(--btn-gold);;
    border-radius: var(--radius-0);
}
.btn-gold:hover{ 
    background-color: #C7972C; 
    color: var(--text-color-white);;
    border: var(--btn-gold);;
}
.auth-meta a{ 
    color:#6b6b6b; 
    text-decoration:none; 
}
.auth-meta a:hover{ 
    color:#111; 
    text-decoration:underline; 
}

/* spacing tweaks on small screens */
@media (max-width: 576px){    
    .auth-inner{ padding: 1rem; }
}

/* =====================================================================
   12) ABOUT US PAGE
   ===================================================================== */

.about-hero {
    background-color: var(--primary-color);
    padding: 190px 0 120px;
}
.about-cta{
    background: var(--gold);
}
.our-values .card-body {
    padding: 5rem 1rem 1rem;
    transition: ease .8s;
    background-color: rgba(244, 244, 244, 0.95);
}
.our-values .card-body:hover {
    box-shadow: 0 0 30px 5px rgba(192, 132, 0, 0.5);
}

.our-values .card-body p {
    line-height: 20px;
}

.happy-customer {
    padding-bottom: 60px;
}

.happy-customer .text-muted {
    font-family: var(--font-heading);
    font-size: var(--fs-200);
    font-weight: var(--w-medium);
    color: #95938E !important;
    line-height: 0;
}

.about-cta {
    padding: 120px 0;
    background-color: var(--primary-color);
}

.about-cta .btn-outline-light {
    padding: .45rem 3.5rem !important;
    color: var(--text-color-black);
    border-radius: var(--radius-0);
    border-color: var(--text-color-white);
    background-color: var(--text-color-white);
}

.about-cta .btn-warning {
    padding: .45rem 3.5rem !important;
    border-radius: var(--radius-0);
    border-color: var(--text-color-white);
}

/* improve card readability on small screens */
@media (max-width: 575.98px){
    .about-hero .lead{ font-size: 1rem; }
    .about-cta p {
        font-size: 16px;
    }
}

.pp-hero {
    padding: 160px 0 80px; 
    background-color: var(--primary-color);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06); 
}
.pp-content h2{ color:#111; }
.pp-list{ padding-left: 1.2rem; margin-bottom: 1rem; }
.pp-list li{ margin-bottom: .35rem; }

@media (max-width: 576px){
    .pp-hero .display-6{ font-size: 1.6rem; }
}

.order-page {
    padding: 160px 0 60px;
    background-color: #F2F2F2;
}
.order-page .order-detail {
    padding: 1.5rem;
}
.order-detail ul li {
    color: #4F4F4F;
    font-weight: var(--w-medium);
}
.order-detail ul li.event-row{
      display:grid;
      grid-template-columns: 28px 1fr;
      align-items: start;
      column-gap: 12px;
    }
    .order-detail .event-ico{ width:24px; height:24px; object-fit:contain; }
    .order-detail .event-col{ line-height:1.35; }
    .order-detail .event-time{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:4px;
    }
    .order-detail .event-ico-sm{ width:20px; height:20px; object-fit:contain; }
        .order-detail .event-col.d-flex { line-height: 1.4; }
.order-page .order-card {
    border-radius: 12px; 
}
.btn-gold{ 
    background: #C08400; color:#fff; border:0; }
.btn-gold:hover{ background:#a57f2f; color:#fff; }
.package {
    background: #F2E8D3;
    border-color: #e5d3a8 !important;
}
.card-header h6{ letter-spacing:.2px; }
/* Form select compact */
.form-select.form-select-sm.w-auto{ min-width: 150px; }
.package .form-select.form-select-sm.w-auto {
    border-color: #CDCDCD;
    border-radius: 0;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}
@media (max-width: 576px){
    .form-select.form-select-sm.w-auto{ min-width: 140px; }
}

/* ===== Zoom/Pan Styles ===== */
  .zoom-viewport{
    position: relative;
    width: 100%;
    height: clamp(320px, 50vh, 550px); /* responsive viewport */
    overflow: hidden;
    touch-action: none; /* better pointer handling on mobile */
  }
  .zoom-target{
    user-select: none;
    -webkit-user-drag: none;
    max-width: none;           /* allow scaling beyond natural size */
    width: auto;               /* we'll scale via transform */
    height: auto;
    transform-origin: 0 0;     /* scale from top-left so translateX/Y are intuitive */
    will-change: transform;
    cursor: grab;
    display: block;
  }
  .zoom-target.dragging{ cursor: grabbing; }
  .zoom-toolbar .btn{ min-width: 44px; }
  @media (max-width: 576px){
    .zoom-toolbar .btn{ min-width: 40px; }
  }

  /* ===== Enhanced Toolbar Overlay ===== */
  .zoom-wrap{ position: relative; }
  .zoom-toolbar{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e2d1ad;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    backdrop-filter: blur(4px);
  }
  .zoom-toolbar .btn{
    min-width: 46px;
    padding: 6px 10px;
    line-height: 1.1;
    border-color: rgba(255,255,255,0.6);
    color: #fff;
  }
  .zoom-toolbar .btn:hover{
    background: rgba(255,255,255,0.15);
    color: #fff;
  }

  @media (min-width: 992px){
    .zoom-viewport{ height: 550px; }
  }

/* =====================================================================
   13) CHECKOUT PAGE
   ===================================================================== */
.checkout-page{
    padding: 160px 0 100px;
    background-color: #f7f5ef;
}
.checkout-intro p.text-uppercase{
    letter-spacing: .08em;
}
.checkout-card{
    border-radius: 0;
    border: 1px solid #D2D2D2;
    box-shadow: 0 4px 10px 5px rgba(0,0,0,.05);
}

.checkout-card label {
    font-size: var(--fs-300);
    font-weight: var(--w-regular);
    color: #525252;
}
.checkout-card .form-control,
.checkout-card textarea{
    background-color: #F3F3F3;
    border-color: #F3F3F3;
    border-radius: 0;
    min-height: 54px;
}
.checkout-card .form-control::placeholder {
    font-size: var(--fs-200) !important;
}
.checkout-card textarea{
    min-height: 120px;
    resize: vertical;
}
.checkout-card .form-control:focus,
.checkout-card textarea:focus{
    border-color: #F3F3F3;
    box-shadow: none;
    background-color: #F3F3F3;
}
.summary-card{
    border: 1px solid #D2D2D2;
    box-shadow: 0 4px 10px 5px rgba(0,0,0,.05);
    top: 110px;
}
.summary-card .summary-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(199,151,44,.12);
}

.summary-event h5 {
    font-family: var(--font-heading);
}

.summary-meta{
    padding-left: 0;
}
.summary-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: .2rem 0;    
    font-size: .95rem;
}
.summary-meta li:last-child{
    border-bottom: 0;
}
.summary-meta i{
    color: var(--primary-color);
    font-size: 1.25rem;
}
.summary-meta li p{
    font-size: .85rem;
    color: #777;
}
.summary-event-list{
    padding-left: 1.25rem;
    color: #555;
}
.summary-event-list li{
    font-size: var(--fs-200);
    margin-bottom: .25rem;
    font-family: var(--font-heading);
}

.summary-list li{
    display: flex;
    justify-content: space-between;
    padding: .25rem 0;
    color: #4d4d4d;
}

.summary-details span {
    color: #555555;
    font-family: var(--font-heading);
    font-weight: var(--w-regular);
}

.summary-details span:nth-child(even) {
    font-weight: var(--w-bold);
}

.summary-total .total {
    color: #000000;
    font-family: var(--font-body);
    font-weight: var(--w-bold);
}
.summary-total .total-price {
    font-size: 24px;
    font-weight: var(--w-semibold) !important;
    color: var(--primary-color);
}
.secure-note{
    border-top: 1px solid #f1ead7;
    padding-top: 1rem;
}
.secure-note i{
    font-size: 1.25rem;
}
@media (max-width: 991.98px){
    .summary-card{
        position: static !important;
    }
}

/* =====================================================================
   14) ORDER CONFIRM PAGE
   ===================================================================== */
.order-confirm-page{
    padding: 160px 0 100px;
    background-color: #F2F2F2;
}
.confirmation-status .status-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(192,132,0,.12);
    color: var(--primary-color);
}
.confirmation-card {
    border: 1px solid #d2d2d2;
    box-shadow: 0 4px 10px 5px rgba(0,0,0,.05);
}
.confirmation-media {
    aspect-ratio: 4 / 3;
    background: #111;
}
.confirmation-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.confirmation-detail .detail-item{
    align-items: flex-start;
}
.confirmation-detail .detail-icon{
    width: 42px;
    height: 42px;
    background-color: rgba(199,151,44,.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}
.confirmation-detail strong {
    color: #000000;
    font-family: var(--font-heading);
    font-weight: var(--w-bold);
}
.confirmation-detail p {
    color: #4F4F4F;
    font-weight: var(--w-medium);
}
.divider-line{
    width: 100%;
    height: 1px;
    background-color: #eee4ca;
}
@media (max-width: 767.98px){
    .order-confirm-page{
        padding-top: 140px;
    }
    .confirmation-card{
        padding: 1.5rem;
    }
}

/* =====================================================================
   15) TERMS PAGE
   ===================================================================== */

.hero-terms{
background: var(--primary-color);
    padding: 160px 0 60px;
}
.terms-page{
    padding-bottom: 60px;
}
.terms-content{
    padding-top: 60px;
}
.terms-section + .terms-section{
    margin-top: 2rem;
}
.terms-section h2{
    color: var(--text-color-black);
    font-size: var(--fs-600);
    font-weight: 600;
    margin-bottom: .75rem;
}
.terms-section ul{
    padding-left: 1.2rem;
    margin-bottom: 0;
}
.terms-section ul li{
    margin-bottom: .35rem;
}
@media (max-width: 767.98px){
    .terms-page{
        padding-top: 120px;
    }
    .terms-content{
        padding: 32px;
    }
}

/* =====================================================================
   16) CONTACT PAGE
   ===================================================================== */
.contact-page{
    padding: 170px 0 0;
    background-image: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.5)), url('../images/banner/login-banner.png');
    background-size: cover;
    background-position: center;
}
.contact-hero{
    margin-bottom: 40px;
}
.contact-card{    
    padding: 48px;
    border: 1px solid #d2d2d2;
    border-radius: 0;
}
.contact-card .form-card {
    border: 1px solid var(--text-color-black);
    padding: 30px;
}
.contact-card .form-control,
.contact-card textarea{
    background-color: #D9D9D9;
    border: 1px solid #D9D9D9;
    border-radius: 0;
    min-height: 50px;
    outline: none;
    box-shadow: none;
}
.contact-card .form-control:focus,
.contact-card textarea:focus{
    background-color: #ffffff;
    border-color: #D9D9D9;
    outline: none;
}
.contact-card button{
    width: 100%;
}
.contact-details{
    margin-top: 40px;
    margin-bottom: 60px;
}
.detail-tile{
    background: #D9D9D9;
    padding: 30px 70px;
    text-align: left;
    border: 1px solid #D9D9D9;
}
.detail-tile h4 {
    color: #000000;
    margin-bottom: .5rem;
}
.detail-tile p{
    margin-bottom: 0;
    font-weight: 600;
    color: #777777;
}
@media (max-width: 767.98px){
    .contact-page{
        padding-top: 120px;
    }
    .contact-card{
        padding: 32px;
        margin-top: -60px;
    }
}
@media (min-width: 768px){
    .contact-card button{
        width: auto;
    }
}

/* =====================================================================
   17) RESPONSIVE BREAKPOINTS
   ===================================================================== */
@media (min-width: 992px) {
    .divider {
        position: absolute;
        bottom: 45px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 35%;
        height: 1px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 1024px) {
    .footer-logo {
        max-width: 150px;
    }

    .footer-column.two, 
    .footer-column.three {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .footer-column.four {
        padding-left: 3rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 991.98px) {
    .header__inner { height: 56px; }
    .search { flex-direction: column; }
    .footer-logo { max-width: 150px; }
    .footer-column.one {text-align: left;}
}

@media (max-width: 575.98px) {
    .container { padding-inline: var(--space-3); }
    .section { padding-block: var(--space-6); }

    .hero-desc {
        font-size: var(--fs-400);
        line-height: 22px;
    }
    .hero-desc br {display: none;}

    .account-btn {display: none;}
    .account-btn.mbl {display: block;}
    .account-btn.mbl a:first-child {
        margin-right: .50rem;
    }

    .hero {        
        padding: 120px 0 80px 0;
    }

    .hero-content h1 { font-size: var(--fs-800); }
    .hero-content h1 span { font-size: var(--fs-700); }

    .step .dot { display: none; }

    .easy-steps .step.two {
        padding: 0;
    }

    .tickets-slider .slick-list {padding: 0 !important;}
    .tickets-slider .slick-center {
	    transform: scale(1);
    }

    .footer-column.two::after,
    .footer-column.three::after {
        display: none;
    }

    .footer-column.two {
        padding-left: 3rem !important;
    }
    
    .newsletter {
        text-align: center;
    }

    .newsletter p {
        margin-bottom: 15px !important;
    }

    .divider {
        bottom: 40px;
        width: 90%;
    }
}
