/* Global Styles & Resets */
:root {
    --font-serif-display: 'Playfair Display', serif; 
    --font-sans-body: 'Inter', sans-serif; 
    
    /* Luxury Editorial Palette */
    --bg-color-main: #FDFCFB; 
    --bg-color-section-container: #FFFFFF; 
    --bg-color-card: #FFFFFF; 
    --bg-color-premium-section: #F7F7F7; 
    --bg-color-banner: #F0F2F4; 
    
    --text-color-main: #525252; 
    --heading-color-main: #121212; 
    
    --accent-gold: #9e6346; 
    --accent-gold-hover: #d6ae84;  
    
    --button-text-color: #FFFFFF; 
    --button-secondary-text-color: var(--accent-gold);
    --button-secondary-bg-hover: #FDF6F0; 
    
    --border-color: #ECECEC; 
    
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    --card-hover-shadow: 0 12px 35px rgba(0,0,0,0.07);

    --hero-text-color: #FFFFFF; 
    --nav-bg-color-scrolled: rgba(255, 255, 255, 0.97); 
    --nav-text-color: #333333;
    --mobile-menu-bg: rgba(253, 252, 251, 0.99); 
    --mobile-menu-text-color: #333333;
    --nav-height: 60px; 
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@400;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans-body);
    color: var(--text-color-main);
    line-height: 1.85; 
    background-color: var(--bg-color-main);
    overflow-x: hidden;
    font-weight: 400;
}

body:lang(ko),
h1:lang(ko),
h2:lang(ko),
h3:lang(ko),
h4:lang(ko),
h5:lang(ko),
.section-title:lang(ko),
.hero-content h1:lang(ko),
.hero-content .pre-title:lang(ko),
.hero-content .description-text:lang(ko),
.hero-content .subtitle-hero:lang(ko),
.premium-text h3:lang(ko),
.button:lang(ko),
p:lang(ko),
a:lang(ko) {
  font-family: 'Noto Sans KR', sans-serif !important;
}

body.modal-open { /* Added to prevent background scroll when modal is open */
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px; 
}

h1, h2, h3, h4, h5 { /* Added h5 */
    font-family: var(--font-serif-display);
    margin-bottom: 0.8em; 
    line-height: 1.2; 
    color: var(--heading-color-main);
    font-weight: 700; 
}

h1 { font-size: 3em; } 
h2 { font-size: 2.3em; } 
h3 { font-size: 1.7em; } 
/* h4, h5 will be styled specifically in modal or other contexts */

.container { 
    width: 90%;
    max-width: 1100px; 
    margin: 0 auto;
    padding: 30px 20px; 
    background-color: var(--bg-color-section-container); 
    border-radius: 10px; 
    box-shadow: var(--card-shadow); 
    margin-bottom: 40px; 
}

main > section:last-child .container {
    margin-bottom: 0;
}

.intro-section-wrapper .container-content, 
.promise-section .container-content,
.premium-section .container-content { 
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 50px 0; 
}

.premium-section, .tanba-section, .kyoto-intro-section, .kyoto-experiences-section, .promise-section { 
        margin-bottom: 40px; 
        padding-top: var(--nav-height); 
        margin-top: calc(-1 * var(--nav-height)); 
}
.premium-section {
        padding-top: calc(var(--nav-height) + 20px); 
        margin-top: calc(-1 * (var(--nav-height) - 60px));
}


.section-title { 
    text-align: center;
    margin-bottom: 50px; 
    font-size: 2.6em; 
    color: var(--heading-color-main);
    font-weight: 700;
}

.section-title::after { 
    content: '';
    display: block;
    width: 60px; 
    height: 2.5px; 
    background-color: var(--accent-gold);
    margin: 15px auto 0;
}

.button {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(145deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--button-text-color) !important; 
    padding: 15px 35px; 
    text-decoration: none;
    border-radius: 50px; 
    font-weight: 500; 
    font-family: var(--font-sans-body);
    transition: background 0.4s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; 
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15); 
    cursor: pointer;
    font-size: 1em;
    position: relative; 
    box-shadow: 0 5px 18px rgba(var(--accent-gold),0.25), inset 0 -2px 1px rgba(0,0,0,0.1); 
}
.button .arrow-icon {
    margin-left: 10px; 
    font-size: 1em; 
    transition: transform 0.3s ease;
}
.button:hover .arrow-icon {
    transform: translateX(5px); 
}


