/* ==========================================
   🖼️ MASTER IMAGE CONTROLS
   Update these URLs to change the static pictures across the site.
============================================= */

/* 1. The Main Hero Background Cover */
.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/hero-background.jpg');
}

/* 2. The Film Strip Images (Next to the Book) */
.photo1 {
    background-image: url('../assets/film-sample1.jpg');
}

.photo2 {
    background-image: url('../assets/film-sample2.jpg');
}

.photo3 {
    background-image: url('../assets/film-sample3.jpg');
}

/* 3. The About Us Scrapbook Polaroids (Replaces the plain white background) */
.scrapbook-img-1 {
    background-image: url('../assets/about-story.png');
}

.scrapbook-img-2 {
    background-image: url('../assets/about-mission.png');
}

.scrapbook-img-3 {
    background-image: url('../assets/about-current.png');
}

/* ==========================================
   DO NOT EDIT BELOW UNLESS CHANGING DESIGN
============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body,
html {
    background-color: #fcfbf9;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.04"/%3E%3C/svg%3E');
    color: #1a2c33;
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
}

h1,
h2,
h3,
.pkg-title,
.nav-logo-slim,
.section-label,
.subtitle,
.wax-seal-btn,
.vintage-library-btn,
.editorial-title {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.section-label {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #87572d;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.instruction-text {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}

.parchment-paper {
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.1"/%3E%3C/svg%3E');
    border: 1px solid #eae2d2;
    background-color: #fcfaf5;
}

.linen-texture {
    background-color: #e5e0d3;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23d6cdb5" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4v-4H4v4H0v2h4v4h2V6h4V4H6zM36 4v-4h-2v4h-4v2h4v4h2V6h4V4H6z"/%3E%3C/filter%3E%3C/g%3E%3C/svg%3E');
}

.leather-texture {
    background-color: #87572d;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.2"/%3E%3C/svg%3E');
    color: #fff;
    border: 2px solid #0d161a;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.wax-seal-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #87572d;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.wax-seal-btn:hover {
    background: #5c3b1e;
    transform: scale(1.05);
}

.vintage-library-btn {
    display: inline-block;
    background: #eae2d2;
    color: #1a2c33;
    padding: 1rem 3rem;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: bold;
    border: 1px dashed #aaa;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-transform: uppercase;
    z-index: 10;
    margin-top: 2rem;
}

.vintage-library-btn:hover {
    background: #fcfbf9;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.prev-review-btn,
.next-review-btn {
    background: none;
    border: 1px solid #1a2c33;
    color: #1a2c33;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.prev-review-btn:hover,
.next-review-btn:hover {
    background: #1a2c33;
    color: #fff;
}

/* Nav & Hero */
.flash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-out;
}

.flash-overlay.active {
    opacity: 1;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-left,
.nav-right {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #1a2c33;
    cursor: pointer;
}

.nav-right a {
    text-decoration: none;
    color: #1a2c33;
    border: 1px solid #eae2d2;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

.navbar.scrolled .nav-right a {
    border: 1px solid #1a2c33;
    color: #1a2c33;
}

.nav-right a:hover {
    background: #1a2c33;
    color: #fff;
}

.nav-logo-slim {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
    color: #1a2c33;
    text-decoration: none;
}

.navbar.scrolled .nav-logo-slim {
    opacity: 1;
}

.nav-links-systematic {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem 5%;
    list-style: none;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid #eee;
}

.nav-links-systematic.active {
    display: flex;
}

.nav-links-systematic a {
    text-decoration: none;
    color: #1a2c33;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links-systematic a:hover {
    color: #87572d;
}

.hanging-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(#c7a039, #9d7c00);
    padding: 2rem 3rem 4rem 3rem;
    text-align: center;
    z-index: 99;
    transition: opacity 0.3s, transform 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 35px), 0 100%);
}

.hanging-logo.fade-out {
    opacity: 0;
    transform: translate(-50%, -20px);
    pointer-events: none;
}

