/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f3;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #d97706;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}


/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #faf8f3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;    
    max-width: 250px;}

.nav-logo .logo-image {
    height: 50px !important;
    width: auto !important;
    /* height: 50px;
    width: auto; */
    flex-shrink: 0 !important;
    display: block;
}

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size:1.3rem;
    font-weight: 700;
    color: #8b6f47;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* Desktop Menu - Hidden on mobile */
.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    display: inline-block;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #d97706;
}

/* Hamburger Menu - Visible on mobile */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #faf8f3;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
}

.nav-menu.active li {
    padding: 1rem 20px;
    border-bottom: 1px solid #eee;
}


/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 85vh;
    padding: 2rem 0;
    background: url('../assets/images/banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-direction: column;
}

.hero-text {
    max-width: 600px;
    margin: 0;
}

.hero-photo {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-title {
    margin-bottom: 0.5rem;
}

.title-script {
    font-family: 'Tangerine', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d97706;
    line-height: 1.3;
    text-align: justify;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    text-align: justify;
}


/* ===================================
   DISCOVER SECTION
   =================================== */

.discover-section {
    padding: 4rem 0;
    background-color: #faf8f3;
}

/* About Us Description */
.about-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Building and Levels Wrapper */
.building-levels-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.building-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    isolation: isolate;
}

.building-image {
    width: 100%;
    height: auto;
    display: block;
}

.level-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden - using grid selector instead */
    flex-direction: column;
    justify-content: space-evenly;
    padding: 3% 5%;
    pointer-events: none;
}