.button:hover {
    background: linear-gradient(145deg, var(--accent-gold-hover), var(--accent-gold));
    transform: translateY(-4px) scale(1.03); 
    box-shadow: 0 10px 25px rgba(var(--accent-gold-hover),0.35), inset 0 -1px 0 rgba(0,0,0,0.05); 
}
.view-more-btn { /* This class is now used on the label */
    display: block; 
    margin: 30px auto 20px; 
    width: fit-content; 
    background: transparent;
    color: var(--button-secondary-text-color) !important;
    border: 1.5px solid var(--accent-gold); 
    font-weight: 500;
    padding: 10px 24px; 
}
.view-more-btn:hover {
    background: transparent;
    color: var(--accent-gold-hover) !important;
    border-color: var(--accent-gold-hover);
}

@keyframes heroButtonBounce { 
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
}


/* Navigation Bar */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent; 
    backdrop-filter: blur(0px); 
    box-shadow: none; 
    z-index: 1000;
    padding: 0 4%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.top-nav.scrolled {
    background-color: var(--nav-bg-color-scrolled);
    backdrop-filter: blur(10px); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.07); 
}

.logo img {
    height: 22px; 
    width: auto;
    transition: filter 0.3s ease;
}
/* Bigger for Colab logo */
.logo.big img{
    height: 37px;
}

.top-nav:not(.scrolled) .logo img { 
        filter: brightness(0) invert(1); 
}

.hamburger-menu {
    display: none; 
    cursor: pointer;
    padding: 10px;
    z-index: 1001; 
    opacity: 0; 
    animation: fadeInNavElement 0.5s ease 1s forwards; 
}
@keyframes fadeInNavElement { to { opacity: 1; } }

.hamburger-menu .bar {
    display: block;
    width: 22px; 
    height: 2.5px;
    margin: 5px auto;
    background-color: var(--nav-text-color);
    transition: all 0.3s ease-in-out;
    border-radius: 1px; 
}
    .top-nav:not(.scrolled) .hamburger-menu .bar { 
    background-color: var(--hero-text-color);
}
.top-nav.scrolled .hamburger-menu .bar {
    background-color: var(--nav-text-color);
}


.mobile-nav {
    display: none; 
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh; 
    background-color: var(--mobile-menu-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}
.mobile-nav ul {
    list-style: none;
    text-align: center;
}
.mobile-nav li {
    margin: 18px 0; 
}
.mobile-nav a {
    color: var(--mobile-menu-text-color); 
    font-size: 1.7em; 
    text-decoration: none;
    font-family: var(--font-serif-display);
    padding: 8px;
    transition: color 0.3s ease;
}
.mobile-nav a:hover {
    color: var(--accent-gold);
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg); 
    background-color: var(--nav-text-color); 
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg); 
    background-color: var(--nav-text-color); 
}


/* Hero Section */
.hero {
    height: 90vh; 
    min-height: 500px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--hero-text-color); 
    position: relative;
    padding-top: var(--nav-height); 
    overflow: hidden; 
    margin-bottom: 3px;
}
.hero-video-bg {
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1; 
}