.logo-box h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #1a2c33;
    /* Dark text on yellow */
}

.logo-box p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-top: 5px;
    color: #1a2c33;
    font-weight: bold;
}

.hero {
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-text h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-top: 1rem;
}

.subtitle {
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.sub-nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.sub-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Us Scrapbook (Scrollable) */
.scroll-stack-container {
    height: 300vh;
    position: relative;
    background: transparent;
}

.sticky-stack-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    overflow: hidden;
}

.card-stack {
    position: relative;
    width: 90vw;
    max-width: 400px;
    height: 450px;
    perspective: 1000px;
}

.index-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border: 10px solid #fff;
    border-bottom: 50px solid #fff;
    border-radius: 2px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.index-card h3 {
    color: #1a2c33;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    position: absolute;
    bottom: -35px;
    text-align: center;
    width: 100%;
    font-weight: bold;
}

.index-card p {
    display: none;
    /* Text hidden for visual style, kept in HTML for SEO */
}

#about.scroll-stack-container {
    /* Creates a warm, vintage spotlight effect */
    background: radial-gradient(circle at center, #f4eee1 0%, #dfd3bb 100%);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

/* Original stacking order and slight messy tilts */
.index-card[data-index="1"] {
    z-index: 3;
    transform: rotate(-2deg);
}

.index-card[data-index="2"] {
    z-index: 2;
    transform: rotate(3deg) translate(10px, 10px);
}

.index-card[data-index="3"] {
    z-index: 1;
    transform: rotate(-1deg) translate(-5px, 20px);
}

/* Gallery */
.gallery-section {
    padding: 6rem 5%;
    text-align: center;
    background: #222;
    position: relative;
    overflow: hidden;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinite-collage-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(15, 200px);
    grid-template-rows: repeat(10, 200px);
    gap: 30px;
    padding: 20px;
    flex-shrink: 0;
    animation: constantScrollingLeftToRight 40s linear infinite;
}

@keyframes constantScrollingLeftToRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.photo-frame-holder {
    background-color: #fcfbf9;
    border: 1px solid #ddd;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.15);
    padding: 10px 10px 40px 10px;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
}

.systematic-holder-img {
    width: 100%;
    height: 100%;
    background-color: #e3e3e3;
    border: 1px solid #ccc;
}

.gallery-content-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(26, 44, 51, 0.7);
}

.gallery-content-overlay h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-family: 'Georgia', serif;
}

.gallery-content-overlay p {
    color: #ccc;
    margin-bottom: 3rem;
}

/* Packages */
.packages-container {
    height: 600vh;
    position: relative;
    background: radial-gradient(circle at center, #986b0e 0%, #000000 100%);
}

.sticky-packages-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    perspective: 2000px;
    overflow: hidden;
    padding: 0 5%;
}

.book-and-film-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: 100%;
}