.level-btn {
    pointer-events: auto;
    background: rgba(217, 119, 6, 0.8);
    color: white;
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.level-btn:hover {
    opacity: 1;
    background: rgba(217, 119, 6, 1);
    transform: scale(1.05);
}

.discover-cta {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Level Selector Grid */
.level-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 3rem;
}

.level-selector {
    background-color: #fff;
    border: 2px solid #d97706;
    color: #d97706;
    padding: 12px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-selector:hover,
.level-selector.active {
    background-color: #d97706;
    color: white;
}

/* Level Description Box */
.level-description-box {
    background-color: #fff9f0;
    border-left: 4px solid #d97706;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 1rem 0;
    border-radius: 4px;
}

.level-description-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

/* Dynamic Content Info */
.dynamic-content-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    /* background-color: #f3f4f6; */
    background-color: #fff9f0;
    border: 1px solid #d1d5db;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.info-icon {
    flex-shrink: 0;
    color: #d97706;
    width: 16px;
    height: 16px;
}

.info-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

/* Level Content Area */
.level-content {
    margin-top: 2rem;
}

.video-section {
    margin-bottom: 2rem;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d97706;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Level Images Grid */
.level-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.level-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #f5e6d3;
    aspect-ratio: 3/4;
}

.level-image-item img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.level-image-item:hover img {
    transform: scale(1.05);
}

/* Museum Section */
.museum-section {
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.museum-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Museum Text - Left Side */
.museum-text {
    flex: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.museum-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.museum-description {
    margin-bottom: 1.5rem;
}

.museum-text-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify;
}

.museum-timings {
    font-size: 1.1rem;
    color: #999;
    font-style: italic;
}

.museum-timings span {
    color: #d97706;
    font-weight: 600;
}

/* Museum Images Carousel - Completely Rewritten */
.museum-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.museum-images-carousel {
    overflow: hidden;
    width: calc(100% - 130px);
    margin: 0 auto;
    position: relative;
    aspect-ratio: 3/4;
}

.museum-image-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #f5e6d3;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.museum-image-item.active {
    display: block;
    opacity: 1;
}

.museum-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Navigation buttons - positioned on sides of the carousel */
.carousel-nav {
    position: relative;
    background-color: rgba(217, 119, 6, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    order: -1;
}

.carousel-next {
    order: 1;
}

.carousel-nav:hover {
    background-color: rgba(217, 119, 6, 1);
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav span {
    line-height: 1;
}


/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    padding: 4rem 0 0 0;
    background: url('../assets/images/gallary-bg.jpg') center center / cover no-repeat;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.photo-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.photo-wall img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-wall img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* ===================================
   LOCATION SECTION
   =================================== */

.location-section {
    padding: 0;
    margin: 0;
    background-color: #faf8f3;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.map-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.map-overlay-text {
    position: absolute;
    top: 48%;
    left: 33%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.location-place {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.location-state {
    font-family: 'Tangerine', cursive;
    font-size: 5rem;
    color: #d97706;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}


/* ===================================
   BOOKING SECTION
   =================================== */

.booking-section {
    padding: 4rem 0;
    background-color: #fff;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.15rem;
    font-family: 'Crimson Text', serif;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: #faf8f3;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.05rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d97706;
    background-color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: #d97706;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #b86505;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 1.5rem 0 1rem;
    background: linear-gradient(135deg, #8b6f47 0%, #a0865d 50%, #8b6f47 100%);
    color: #e8d4b8;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Column - Logo and Copyright */
.footer-left {
    flex: 1;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.3rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e8d4b8;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #c9b399;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 0;
}

/* Right Column - Links */
.footer-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-links a {
    color: #e8d4b8;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.footer-links a:hover {
    color: #fff;
}


/* ===================================
   MOBILE RESPONSIVE (< 768px)
   =================================== */

@media (max-width: 767px) {
    /* Header Logo - Mobile */
    .nav-logo .logo-image {
        height: 40px;
    }

    .nav-logo .logo-text {
        font-size: 1rem;
    }

    /* Footer - Mobile */
    .footer {
        padding: 1.2rem 0 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-left {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        gap: 8px;
    }

    .footer-logo-image {
        height: 40px;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }

    .footer-copyright {
        font-size: 0.55rem;
        letter-spacing: 1px;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    /* Location - Mobile */
    .map-overlay-text {
        top: 43%;
        left: 31%;
    }

    .location-place {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .location-state {
        font-size: 2rem;
    }
}


/* ===================================
   TABLET RESPONSIVE (768px and up)
   =================================== */

@media (min-width: 768px) {
    /* Header Logo - Tablet */
    .nav-logo .logo-image {
        height: 45px;
    }

    .nav-logo .logo-text {
        font-size: 1.2rem;
    }

    /* Footer - Tablet */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
        align-items: center;
    }

    .footer-logo-image {
        height: 45px;
    }

    .footer-logo-text {
        font-size: 1.6rem;
    }

    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: flex-end;
    }

    .footer-links a {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .footer-copyright {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5rem;
    }

    .hero-text {
        max-width: 450px;
        flex: 1;
    }

    .title-script {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-photo {
        width: auto;
    }

    .hero-photo img {
        max-width: 380px;
    }

    /* Building and Levels Layout - Side by Side on Tablet */
    .building-levels-wrapper {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }

    .building-container {
        flex-shrink: 0;
        max-width: 450px;
    }

    .level-selector-section {
        flex: 1;
        max-width: 500px;
    }

    .about-text {
        font-size: 1.2rem;
    }

    /* Level Selector Grid */
    .level-selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Level Images Grid */
    .level-images-grid {
        gap: 20px;
    }

    /* Museum Section - Side by Side on Tablet */
    .museum-content-wrapper {
        flex-direction: row;
        gap: 2.5rem;
        align-items: center;
    }

    .museum-text {
        max-width: 45%;
    }

    .museum-carousel-wrapper {
        max-width: 50%;
    }

    /* Photo Wall - 3 columns on tablets */
    .photo-wall {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .photo-wall img {
        height: 220px;
    }

    /* Hamburger - Keep hamburger on tablet */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    /* Location - Tablet */
    .map-overlay-text {
        top: 46%;
        left: 32%;
    }

    .location-place {
        font-size: 1.8rem;
        letter-spacing: 2.5px;
    }

    .location-state {
        font-size: 4.5rem;
    }
}


/* ===================================
   DESKTOP RESPONSIVE (1024px and up)
   =================================== */

@media (min-width: 1024px) {
    /* Header Logo - Desktop */
    .nav-logo .logo-text {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation - Desktop Menu */
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        padding: 0;
        border: none;
    }

    .hamburger {
        display: none;
    }

    /* Hero Section */
    .hero-section {
        min-height: 90vh;
    }

    .hero-content {
        gap: 6rem;
        align-items: center;
    }

    .hero-text {
        max-width: 500px;
    }

    .title-script {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-photo img {
        max-width: 450px;
    }

    /* Discover Section */
    .building-levels-wrapper {
        gap: 2.5rem;
    }

    .building-container {
        max-width: 550px;
    }

    .level-selector-section {
        max-width: 600px;
    }

    .about-text {
        font-size: 1.25rem;
    }

    .level-selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Level Content - Stacked (Video full width, images below) */
    .level-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .video-section {
        margin-bottom: 2rem;
    }

    .level-images-grid {
        gap: 20px;
    }

    /* Museum Section - Optimized for Desktop */
    .museum-content-wrapper {
        gap: 3rem;
    }

    .museum-text {
        max-width: 40%;
    }

    .museum-title {
        font-size: 2.4rem;
    }

    .museum-text-content {
        font-size: 1.2rem;
    }

    .museum-carousel-wrapper {
        max-width: 55%;
    }

    /* Photo Wall - 4 columns on desktop */
    .photo-wall {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 1200px;
    }

    .photo-wall img {
        height: 250px;
    }

    /* Location - Desktop */
    .map-overlay-text {
        top: 48%;
        left: 33%;
    }

    .location-place {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .location-state {
        font-size: 5.5rem;
    }
}


/* ===================================
   LARGE DESKTOP (1280px and up)
   =================================== */

@media (min-width: 1280px) {
    .section-title {
        font-size: 3.2rem;
    }

    .hero-text {
        max-width: 550px;
    }

    .title-script {
        font-size: 3.0rem;
    }

    .hero-photo img {
        max-width: 500px;
    }

    .building-levels-wrapper {
        gap: 5rem;
    }

    .building-container {
        max-width: 650px;
    }

    .level-selector-section {
        max-width: 700px;
    }

    .photo-wall {
        max-width: 1400px;
    }

    .photo-wall img {
        height: 280px;
    }

    /* Museum Section - Large Desktop */
    .museum-text {
        max-width: 38%;
    }

    .museum-title {
        font-size: 2.8rem;
    }

    .museum-text-content {
        font-size: 1.3rem;
    }

    /* Location - Large Desktop */
    .location-place {
        font-size: 2.5rem;
        letter-spacing: 3.5px;
    }

    .location-state {
        font-size: 6.5rem;
    }
}
