/* =========================
   STTRAFO TRAVEL CLUB - CSS
   ========================= */

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

/* COLORS */
:root {
  --dark: #0f172a;
  --light: #f9fafb;
  --primary: #f97316;
  --primary-soft: #ffedd5;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e5e7eb;
}

/* BASIC STYLING */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 92%;
  max-width: 1120px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: bold;
  color: var(--dark);
}

.logo-tagline {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.nav a {
  color: var(--dark);
  margin-left: 16px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #1f2937, #020617);
  color: white;
  padding: 60px 0;
}

.hero-content {
  display: grid;
  gap: 25px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: #d1d5db;
  margin-bottom: 4px;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 15px 0 20px;
  font-size: 15px;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 12px;
  color: #9ca3af;
  font-size: 14px;
}

/* HERO IMAGES – FIXED */
.hero-photo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.hero-photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* DESKTOP HERO IMAGES */
@media (min-width: 768px) {
  .hero-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-photo-grid img {
    height: 200px;
  }
}

/* BUTTONS */
.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.primary-btn {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #000;
  font-weight: bold;
}

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

.ghost-btn {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

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

.small-btn {
  font-size: 12px;
  padding: 6px 14px;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section-alt {
  background: white;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 35px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.about-card {
  background: white;
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 12px;
}

/* TRIPS */
.trip-grid {
  display: grid;
  gap: 25px;
}

.trip-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.trip-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.trip-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.trip-content h3 {
  font-size: 20px;
}

.trip-location {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 6px;
}

.trip-highlights {
  margin: 8px 0;
  font-size: 13px;
  color: var(--muted);
}

/* STORIES */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.story-card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 12px;
}

.gallery-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTACT */
#contact a {
  color: #2563eb;
}

#contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: #cbd5f5;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-text h1 { font-size: 28px; }
  .trip-card { grid-template-columns: 1fr; }
}