.film-strip-wrapper {
    width: 200px;
    background: #111;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
    transform: translateX(-150vw) rotate(-5deg);
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.film-strip-wrapper.slide-in {
    transform: translateX(0) rotate(-2deg);
}

.film-frame {
    background: #fff;
    padding: 5px;
    height: 150px;
}

.film-photo {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.book {
    position: relative;
    width: 80vw;
    max-width: 800px;
    height: 70vh;
    max-height: 550px;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.book-page {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 0.8s, z-index 0s;
}

.page-content {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 2rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02), 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #eaeaea;
}

.front {
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
}

.package-details {
    color: #5a3c22;
}

.pkg-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #87572d;
    border-bottom: 1px solid #87572d;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.pkg-price {
    font-size: 1.1rem;
    color: #87572d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: bold;
}

.pkg-list {
    list-style: none;
    margin-left: 0;
}

.pkg-list li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pkg-list li::before {
    content: "- ";
    margin-right: 5px;
    color: #87572d;
}

.photobox-style {
    padding: 1.5rem;
}

.photobox-border {
    border: 4px dotted #87572d;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photobox-price {
    display: block;
    text-align: right;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    margin-left: 0;
    font-weight: bold;
}

.addons-list li {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.themed-set-title {
    margin-top: 1rem;
    color: #87572d;
    font-size: 1.1rem;
    border-top: 1px solid #87572d;
    padding-top: 0.5rem;
    font-weight: bold;
}

.themed-set-desc {
    font-size: 0.85rem;
}

/* --- 5. CUSTOMER FEEDBACK (Horizontal Sticky Notes) --- */
.reviews-section {
    padding: 6rem 0;
    /* Removed side padding so it spans edge-to-edge */
    background: #eae2d2;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Creates the independent left-to-right scroll area */
.horizontal-scroll-wrapper {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3rem 0;
    cursor: grab;

    /* Firefox custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #87572d transparent;
    /* Thumb color, Track color */
}

/* Chrome, Safari, and Edge Custom Scrollbar */
.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
    /* Thickness of the horizontal slidebar */
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(26, 44, 51, 0.05);
    /* Very subtle track background */
    border-radius: 10px;
    margin: 0 5vw;
    /* Keeps the slidebar aligned with your content padding */
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #87572d;
    /* Your rich wax-seal brown */
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #5c3b1e;
    /* Darkens slightly when the user hovers over the slider */
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.sticky-notes-container {
    display: flex;
    flex-wrap: nowrap;
    /* CRITICAL: Forces them into a single horizontal line */
    align-items: center;
    width: max-content;
    /* Container grows horizontally with content */
    padding: 0 5vw;
    /* Padding at the very beginning and very end of the scroll */
}

.sticky-note {
    background: #fdf5c9;
    width: 280px;
    height: max-content;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
    /* CRITICAL: Stops the browser from squishing the notes */

    /* Overlap them slightly side-by-side */
    margin: 0 -15px;

    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
    z-index: 1;
}

.sticky-note:hover {
    box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 50 !important;
}

/* The translucent tape at the top */
.sticky-note::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sticky-note .review-text {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.sticky-note .review-author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: bold;
    color: #1a2c33;
    text-align: right;
    font-size: 0.9rem;
}

/* --- Review Form Page Styles --- */
.review-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.review-form-container {
    background: #fff;
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 1px solid #eae2d2;
}

#review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#review-form input,
#review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    background: #fcfbf9;
}

#review-form textarea {
    resize: vertical;
    font-family: 'Georgia', serif;
}

/* Contact */
.booking-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5rem 5%;
    text-align: center;
}

.camera-trigger {
    position: absolute;
    top: 10%;
    width: 100%;
    height: 1px;
}

.camera-icon-wrapper {
    height: 100px;
    margin-bottom: 2rem;
    overflow: visible;
}

.camera-icon {
    font-size: 4rem;
    transform: translateY(150px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s;
}

.camera-icon.pop-up {
    transform: translateY(0);
    opacity: 1;
}

.booking-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.booking-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2c33;
}

.contact-info {
    margin: 2rem 0;
    color: #555;
    line-height: 1.8;
}

.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
}

.footer-info {
    text-decoration: none;
    color: black;
}

/* --- Side Hamburger Menu (FIXED) --- */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.side-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: #fcfbf9;
    z-index: 1000;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.side-menu.open {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1a2c33;
    cursor: pointer;
}

.side-menu-logo {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a2c33;
    border-bottom: 1px solid #eae2d2;
    padding-bottom: 1rem;
}

.side-menu-logo h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.side-menu-logo p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin: 0;
}

.side-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.side-nav-links a {
    text-decoration: none !important;
    /* Forces removal of blue underline */
    color: #1a2c33;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: block;
}

.side-nav-links a:hover,
.side-nav-links a.active {
    color: #87572d;
    font-weight: bold;
}

.side-book-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem;
    background: #1a2c33;
    color: #fff !important;
    text-align: center;
    border-radius: 4px;
}

.side-book-btn:hover {
    background: #87572d;
    color: #fff !important;
}