.hero::before { /* Gradient overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(140 174 229 / 61%) 0%, rgb(0 0 0 / 32%) 50%, rgb(0 0 0 / 33%) 100%);
    z-index: 0; 
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px; 
    padding: 20px;
}
.hero-content > *:not(.scroll-down-cue) { 
    opacity: 0;
    transform: translateY(30px);
}
.hero-content .pre-title { 
    display: block;
    font-size: 1.1em; 
    font-family: var(--font-sans-body);
    font-weight: 400; 
    color: var(--hero-text-color);
    opacity: 0.85;
    margin-bottom: 16px; 
    text-align: center; 
    margin-left: 0; 
    text-transform: uppercase;
    letter-spacing: 2px; 
    animation: heroElementFadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-content h1 { 
    font-size: 6.5em; 
    margin-bottom: 0px; 
    text-shadow: 2px 3px 10px rgba(0,0,0,0.6); 
    font-weight: 700;
    color: var(--hero-text-color); 
    line-height: 1.05; 
    text-align: center; 
    letter-spacing: 2.5px; 
    text-transform: uppercase;
    animation: heroElementFadeInUp 0.8s ease-out 0.5s forwards;
}
.hero-content .subtitle-hero { 
    font-size: 1.8em; 
    font-family: var(--font-serif-display); 
    font-weight: 400; 
    font-style: italic;
    color: var(--hero-text-color);
    opacity: 0.9;
    margin-bottom: 30px; 
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    animation: heroElementFadeInUp 0.8s ease-out 0.7s forwards;
}


.hero-content .description-text { 
    font-size: 1em; 
    opacity: 0.9;
    margin-bottom: 32px; 
    color: var(--hero-text-color); 
    max-width: 550px; 
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75; 
    font-weight: 300;
    animation: heroElementFadeInUp 0.8s ease-out 0.9s forwards;
}

.hero-content .button { 
        padding: 8px 30px; 
        font-size: 1.1em;
        animation: heroElementFadeInUp 0.8s ease-out 1.1s forwards;
}

@keyframes heroElementFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Down Arrow */
.scroll-down-cue {
    position: absolute;
    bottom: -35px; 
    left: 50%;
    transform: translateX(-50%);
    color: var(--hero-text-color);
    font-size: 1.8em; 
    opacity: 0; 
    animation: bounceArrow 2.5s infinite ease-in-out 1.5s, fadeInNavElement 0.5s ease 1.5s forwards; 
    cursor: pointer; 
    z-index: 2; 
    text-decoration: none; 
    padding: 5px;
}
.scroll-down-cue svg { 
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-8px);}
    60% {transform: translateX(-50%) translateY(-4px);}
}

/* Premium Teaser Banner */
/* changed image to img */
.premium-teaser-banner {
    padding: 0; 
    text-align: center;
    margin-bottom: 50px; 
    background-color: var(--bg-color-main); 
    position: relative; 
    background-image: url('../img/discover/kyoto/premium-experiences.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: 250px; 
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;       
    margin-left: auto;      
    margin-right: auto;
}
.premium-teaser-banner::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.premium-teaser-banner .banner-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: transparent; 
    border-radius: 0; 
    box-shadow: none; 
    position: relative; 
    z-index: 1;
}

.premium-teaser-banner p {
    font-size: 1.2em; 
    color: var(--hero-text-color); 
    margin-bottom: 25px; 
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.premium-teaser-banner h4 {
    font-size: 1em; 
    color: var(--hero-text-color); 
    margin-bottom: 5px; 
    font-weight: 400;
    font-family: var(--font-sans-body);
}
.premium-teaser-banner .button { 
    font-size: 1.1em; 
    padding: 5px 15px;
}


.pricing-note {
    text-align: center;
    padding: 25px 20px; 
    background-color: #F0F2F4; 
    font-size: 0.85em; 
    color: var(--text-color-main);
    opacity: 0.8;
    border-bottom: 1px solid var(--border-color);
}

/* Intro Sections Styling */
.intro-section-boxed { 
    width: 90%;
    max-width: 1100px; 
    margin: 0 auto 40px auto; 
    padding: 0; 
    background-color: var(--bg-color-section-container); 
    border-radius: 10px;
    box-shadow: var(--card-shadow); 
    display: flex; 
    flex-direction: column; 
    align-items: stretch; 
    gap: 0; 
}
.intro-section-boxed .intro-image {
    width: 100%;
    min-width: 100%;
    flex-basis: auto;
    border-radius: 10px 10px 0 0; 
    overflow: hidden; 
    height: 350px; 
}



.intro-section-boxed .intro-image img {
    border-radius: 0; 
    box-shadow: none;
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.intro-section-boxed .intro-text {
    padding: 30px 30px 40px 30px; 
    flex-basis: auto;
}


.intro-text {
    flex: 1.5; 
    min-width: 300px;
}
.intro-text h2 { 
    font-size: 2em; 
    margin-bottom: 0.7em;
}
.intro-text p { 
        margin-bottom: 1em; 
        font-size: 0.9em; 
        line-height: 1.65;
}
.intro-text p strong { 
    font-weight: 600; 
    color: var(--heading-color-main); 
}
.intro-text ul {
    list-style: none; 
    padding-left: 0; 
}
    .intro-text li { 
    margin-bottom: 0.7em; 
    font-size: 0.85em; 
    line-height: 1.65; 
    padding-left: 18px; 
    position: relative;
}
.intro-text li::before {
    content: ''; 
    background-color: var(--accent-gold);
    width: 5px; 
    height: 5px;
    border-radius: 50%;
    display: inline-block; 
    position: absolute;
    left: 0;
    top: 8px; 
}


.intro-image { 
    flex: 1;
    min-width: 280px; 
}


.experiences-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); 
    gap: 25px; 
}

