/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --primary-color: #FF8F00;
  --primary-hover: #e68100;
  --secondary-color: #25D366;
  --dark-bg: #222222;
  --dark-bg-transparent: rgba(34, 34, 34, 0.9);
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #ffffff;
  
  /* Typography */
  --font-primary: 'Tajawal', sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  
  /* Breakpoints */
  --tablet: 1024px;
  --mobile: 767px;
}

/* ===== RESET AND BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  direction: rtl;
  padding-bottom: 40px;
}

img {
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

h1 { font-size: 42px; }
h2 { font-size: 24px; }
h3 { font-size: 21px; }

p {
  margin-bottom: var(--spacing-sm);
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.content-section {
  padding: var(--spacing-lg) 0;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
  padding: 20px 0;
}

/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--dark-bg);
  padding: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.logo a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.logo img {
  max-width: 60px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 60vh;
  margin-top: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  background-color: var(--dark-bg);
  padding: var(--spacing-sm);
  z-index: 1;
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.btn-sm {
  font-size: 16px;
  padding: 10px 20px;
}

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

.btn-secondary:hover {
  opacity: 0.9;
}

/* ===== SECTION STYLES ===== */
.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
  margin: var(--spacing-lg) 0;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--text-light);
}

/* ===== HOTEL LIST STYLES ===== */
.hotel-list {
  margin: var(--spacing-lg) 0;
}

.hotel-item {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--light-bg);
  border-radius: var(--border-radius-md);
  border-right: 2px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hotel-item h3 {
  color: var(--dark-bg);
  margin-bottom: var(--spacing-sm);
}

.hotel-item ul {
  list-style-position: inside;
  margin-right: var(--spacing-sm);
}

.hotel-item li {
  margin-bottom: var(--spacing-xs);
}

/* ===== FAQ STYLES ===== */
.faq-section {
  margin: var(--spacing-lg) 0;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border-bottom: 1px solid #eee;
  padding-bottom: var(--spacing-sm);
}

.faq-question {
  font-weight: 700;
  color: #8B4513;
  margin-bottom: var(--spacing-sm);
}

/* ===== IMAGE STYLES ===== */
.content-image {
  width: 100%;
  max-width: 1024px;
  height: auto;
  border-radius: var(--border-radius-md);
  margin: var(--spacing-lg) auto;
  display: block;
}

.image-container {
  margin: 30px 0;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--dark-bg-transparent);
  padding: 8px;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-white { color: var(--text-light); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-lg); }
.mt-1 { margin-top: var(--spacing-sm); }
.m-auto { margin: auto;}

.highlight {
  color: #BF1722;
  font-weight: var(--font-weight-bold);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  
  .hero-section {
    background-position: top center;
  }
  
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }
  h3 { font-size: 19px; }
}

/* Mobile Styles (767px and below) */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  
  .hero-section {
    min-height: 40vh;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .btn {
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 10px 20px;
  }
  
  .footer-cta {
    padding: 7px;
  }
  
  .content-section,
  .section-dark {
    padding: var(--spacing-sm);
  }
}