﻿/* ==========================================================================
   CSS Design System for Museum Passes (Culture/Museums Niche)
   Primary: #1e3a5f (Navy)
   Accent: #c4954a (Gold)
   Background: #f5f0eb (Warm cream)
   ========================================================================== */

:root {
    --primary-color: #1e3a5f;
    --primary-light: #2c4e7d;
    --accent-color: #c4954a;
    --accent-hover: #b08236;
    --bg-color: #f5f0eb;
    --text-main: #374151;
    --text-muted: #6b7280;
    --light-bg: #fff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 700;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.bg-light { background-color: #fff; }
.section-padding { padding: 80px 0; }

/* Marquee Bar */
.marquee-bar {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 14px;
    font-weight: 600;
}
.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
.marquee-content span {
    margin: 0 30px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--accent-color);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}
.mobile-menu {
    display: none;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background: var(--accent-color);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
}
.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--accent-color);
    color: #fff;
}
.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-color);
}
.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}
.hero-content {
    max-width: 800px;
}
.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-top: 15px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-gold {
    background: var(--accent-color);
    color: #fff;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* Page Header (for inner pages) */
.page-header {
    padding: 80px 0;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
}

/* Stats Bar */
.stats-bar {
    background: #fff;
    padding: 40px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
    margin-top: -30px;
    border-radius: var(--radius);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Museum Grid */
.museum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.museum-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.museum-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.card-content {
    padding: 24px;
}
.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}
.card-content .location {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.card-content .desc {
    margin-bottom: 20px;
    font-size: 15px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(196, 149, 74, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Testimonials */
.testimonials {
    background: var(--primary-color);
    color: #fff;
}
.testimonials .section-title h2,
.testimonials .section-title p {
    color: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}
.stars {
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}
.author strong {
    display: block;
    color: var(--accent-color);
}
.author span {
    font-size: 14px;
    opacity: 0.7;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.cta-banner h2 {
    color: #fff;
}
.cta-banner p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Layout */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.about-main p {
    margin-bottom: 20px;
}
.about-main h2 {
    margin-top: 40px;
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.team-member {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}
.widget {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}
.widget h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}
.contact-list, .sidebar-links {
    list-style: none;
}
.contact-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.contact-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.sidebar-links li {
    margin-bottom: 10px;
}

/* Contact Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}
.contact-form-wrapper, .info-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(196, 149, 74, 0.2);
}
.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.checkbox-group input {
    margin-top: 5px;
}
.checkbox-group label {
    font-weight: normal;
    font-size: 14px;
}
.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-muted);
}
.info-card {
    margin-bottom: 30px;
}
.info-card h3, .info-card h4 {
    margin-top: 20px;
}
.info-card h3:first-child {
    margin-top: 0;
}
.alert {
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    background: #111827;
    color: #e5e7eb;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer .logo {
    color: #fff;
    margin-bottom: 20px;
}
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #9ca3af;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.footer-address {
    font-style: normal;
    color: #9ca3af;
    margin-bottom: 20px;
}
.payment-icons {
    display: flex;
    gap: 10px;
}
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 20px 0;
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-content p {
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .museum-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .museum-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-bar { margin-top: 0; border-radius: 0; }
    .stats-grid { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
}