.experience-card { 
    background-color: var(--bg-color-card);
    border-radius: 8px; 
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    overflow: visible; 
    display: flex;
    flex-direction: column;
    opacity: 0; 
    transform: translateY(10px); 
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.experience-card:hover {
    transform: translateY(-6px); 
    box-shadow: var(--card-hover-shadow);
}

.card-image {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; 
}
.experience-card:hover .card-image img {
    transform: scale(1.03); 
}


.card-content {
    padding: 20px; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-content h3, .card-content h4 { 
    margin-top: 0;
    color: var(--heading-color-main);
    font-size: 1.4em; 
}
.card-content .curation-note {
    font-style: normal; 
    font-size: 0.8em; 
    color: var(--text-color-main);
    opacity: 0.85;
    margin-bottom: 10px;
    padding-left: 0; 
    border-left: none;
    font-weight: 400; 
}
.card-content .curation-note strong {
    color: var(--accent-gold); 
    font-weight: 600; 
}
.card-content .price-guide,
.card-content .duration,
.card-content .perfect-for {
    font-size: 0.85em; 
    margin-bottom: 6px;
    opacity: 1; 
}
.card-content .price-guide strong {
    color: var(--accent-gold);
    font-size: 1.05em;
}
.card-content .button {
    margin-top: 15px;
    align-self: flex-start; 
    padding: 8px 18px; 
    font-size: 0.85em;
}


/* Premium Section */
.premium-section {
    background-color: var(--bg-color-premium-section); 
    color: var(--text-color-main); 
    padding-top: 1px; 
    padding-bottom: 1px;
}
.premium-section .container-content > p { 
    color: var(--text-color-main);
    opacity: 0.9;
    text-align:center; 
    max-width:800px; 
    margin: -30px auto 50px auto; 
}


.premium-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background-color: var(--bg-color-card); 
    padding: 35px; 
    border-radius: 10px; 
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}
.premium-item:nth-child(even) .premium-image { 
    order: 1; 
}
.premium-item:nth-child(even) .premium-text {
    order: 2;
}
.premium-item:nth-child(odd) .premium-image { 
    order: 2; 
}
    .premium-item:nth-child(odd) .premium-text {
    order: 1;
}

.premium-image {
    flex: 1;
    min-width: 300px;
    height: 280px; 
    background-color: #e0e0e0; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}
.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.premium-text {
    flex: 1.5;
    min-width: 300px;
}
.premium-text h3 {
    font-size: 1.9em; 
    color: var(--accent-gold);
    margin-bottom: 0.6em;
}
.premium-text .price-guide {
    font-size: 1em;
    margin-bottom: 20px;
    opacity: 0.95;
}
.premium-text .price-guide strong {
        color: var(--accent-gold); 
}

.premier-note {
    padding-bottom: 10px; 
}

.premier-note strong {
    color: var(--accent-gold); 
    font-weight: 600; 
}


/* Promise Section */
.promise-section {
    text-align: center;
    background-color: var(--bg-color-main); 
}


.promise-section h2 {
        color: var(--heading-color-main);
        font-size: 2.4em;
}
.promise-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1em; 
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px; 
    background-color: #e9ecef; 
    color: #495057; 
    font-size: 0.9em;
    border-top: 1px solid var(--border-color);
}
footer p a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}
footer p a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px; /* Will be above fixed banner */
    right: 30px;
    z-index: 995; /* Ensure it's above fixed banner(998) but below modal (1050) */
    border: none;
    outline: none;
    background-color: var(--accent-gold);
    color: var(--button-text-color); 
    cursor: pointer;
    padding: 0; 
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    font-size: 22px; 
    line-height: 45px; 
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12); 
    transition: background-color 0.3s, opacity 0.3s, transform 0.3s;
}

#backToTopBtn:hover {
    background-color: var(--accent-gold-hover); 
    transform: scale(1.05); 
}

/* CSS for Pure CSS Show/Hide "View More" */
.view-more-toggle {
    display: none; 
}

.view-more-label { 
    cursor: pointer;
    user-select: none; 
}

.experiences-grid .experience-card:nth-child(n+4) {
    display: none;
}

