/* Palazzi d'Italia - Minimalist Design with Italian Elegance */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #2d3748;
    --accent-color: #c97d60;
    --accent-light: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-warm: #fefbf7;
    --border-color: #e8e8e8;
    --hover-color: #1a252f;
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-elegant: 0 4px 30px rgba(201, 125, 96, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-warm);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 232, 232, 0.6);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 0.4rem 0.3rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: block;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: width 0.4s ease;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a:hover::before {
    width: 100%;
}

.nav-menu li a.active {
    color: var(--accent-color);
    font-weight: 500;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.language-switcher button {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-dark);
    transition: var(--transition);
    border-radius: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 40px;
}

.language-switcher button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 125, 96, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.language-switcher button:hover::before {
    width: 120%;
    height: 120%;
}

.language-switcher button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
}

.language-switcher button.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-elegant);
    font-weight: 500;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    flex-shrink: 0;
    z-index: 1001;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.4), rgba(52, 73, 94, 0.4)), url('../images/design/hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 2rem;
    margin-bottom: 0;
}

/* Remove margin-top from footer when it follows hero section */
.hero + footer {
    margin-top: 0;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.98;
    letter-spacing: 0.01em;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 1.1rem 3.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    animation: fadeInUp 1.2s ease 0.4s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 125, 96, 0.4);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--bg-warm);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Cards */
.museum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.museum-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.museum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.museum-card:hover::before {
    transform: scaleX(1);
}

.museum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 125, 96, 0.2);
    border-color: rgba(201, 125, 96, 0.3);
}

.museum-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.museum-card:hover img {
    transform: scale(1.05);
}

.museum-card-content {
    padding: 1.5rem;
}

.museum-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.museum-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.museum-card .btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    letter-spacing: 0.05em;
}

.museum-card .btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: width 0.4s ease;
}

.museum-card .btn-link:hover::after {
    width: 100%;
}

.museum-card .btn-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    letter-spacing: 0.01em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201, 125, 96, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info p strong {
    color: var(--text-dark);
    min-width: 100px;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 125, 96, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: rgba(201, 125, 96, 0.3);
}

.info-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: relative;
    transition: var(--transition);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.faq-question:hover {
    background-color: rgba(201, 125, 96, 0.05);
    color: var(--accent-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 0.75rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a3e 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 125, 96, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.page-hero p {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.25rem;
    opacity: 0.98;
    letter-spacing: 0.01em;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Booking Selection */
.booking-museums {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.booking-museum-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.booking-museum-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 125, 96, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.booking-museum-item:hover::before {
    opacity: 1;
}

.booking-museum-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.booking-museum-item.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(201, 125, 96, 0.08), rgba(212, 165, 116, 0.05));
    box-shadow: var(--shadow-elegant);
}

.booking-museum-item.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}

.booking-museum-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.booking-museum-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-reveal {
    display: none;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95));
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-elegant);
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
}

.contact-reveal.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu li a {
        font-size: 0.7rem;
        padding: 0.4rem 0.2rem;
    }
    
    .language-switcher {
        margin-left: 0.3rem;
        gap: 0.3rem;
    }
    
    .language-switcher button {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 0.9rem 1rem;
        gap: 0.8rem;
    }
    
    .logo {
        font-size: 1.15rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
        margin-left: 0;
    }
    
    .nav-menu li a {
        font-size: 0.65rem;
        padding: 0.4rem 0.15rem;
    }
    
    .language-switcher {
        margin-left: 0.3rem;
    }
    
    .language-switcher button {
        padding: 0.35rem 0.65rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0.85rem 0.8rem;
        gap: 0.6rem;
    }
    
    .logo {
        font-size: 1.05rem;
    }
    
    .nav-menu {
        gap: 0.4rem;
    }
    
    .nav-menu li a {
        font-size: 0.6rem;
        padding: 0.35rem 0.1rem;
    }
    
    .language-switcher {
        gap: 0.25rem;
    }
    
    .language-switcher button {
        padding: 0.3rem 0.55rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .museum-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

