/* Egyptian Treasures Blog - Main Stylesheet 
-------------------------------------------------- */

/* Base Styles & Variables */
:root {
  --primary-color: #c5a775; /* Gold tone */
  --primary-dark: #a8905e;
  --secondary-color: #3d4664; /* Deep blue */
  --secondary-light: #5f6a8a;
  --text-color: #333333;
  --text-light: #777777;
  --background-color: #ffffff;
  --background-alt: #f7f5f0;
  --border-color: #e5e0d5;
  --error-color: #d64541;
  --success-color: #27ae60;
  
  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Open Sans', Arial, sans-serif;
  
  --container-width: 1200px;
  --border-radius: 6px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Typography */
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  width: 90%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.primary-btn {
  background-color: var(--primary-color);
}

.secondary-btn {
  background-color: var(--secondary-color);
}

.secondary-btn:hover {
  background-color: var(--secondary-light);
}

/* Layout & Sections */
/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation */
nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.navbar {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin-left: 30px;
  position: relative;
}

.navbar a {
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  font-size: 1rem;
}

.navbar a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.navbar a:hover:after,
.navbar a.active:after {
  width: 100%;
}

.navbar a.active {
  color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 200px 0 120px;
  margin-top: 90px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Page Banner */
.page-banner {
  background-color: var(--secondary-color);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 160px 0 80px;
  margin-top: 90px;
}

.page-banner h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-banner {
  background-image: linear-gradient(rgba(61, 70, 100, 0.8), rgba(61, 70, 100, 0.8)), url('../images/about-banner.jpg');
}

.museums-banner {
  background-image: linear-gradient(rgba(61, 70, 100, 0.8), rgba(61, 70, 100, 0.8)), url('../images/museums-banner.jpg');
}

.contact-banner {
  background-image: linear-gradient(rgba(61, 70, 100, 0.8), rgba(61, 70, 100, 0.8)), url('../images/contact-banner.jpg');
}

/* Featured Posts */
.featured-posts {
  padding: 80px 0;
  background-color: var(--background-color);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 50px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: #fff;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.post-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 25px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--transition);
}

.read-more:hover:after {
  right: -5px;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
}

.newsletter h2 {
  color: #fff;
  margin-bottom: 15px;
}

.newsletter p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-newsletter,
.museum-newsletter {
  background-color: var(--background-alt);
  color: var(--text-color);
}

.blog-newsletter h2,
.museum-newsletter h2 {
  color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  max-width: 500px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p:before {
  content: '"';
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(197, 167, 117, 0.2);
  position: absolute;
  left: -15px;
  top: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}

address {
  font-style: normal;
}

address p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

address svg {
  fill: var(--primary-color);
  margin-right: 10px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(61, 70, 100, 0.95);
  color: #fff;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
}

.cookie-btn.accept {
  background-color: var(--primary-color);
}

.cookie-btn.customize {
  background-color: transparent;
  border: 1px solid #fff;
}

.cookie-btn.reject {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-policy-link a {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Blog Page Styles */
.blog-content {
  padding: 60px 0;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.search-box {
  display: flex;
  position: relative;
  width: 300px;
}

.search-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.search-box button svg {
  fill: var(--text-light);
  width: 20px;
  height: 20px;
}

.category-filter {
  display: flex;
  align-items: center;
}

.category-filter label {
  margin-right: 10px;
  color: var(--text-light);
}

.category-filter select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: #fff;
  font-size: 0.9rem;
  color: var(--text-color);
}

.blog-posts {
  margin-bottom: 40px;
}

.blog-post {
  display: flex;
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: #fff;
}

.blog-post .post-image {
  flex: 0 0 35%;
  height: auto;
}

.blog-post .post-content {
  flex: 1;
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination a.next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* Museums Page Styles */
.museums-search {
  padding: 40px 0;
  background-color: var(--background-alt);
}

.search-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.filter-options {
  display: flex;
  gap: 20px;
}

.filter-group {
  flex: 1;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 600;
}

.filter-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: #fff;
  font-size: 1rem;
}

.museums-list {
  padding: 60px 0;
}

.museum-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.museum-card {
  display: flex;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: #fff;
  transition: var(--transition);
}

.museum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.museum-card .museum-image {
  flex: 0 0 35%;
  height: 300px;
}

.museum-card .museum-content {
  flex: 1;
  padding: 30px;
}

.museum-details {
  margin-top: 15px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.detail-item svg {
  fill: var(--primary-color);
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.museum-map {
  padding: 60px 0;
  background-color: var(--background-alt);
  text-align: center;
}

.map-container {
  max-width: 900px;
  margin: 30px auto 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 0 0 45%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-section {
  padding: 80px 0;
  background-color: var(--background-alt);
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: auto;
  display: block;
}

.team-member h3 {
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.team-member p {
  color: var(--text-light);
  padding: 0 20px;
  margin-bottom: 15px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-alt);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.social-links svg {
  fill: var(--text-light);
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.social-links a:hover svg {
  fill: #fff;
}

.values-section {
  padding: 80px 0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 40px 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin-bottom: 20px;
}

.value-icon svg {
  fill: var(--primary-color);
  width: 48px;
  height: 48px;
}

.value-card h3 {
  margin-top: 0;
}

.credentials-section {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.credentials-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.credentials-image {
  flex: 0 0 45%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.credentials-image img {
  width: 100%;
  height: auto;
  display: block;
}

.credentials-text {
  flex: 1;
}

.credentials-list {
  list-style: none;
  padding: 0;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.credentials-list li svg {
  fill: var(--primary-color);
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.cta-section {
  padding: 100px 0;
  background-image: linear-gradient(rgba(61, 70, 100, 0.9), rgba(61, 70, 100, 0.9)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-details {
  margin: 40px 0;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  flex: 0 0 60px;
  height: 60px;
  background-color: var(--background-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.contact-icon svg {
  fill: var(--primary-color);
  width: 24px;
  height: 24px;
}

.contact-text h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-text p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact-social {
  margin-top: 10px;
}

.business-hours {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.business-hours h3 {
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
}

.hours-list .day {
  font-weight: 600;
}

.contact-form-container {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--body-font);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input {
  margin-top: 5px;
}

.form-checkbox label {
  font-weight: 400;
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-submit {
  margin-top: 10px;
}

.map-section {
  padding: 60px 0;
  background-color: var(--background-alt);
  text-align: center;
}

.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faqs {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
}

.modal-body {
  padding: 50px 30px 30px;
  text-align: center;
}

.modal-body h2 {
  margin-top: 20px;
}

.close-btn {
  margin-top: 20px;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: var(--success-color);
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px var(--success-color);
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--success-color);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px var(--success-color);
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

/* Blog Post Page */
.blog-post-page {
  padding: 160px 0 80px;
}

.post-header {
  margin-bottom: 30px;
  text-align: center;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content h2 {
  color: var(--secondary-color);
  margin-top: 40px;
}

.post-content h3 {
  color: var(--secondary-color);
  margin-top: 30px;
}

.post-image-gallery {
  margin: 40px 0;
}

figure {
  margin: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

figure img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  padding: 15px;
  background-color: var(--background-alt);
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
}

.post-visitor-tips {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.post-visitor-tips h3 {
  margin-top: 0;
}

.post-visitor-tips ul {
  margin-bottom: 0;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.post-tags a {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 12px;
  background-color: var(--background-alt);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.post-tags span,
.post-share span {
  color: var(--text-light);
  margin-right: 10px;
}

.post-share {
  display: flex;
  align-items: center;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-alt);
  border-radius: 50%;
  margin-left: 10px;
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
}

.post-share svg {
  fill: var(--text-color);
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.post-share a:hover svg {
  fill: #fff;
}

.post-author-bio {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding: 30px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.post-author-bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
}

.author-bio-content h3 {
  margin-top: 0;
}

.related-posts {
  margin-top: 60px;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 30px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-post h3 {
  padding: 20px;
  margin: 0;
  font-size: 1.1rem;
}

.comments-section {
  margin-top: 60px;
}

.comments-section h2 {
  margin-bottom: 30px;
}

.comment {
  display: flex;
  margin-bottom: 30px;
}

.comment-avatar {
  flex: 0 0 60px;
  margin-right: 20px;
}

.comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: var(--border-radius);
  position: relative;
}

.comment-content:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent #f9f9f9 transparent transparent;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-meta h4 {
  margin: 0;
}

.comment-meta span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.comment-reply {
  display: flex;
  margin-top: 20px;
  margin-left: 30px;
}

.comment-form {
  margin-top: 40px;
}

.post-newsletter {
  margin-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Tooltips */
[title] {
  position: relative;
}

[title]:hover:after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

[title]:hover:before {
  content: '';
  position: absolute;
  bottom: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--secondary-color) transparent transparent transparent;
  z-index: 11;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .about-content,
  .credentials-content {
    flex-direction: column;
  }
  
  .about-image,
  .credentials-image {
    order: -1;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .museum-card {
    flex-direction: column;
  }
  
  .museum-card .museum-image {
    flex: 0 0 200px;
    width: 100%;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .blog-post .post-image {
    flex: 0 0 200px;
    width: 100%;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .post-grid,
  .team-grid,
  .values-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .testimonial {
    max-width: 100%;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-footer {
    flex-direction: column;
    gap: 20px;
  }
  
  .filter-options {
    flex-direction: column;
  }
  
  .blog-filters {
    flex-direction: column;
    gap: 20px;
  }
  
  .search-box {
    width: 100%;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .post-author-bio img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    margin-bottom: 15px;
  }
  
  .comment-content:before {
    display: none;
  }
  
  .comment-reply {
    margin-left: 0;
  }
}