.view-more-toggle:checked ~ .experiences-grid .experience-card:nth-child(n+4) {
    display: flex; 
}

.view-more-label .view-less-text {
    display: none;
}

.view-more-toggle:checked ~ .view-more-label .view-more-text {
    display: none;
}

.view-more-toggle:checked ~ .view-more-label .view-less-text {
    display: inline; 
}

/* --- Existing Fixed Bottom Banner Styles (Mostly unchanged, ensure these are present) --- */
.fixed-bottom-banner {
    position: fixed;
    bottom: 0;
    
    /* MODIFIED: Centering mechanism for EXPANDED state */
    left: 50%;
    width: 100%; /* Takes full viewport width */
    transform: translateX(-50%); /* Centers the 100% width block */
    
    padding: 20px; /* Internal padding for expanded state */
    border-radius: 0; /* No rounded corners when expanded */
    
    /* Existing styles 
    background-image: url('https://via.placeholder.com/1200x100/4A5568/FFFFFF?text=Your+Banner+Image+Here');*/
    background-size: cover;
    background-position: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    z-index: 998;
    color: var(--hero-text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* Transition properties */
    transition: width 0.4s ease, padding 0.4s ease, 
                border-radius 0.4s ease, box-shadow 0.4s ease, 
                /* left & transform won't animate if they are the same in both states, which is good */
                /* but keeping them in transition list doesn't hurt for other potential states */
                left 0.4s ease, transform 0.4s ease; 
}

.fixed-bottom-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(15 24 42 / 90%);
    z-index: 0;
    border-radius: inherit; /* Allows overlay to adopt parent's border-radius */
    transition: border-radius 0.4s ease; /* Also transition overlay's radius */
}

/* Content within the banner (EXPANDED state) */
.fixed-bottom-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    
    /* Properties for animation */
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top center; /* Content shrinks/expands from its top edge */
    height: auto; /* Or its natural height */
    overflow: visible;
    transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}

.fixed-bottom-banner p {
    margin: 0;
    font-size: 1em;
    font-weight: 500;
    flex-shrink: 1;
}

.fixed-bottom-banner .button { /* "Claim Your Discount" button */
    /* Existing styles */
    padding: 10px 22px;
    font-size: 0.9em;
    flex-shrink: 0;
}

/* --- Toggle Button (was close button) --- */
.fixed-bottom-banner-toggle {
    background: transparent;
    border: none;
    color: var(--hero-text-color);
    font-size: 1.8em; /* Keep it large for visibility */
    font-weight: bold;
    cursor: pointer;
    padding: 0 5px; /* Adjusted padding */
    line-height: 1;
    position: relative;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    width: 0px;
    text-align: center;
    margin: 10px; /* Space from the main content or teaser */
}
.fixed-bottom-banner-toggle:hover {
    opacity: 1;
}
.fixed-bottom-banner-toggle .icon-expand {
    display: none; /* Hidden by default */
}


/* --- Styles for MINIMIZED Banner Teaser --- */
.minimized-banner-teaser {
    display: none; /* Hidden when banner is expanded */
    color: var(--hero-text-color);
    font-weight: 500;
    font-size: 0.9em;
    cursor: pointer; /* Allow clicking teaser to expand */
    z-index: 1;
    flex-grow: 1; /* Allow it to take available space next to toggle button */
    text-align: left; /* Or center, depending on preference */
    font-family: var(--font-serif-display);
}


/* --- Styles for when banner HAS the '.minimized' class (TAB STATE) --- */
.fixed-bottom-banner.minimized {
    /* Tab dimensions and positioning */
    width: auto; 
    min-width: 150px; 
    max-width: 280px; 
    /* left: 50%; /* Same as expanded, so no change/animation for left */
    /* transform: translateX(-50%); /* Same as expanded, no change/animation for transform */
    bottom: 0; 

    /* Tab appearance */
    padding: 8px 12px; 
    border-top-left-radius: 12px; 
    border-top-right-radius: 12px; 
    border-bottom-left-radius: 0; 
    border-bottom-right-radius: 0;
    box-shadow: 0 -4px 15px rgb(255 255 255 / 35%); 
    
    /* Content alignment within the tab */
    justify-content: center; 
    align-items: center;
}

/* Content hiding when MINIMIZED */
.fixed-bottom-banner.minimized .fixed-bottom-banner-content {
    opacity: 0;
    transform: scaleY(0); /* Content shrinks vertically */
    transform-origin: top center; /* Ensures it shrinks towards its top */
    height: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0; margin: 0;
    width: 0; /* Ensures no width is taken */
}

