@font-face {
    font-family: 'Mokgech';
    src: url('assets/fonts/mokgech.regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-gold: #c9a227;
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --parchment: #f4e4bc;
    --accent-red: #8a1c1c;
    --font-heading: 'Mokgech', serif;
    --font-subheading: 'Mokgech', serif;
    --font-body: 'EB Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor.hovering {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 162, 39, 0.1);
    border-color: transparent;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 100px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background-color: #333;
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
}

.subheading {
    font-family: var(--font-subheading);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0 20px;
}

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

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-menu-links a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 0;
    overflow: hidden;
    width: 100vw;
}

.hero-bg-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    /* Subtle background */
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-flow .flow-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: heroFlow 80s linear infinite;
    will-change: transform;
}

.hero-bg-flow img {
    height: 100%;
    width: 100vw;
    /* Each image takes full viewport width */
    object-fit: cover;
    filter: grayscale(20%) brightness(50%);
    animation: floatImage 12s ease-in-out infinite alternate;
    flex-shrink: 0;
    /* Prevent images from squeezing */
}

.hero-bg-flow img:nth-child(even) {
    animation-duration: 15s;
    animation-delay: -5s;
}

@keyframes floatImage {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes heroFlow {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.hero-content {
    z-index: 1;
}

.hero-label {
    font-family: var(--font-subheading);
    color: var(--primary-gold);
    letter-spacing: 5px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.2);
}

.hero-title .word {
    display: inline-block;
    margin: 0 0.15em;
    overflow: hidden;
    padding: 0.4em 0;
    margin-top: -0.4em;
    margin-bottom: -0.4em;
}

.hero-title .word span {
    display: inline-block;
    opacity: 0;
    transform: translateY(105%);
    will-change: transform, opacity;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 20px;
}

.menu-notes {
    margin-top: 30px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.specials-note {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.allergen-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 20px;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-frame {
    border: 2px solid var(--primary-gold);
    padding: 10px;
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--primary-gold);
    border-left: 2px solid var(--primary-gold);
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--primary-gold);
    border-right: 2px solid var(--primary-gold);
}

.image-frame img {
    width: 100%;
    display: block;
    filter: sepia(0.3) contrast(1.1);
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.monk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.monk-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.monk-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(201, 162, 39, 0.1);
}

.monk-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.monk-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.monk-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Menu Section */
.menu-section {
    background-color: var(--secondary-dark);
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.menu-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 15px 30px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    letter-spacing: 2px;
}

.menu-nav-btn.active,
.menu-nav-btn:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.menu-container {
    position: relative;
    z-index: 1;
    min-height: 400px;
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: block;
}

.menu-subcategory {
    margin-bottom: 100px;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: rgba(201, 162, 39, 0.08);
}

.accordion-header .accordion-title {
    margin: 0;
    font-size: 1.6rem;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.accordion-icon {
    color: var(--primary-gold);
    font-size: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.accordion-item.active {
    border-color: var(--primary-gold);
    background: rgba(26, 26, 26, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.accordion-item.active .accordion-header {
    background: rgba(201, 162, 39, 0.05);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 5000px;
    /* Increased for large menus */
    opacity: 1;
    visibility: visible;
    padding: 40px 30px;
}

.subcategory-title {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    letter-spacing: 3px;
}

.subcategory-title .note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-style: italic;
}

.subcategory-title::after {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
    margin-top: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.menu-item {
    background: rgba(26, 26, 26, 0.3);
    padding: 35px;
    border: 1px solid rgba(201, 162, 39, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 8px;
}

.menu-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    background: rgba(26, 26, 26, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    padding-bottom: 12px;
}

.item-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--parchment);
    letter-spacing: 1px;
    line-height: 1.2;
}

.veg-tag {
    color: #81c784;
    font-size: 0.75rem;
    margin-left: 8px;
    font-family: var(--font-body);
    vertical-align: middle;
    border: 1px solid #81c784;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.price {
    font-family: var(--font-subheading);
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 15px;
}

.item-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.item-extra {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dotted rgba(201, 162, 39, 0.1);
}

.menu-footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-footer-note i {
    margin: 0 10px;
    font-size: 0.8rem;
}

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
}

.booking-form-container {
    background: url('assets/images/parchment.svg') no-repeat center center/cover;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Fallback if image not available */
.booking-form-container {
    background-color: #1e1e1e;
    border: 1px solid var(--primary-gold);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    font-family: var(--font-subheading);
    color: var(--primary-gold);
    font-size: 0.9rem;
}

input,
select,
textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 12px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.5);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-dark);
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-family: var(--font-subheading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-logo p {
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-details {
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.opening-hours {
    margin: 20px 0;
    text-align: center;
}

.opening-hours h5 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-subheading);
    display: inline-block;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding-bottom: 5px;
}

.opening-hours p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.opening-hours p span {
    color: var(--primary-gold);
    font-weight: 500;
    min-width: 80px;
    text-align: right;
}

.footer-map {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.footer-map:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-map iframe {
    display: block;
    filter: grayscale(0.5) contrast(1.2) brightness(0.8);
    transition: filter 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.toast-message h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.toast-message p {
    font-size: 0.9rem;
    margin: 0;
}

.toast-close {
    cursor: pointer;
    font-size: 1rem !important;
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        gap: 40px;
    }

    .booking-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    section {
        padding: 80px 0;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .story-content,
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    .monk-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-contact p,
    .opening-hours {
        justify-content: center;
        text-align: center;
    }

    .footer-map {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .menu-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .booking-form-container {
        padding: 25px 20px;
    }

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