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

body {
  font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  direction: rtl;
}

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

/* Header & Navigation */
header {
  background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8b6914;
}

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

.nav-menu a {
  color: #5a4a2a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #8b6914;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #faf8f3 0%, #f5e6d3 50%, #f0ddc4 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: #5a4a2a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #7a6a4a;
  max-width: 700px;
  margin: 0 auto;
}

/* Page Hero (smaller hero for internal pages) */
.page-hero {
  background: linear-gradient(135deg, #f5f1e8 0%, #f0e6d6 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  color: #5a4a2a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.1rem;
  color: #7a6a4a;
}

/* Sections */
section {
  padding: 4rem 0;
}

.intro,
.content-section {
  background-color: #ffffff;
}

.intro h2,
.content-container h2 {
  font-size: 2rem;
  color: #5a4a2a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro p,
.content-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Highlights Grid */
.highlights {
  background: linear-gradient(135deg, #fdfbf7 0%, #f8f4ed 100%);
}

.highlights h2 {
  font-size: 2rem;
  color: #5a4a2a;
  margin-bottom: 3rem;
  text-align: center;
}

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

.highlight-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.highlight-card h3 {
  font-size: 1.4rem;
  color: #8b6914;
  margin-bottom: 1rem;
}

.highlight-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-link {
  color: #8b6914;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #8b6914;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.btn-link:hover {
  color: #6a5010;
}

/* Testimonials */
.testimonials {
  background-color: #ffffff;
}

.testimonials h2 {
  font-size: 2rem;
  color: #5a4a2a;
  margin-bottom: 3rem;
  text-align: center;
}

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

.testimonial-card {
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
  padding: 2rem;
  border-radius: 8px;
  border-right: 4px solid #c9a961;
}

.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  color: #8b6914;
  font-weight: 600;
}

/* Museum Categories & Content Items */
.museum-category,
.advantage-item,
.mission-item {
  margin-bottom: 3rem;
}

.museum-category h3,
.advantage-item h2,
.mission-item h2 {
  font-size: 1.6rem;
  color: #8b6914;
  margin-bottom: 1rem;
}

.museum-category p,
.advantage-item p,
.mission-item p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e0d0;
}

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

.faq-item h3 {
  font-size: 1.4rem;
  color: #8b6914;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
}

/* Contact Form */
.contact-intro {
  margin-bottom: 2rem;
}

.contact-form {
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d4c5a9;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  direction: rtl;
}

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

.btn-submit {
  background-color: #8b6914;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #6a5010;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
  padding: 2rem;
  border-radius: 8px;
  border-right: 4px solid #c9a961;
  margin: 2rem 0;
}

.info-box h3 {
  color: #8b6914;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.info-box a {
  color: #8b6914;
  font-weight: 600;
}

/* Cookie List */
.cookie-list {
  list-style-position: inside;
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-list li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.policy-date {
  text-align: center;
  color: #999;
  margin-top: 3rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #5a4a2a 0%, #4a3a1a 100%);
  color: #f5f1e8;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: #c9a961;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #d4c5a9;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d4c5a9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #c9a961;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #7a6a4a;
}

.footer-bottom p {
  color: #d4c5a9;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(90, 74, 42, 0.97);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #c9a961;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
}

.cookie-accept-btn {
  background-color: #c9a961;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-accept-btn:hover {
  background-color: #8b6914;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .highlights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-accept-btn {
    width: 100%;
  }
}