/* Minimized Teaser (styles mostly same, ensure it's displayed) */
.minimized-banner-teaser {
    display: none; /* Default hidden */
    /* ... other existing styles for teaser ... */
}
.fixed-bottom-banner.minimized .minimized-banner-teaser {
    display: flex; /* Show the teaser when minimized */
    align-items: center;
    justify-content: center;
    /* ... other existing styles for teaser ... */
}

/* Toggle button styles (mostly same) */
.fixed-bottom-banner.minimized .fixed-bottom-banner-toggle .icon-minimize {
    display: none;
}
.fixed-bottom-banner.minimized .fixed-bottom-banner-toggle .icon-expand {
    display: inline;
    font-size: 1.2em; /* Or your preferred size for the '↑' icon */
    line-height: 1;
}

/* Responsive adjustments for banner */
@media (max-width: 768px) {

    /* Minimized tab on mobile */
    .fixed-bottom-banner.minimized {
        min-width: 190px;
        max-width: 220px;
        padding: 6px 10px;
    }
    /* Ensure main banner is row for teaser and toggle when minimized on mobile */
    .fixed-bottom-banner.minimized {
        flex-direction: row;
        align-items: center;
    }
    .minimized-banner-teaser {
        font-size: 0.85em;
    }
    .fixed-bottom-banner-toggle {
        font-size: 1.6em; /* Slightly smaller toggle on mobile */
    }
    .fixed-bottom-banner.minimized .fixed-bottom-banner-toggle .icon-expand {
        font-size: 0.9em;
    }
}

/* Travel Popup Modal Styles START */
#travel_popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); 
    z-index: 1050; 
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; 
}

#travel_popup.active {
    display: flex; 
    align-items: center;
    justify-content: center;
}

#travel_popup .common_inner { /* This div helps with centering and max-width */
    width: 100%;
    max-width: 550px; 
    margin: auto; /* Ensures centering if flex alignment on parent changes */
}

#travel_popup .common_content {
    background-color: var(--bg-color-section-container, #FFFFFF);
    color: var(--text-color-main, #525252);
    padding: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    position: relative;
    text-align: center;
}

#travel_popup .close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
#travel_popup .close:hover {
    opacity: 1;
}
#travel_popup .close span { /* Inner span for positioning the cross lines */
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
#travel_popup .close span::before,
#travel_popup .close span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px; 
    height: 2.5px; 
    background-color: var(--heading-color-main, #121212);
    border-radius: 2px;
}
#travel_popup .close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#travel_popup .close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#travel_popup .logo { /* Assuming 'Veltra' is the text content */
    font-family: var(--font-serif-display, 'Playfair Display', serif);
    font-size: 1.8em;
    color: var(--accent-gold, #9e6346);
    margin-bottom: 15px;
    font-weight: 700;
}

#travel_popup .subtitle01 { /* This is an h4 */
    font-family: var(--font-serif-display, 'Playfair Display', serif);
    font-size: 1.5em;
    color: var(--heading-color-main, #121212);
    margin-bottom: 15px;
    font-weight: 600; /* Adjusted from default h4 weight */
    line-height: 1.3;
}

#travel_popup .text01 {
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

#travel_popup .subtitle02 { /* This is an h5 */
    font-family: var(--font-sans-body, 'Inter', sans-serif);
    font-size: 1em;
    color: var(--heading-color-main, #121212);
    margin-bottom: 20px;
    font-weight: 600; /* Adjusted from default h5 weight */
}

#travel_popup .btn01 { /* Container for the button */
    margin-bottom: 20px;
}

#travel_popup .experiencetour.button { /* Modal's 'Continue' button */
    padding: 12px 30px; 
    font-size: 1em;
    width: auto; 
    max-width: 250px; 
    margin: 0 auto; 
    display: inline-flex; /* For margin auto centering */
    box-shadow: 0 4px 15px rgba(var(--accent-gold),0.2);
}
#travel_popup .experiencetour.button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(var(--accent-gold-hover),0.3);
}

#travel_popup .text02 {
    font-size: 0.8em;
    line-height: 1.6;
    color: var(--text-color-main, #525252);
    opacity: 0.7;
}
/* Travel Popup Modal Styles END */

