* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #333;
    background: #f5f1e8;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(139, 69, 19, 0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #8B4513;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.museums-section, .events-section, .heritage-section, .register-section, .contact-section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.museums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.museum-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.museum-card:hover {
    transform: translateY(-10px);
}

.museum-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.museum-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    color: #8B4513;
}

.museum-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.events-section {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

.events-section h2 {
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #d4af37;
    color: #8B4513;
    padding: 10px 20px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.heritage-section {
    background: #f5f1e8;
}

.heritage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.heritage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border-left: 5px solid #8B4513;
}

.heritage-item:hover {
    transform: translateY(-5px);
}

.heritage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.register-section {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

.register-section h2 {
    color: white;
}

.register-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #8B4513;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #8B4513;
    border-radius: 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #8B4513;
    color: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #f5f1e8;
}

.intro-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8B4513;
}

.intro-section > .container > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    text-align: center;
    color: #666;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
    text-align: center;
}

.link-card:hover {
    transform: translateY(-10px);
}

.link-card h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.museum-card ul {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.museum-card ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.museum-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #8B4513;
}

.contact-form {
    max-width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.register-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    padding: 8px 15px;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #6B3410;
}

.map-container {
    margin-top: 3rem;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8B4513;
}

footer {
    background: #8B4513;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