/* ==========================================
   📰 NEWS & FUTURE UPDATES SECTION
============================================= */

.updates-section {
    padding: 6rem 0;
    /* Changed from 5% to 0 so cards can slide off the screen edges */
    background: #fdfdfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px dashed #d3cec4;
    overflow: hidden;
    /* THIS is the magic bullet to stop the page from stretching */
    width: 100%;
}

.updates-slider-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    gap: 1.5rem;
    position: relative;
    padding: 0 5%;
    /* Moved the padding here instead */
}

.updates-track-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-grow: 1;
    display: flex;
    gap: 2rem;
    padding: 1rem 5px;
    width: 100%;
    /* Forces it to respect the screen size */
    -webkit-overflow-scrolling: touch;
    /* Turns on buttery-smooth iOS swiping */
    scroll-snap-type: x mandatory;
    /* Prepares it for card snapping */
}

.updates-track-wrapper::-webkit-scrollbar {
    display: none;
}

.update-card {
    flex: 0 0 320px;
    background: #fff;
    border: 1px solid #eae2d2;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    /* Snaps the card to the middle */
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 10px 25px rgba(0, 0, 0, 0.08);
}

.update-date {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #87572d;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.update-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #1a2c33;
    margin-bottom: 1rem;
}

.update-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* The Left/Right Slider Buttons */
.update-nav-btn {
    background: #fdfdfc;
    border: 1px solid #1a2c33;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a2c33;
    transition: all 0.3s;
    flex-shrink: 0;
}

.update-nav-btn:hover {
    background: #1a2c33;
    color: #fff;
}

/* Mobile Adjustments for News Updates */
@media (max-width: 768px) {
    .updates-slider-container {
        padding: 0;
        /* Let cards bleed entirely to the edge of the screen */
    }

    .updates-track-wrapper {
        padding: 1rem 5%;
        /* Keeps the first card padded on the left */
        gap: 1rem;
        /* Slightly tighter gap for mobile */
    }

    .update-nav-btn {
        display: none;
        /* Hide arrows on mobile, swiping is better */
    }

    .update-card {
        flex: 0 0 85%;
        /* Shows 85% of the card, leaving a peek of the next one! */
        padding: 2rem 1.5rem;
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .book-and-film-container {
        flex-direction: column;
    }

    .film-strip-wrapper {
        flex-direction: row;
        width: 90vw;
        height: 120px;
        transform: translateY(-150vh) rotate(0);
    }

    .film-strip-wrapper.slide-in {
        transform: translateY(0) rotate(0);
        margin-bottom: 1rem;
    }

    .film-frame {
        height: 100%;
        width: 100px;
    }

    .book {
        width: 95vw;
        height: 60vh;
        max-height: 500px;
    }

    .pkg-title {
        font-size: 1.2rem;
    }

    .pkg-list li {
        font-size: 0.85rem;
    }

    .addons-list li {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
}

@media (max-width: 768px) {
    .sub-nav {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 1rem 5%;
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .sub-nav::-webkit-scrollbar {
        display: none;
    }

    .sub-nav a {
        font-size: 0.75rem;
        /* Slightly smaller text to fit better */
    }

    .hanging-logo {
        padding: 1.5rem 2rem 3.5rem 2rem;
    }

    .logo-box h2 {
        font-size: 1.8rem;
    }

    .page-content {
        padding: 1rem;
    }

    .review-page {
        padding: 1.5rem;
    }

    .vintage-library-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 1.2rem;
    }
}

/* --- Social Media Contacts Grid --- */
.social-contacts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #fff;
    border: 1px solid #eae2d2;
    border-radius: 50px;
    text-decoration: none;
    color: #1a2c33;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 4px 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-family: sans-serif;
}

/* Distinct Brand Colors */
.fb-color {
    background: #1877F2;
}

.msg-color {
    background: #00B2FF;
}

.ig-color {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.tt-color {
    background: #000;
}