/* Responsive Adjustments */
@media (min-width: 769px) { 
    .intro-section-boxed {
        flex-direction: row; 
        gap: 50px;
    }
    .intro-section-boxed .intro-image {
        order: 1; 
        flex: 1;
        min-width: 40%; 
        height: auto; 
        border-radius: 0 10px 10px 0; 
    }
        .intro-section-boxed .intro-image img {
        border-radius: 0 10px 10px 0;
    }
    .intro-section-boxed .intro-text {
        flex: 1.5;
        padding: 30px 40px; 
    }
    .kyoto-intro-section .intro-section-boxed .intro-image {
        order: 2;
        border-radius: 0 10px 10px 0;
    }
    .kyoto-intro-section .intro-section-boxed .intro-image img {
            border-radius: 0 10px 10px 0;
    }
    .kyoto-intro-section .intro-section-boxed .intro-text {
        order: 1;
    }
}


@media (max-width: 992px) {
    .hero-content h1 { font-size: 5em; } 
    .hero-content .pre-title { font-size: 1em; text-align: center;} 
    .hero-content .subtitle-hero { font-size: 1.4em; }
    .section-title { font-size: 2.2em; }
    h1 { font-size: 2.4em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }


    .premium-item:nth-child(odd) .premium-image,
    .premium-item:nth-child(odd) .premium-text,
    .premium-item:nth-child(even) .premium-image,
    .premium-item:nth-child(even) .premium-text {
        order: 0 !important; 
        flex-basis: 100%;
    }
    .premium-image { height: 240px; }
}

@media (max-width: 768px) { 
    body {
            padding-bottom: 180px; 
    }
    .hero-content h1 { font-size: 4em; } 
    .hero-content .pre-title { font-size: 0.9em; } 
    #kyotoSection > div > div.intro-image {
    height: 0px; 
    }
    .experiences-grid { 
        grid-template-columns: 1fr;
    }
    .card-image { height: 200px; } 


    .premium-item {
        padding: 25px; 
    }
        .premium-text h3 {
        font-size: 1.7em; 
    }
    .premium-image { height: 220px; }

    .hamburger-menu {
        display: block; 
    }
    .top-nav {
        padding: 0 20px; 
    }

    /* Fixed Bottom Banner Responsive */
    .fixed-bottom-banner {
        padding: 15px;
    }
    .fixed-bottom-banner-content {
        display: flex;            
        flex-direction: column; 
        align-items: center;      
        gap: 10px;
        text-align: center; 
        width: calc(100% - 40px); 
        margin: 0 auto; 
        position: relative;       
        z-index: 1;               
    }
    .fixed-bottom-banner p {
        font-size: 0.9em;
    }
    .fixed-bottom-banner .button {
        width: auto; 
        padding: 12px 25px;
    }
    .fixed-bottom-banner-close {
        position: absolute; 
        top: 10px;
        right: 15px;
        padding: 5px;
        font-size: 1.6em;
    }

}
@media (max-width: 600px) { /* Modal Responsive */
    #travel_popup .common_content {
        padding: 25px 20px;
    }
    #travel_popup .logo {
        font-size: 1.6em;
    }
    #travel_popup .subtitle01 {
        font-size: 1.3em;
    }
    #travel_popup .text01 {
        font-size: 0.9em;
    }
    #travel_popup .subtitle02 {
        font-size: 0.95em;
    }
    
}


@media (max-width: 480px) {
    .button { padding: 10px 20px; font-size: 0.9em; }
    .section-title { font-size: 1.8em; }
    h1 { font-size: 2.1em; }
    h2 { font-size: 1.7em; }
    h3 { font-size: 1.4em; } 
    .card-image { height: 180px; } 
    .premium-image { height: 200px; }

    /* Fixed Bottom Banner Responsive Small */
    .fixed-bottom-banner p {
        font-size: 0.85em; 
    }
        .fixed-bottom-banner-content {
        gap: 8px;
    }
    .fixed-bottom-banner .button {
        font-size: 0.85em;
        padding: 10px 20px;
    }
    
    .hero-content { padding-bottom: 50px;} 
}

@media (max-width: 380px) { 
    .hero-content .pre-title { font-size: 0.8em; margin-bottom: 10px;} 
    .hero-content h1 { margin-bottom: 1px;} 
    .hero-content .description-text { font-size: 0.8em; margin-bottom: 10px;} 
}