@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --sand: #f5ede0;
  --terracotta: #c4622d;
  --deep-blue: #1a2e44;
  --sky: #5b9ec9;
  --gold: #d4a843;
  --warm-white: #fdfaf6;
  --dark: #1c1c1c;
  --text-muted: #7a7060;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--warm-white);
  color: var(--dark);
  direction: rtl;
}

/* ===== HEADER / NAV ===== */
header {
  background-color: var(--deep-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--warm-white);
  font-style: italic;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--gold);
}

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

/* ===== HERO ===== */
.hero {
  height: 85vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(160deg, rgba(26,46,68,0.7) 0%, rgba(196,98,45,0.4) 100%),
    url('https://images.unsplash.com/photo-1555993539-1732b0258235?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--warm-white);
  padding: 2rem;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid var(--terracotta);
}

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

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
  margin-right: 1rem;
}

.btn-outline:hover {
  background: white;
  color: var(--dark);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  line-height: 1.7;
}

/* ===== FEATURED POSTS GRID ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.post-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.post-card-img {
  height: 220px;
  overflow: hidden;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.post-card-body {
  padding: 1.5rem;
}

.post-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.post-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.post-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* ===== DIVIDER ===== */
.divider-strip {
  background: var(--deep-blue);
  padding: 4rem 2rem;
  text-align: center;
}

.divider-strip p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--sand);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.divider-strip span {
  color: var(--gold);
}

/* ===== DESTINATIONS STRIP ===== */
.destinations {
  background: var(--sand);
  padding: 4rem 2rem;
}

.destinations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dest-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.dest-tag {
  background: white;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--deep-blue);
  border: 2px solid transparent;
  cursor: default;
  transition: all 0.2s;
}

.dest-tag:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ===== FULL POST PAGE ===== */
.page-hero {
  background: var(--deep-blue);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--warm-white);
  margin-top: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.post-article {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.post-article .post-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 2.5rem;
}

.post-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 1.2rem;
}

.post-article p {
  color: #4a4540;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--terracotta);
  font-weight: 900;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.contact-detail .icon {
  width: 36px;
  height: 36px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e2d8;
  background: var(--warm-white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}

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

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--terracotta);
  color: white;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--deep-blue);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.8;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav ul { gap: 1.2rem; }
  .logo { font-size: 1.2rem; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .post-article .post-img { height: 250px; }
  nav ul a { font-size: 0.75rem; letter-spacing: 1px; }
}
