/* 
  Georgian Bay Luxury Travel - Premium Styles
  Aesthetics: Bright luxury, elegant typography, gold accents on warm white.
*/

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

:root {
  --color-bg-main: #ffffff;
  --color-bg-alt: #f7f5f0;
  --color-bg-warm: #faf8f4;
  --color-gold: #b8943e;
  --color-gold-hover: #d4ac50;
  --color-gold-light: rgba(184, 148, 62, 0.08);
  --color-text-dark: #1a1a1a;
  --color-text-body: #4a4a4a;
  --color-text-muted: #7a7a7a;
  --color-border: rgba(0, 0, 0, 0.08);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-main);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-text-dark);
}

a { color: inherit; }

/* Typography Utilities */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Navigation ===================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 15px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.logo-container img {
  height: 120px;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.9)) drop-shadow(0 4px 15px rgba(0,0,0,0.7));
}

header.scrolled .logo-container img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.6);
}

header.scrolled nav a {
  color: var(--color-text-dark);
  text-shadow: none;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

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

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

/* ===================== Hamburger Button ===================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

header.scrolled .hamburger span {
  background-color: var(--color-text-dark);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  background-color: var(--color-gold);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  background-color: var(--color-gold);
}

/* ===================== Button ===================== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-gold);
  color: #fff;
  border: 2px solid var(--color-gold);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  font-family: var(--font-sans);
  border-radius: 2px;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 4px 20px rgba(184, 148, 62, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  font-family: var(--font-sans);
  border-radius: 2px;
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: #fff;
}

/* ===================== Hero Section ===================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0 20px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.60) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 15px rgba(0,0,0,0.8), 0 8px 40px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 15px rgba(0,0,0,0.7);
}

/* ===================== Sections General ===================== */
section {
  padding: 100px 5%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.hero .section-subtitle {
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 15px rgba(0,0,0,0.8);
  font-weight: 600;
}

/* ===================== About Section ===================== */
.about {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--color-text-body);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform 1.5s ease;
}

.about-image:hover img {
  transform: scale(1);
}

/* ===================== Services Section ===================== */
.services {
  background-color: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto 0;
}

.service-card {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(184, 148, 62, 0.25) 100%);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  transition-delay: 0.1s;
}

.service-card:hover .service-content p {
  opacity: 1;
}

/* ===================== Testimonials ===================== */
.testimonials {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-bg-main);
}

.testimonial-slider {
  position: relative;
  min-height: 200px;
}

.testimonial-item {
  display: none;
  margin: 40px 0;
  animation: fadeIn 0.6s ease;
}

.testimonial-item.active {
  display: block;
}

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

.testimonial-item p {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.testimonial-item h4 {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--color-gold);
}

/* ===================== Contact Section ===================== */
.contact-section {
  background-color: var(--color-bg-alt);
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info p {
  color: var(--color-text-body);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--color-text-body);
}

.contact-detail-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold);
}

.contact-detail-item a {
  color: var(--color-text-body);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--color-gold);
}

.contact-form-box {
  flex: 1;
  padding: 40px;
  border-radius: 8px;
  background: var(--color-bg-main);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg-warm);
  border: 1px solid #e0ddd5;
  border-radius: 4px;
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--color-bg-main);
  color: var(--color-text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-light);
}

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

.contact-form-box .btn-primary {
  width: 100%;
  text-align: center;
}

/* ===================== Newsletter Section ===================== */
.newsletter-section {
  background: linear-gradient(135deg, #f7f5f0 0%, #faf8f4 50%, #f0ece3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(184, 148, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 8px 30px rgba(184, 148, 62, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(184, 148, 62, 0.3); }
  50% { box-shadow: 0 8px 45px rgba(184, 148, 62, 0.5); }
}

.newsletter-icon svg {
  stroke: #fff;
}

.newsletter-description {
  color: var(--color-text-body);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  margin-bottom: 35px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 12px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.newsletter-input-group:focus-within {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 0 0 3px var(--color-gold-light);
  border-color: var(--color-gold);
}

.newsletter-input-group input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: var(--color-bg-main);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: var(--color-text-muted);
}

.newsletter-input-group .btn-primary {
  border-radius: 0;
  white-space: nowrap;
  border: none;
  padding: 16px 28px;
}

.newsletter-privacy {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-body);
  font-size: 0.9rem;
  font-weight: 500;
}

.newsletter-feature svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Newsletter success state */
.newsletter-input-group.success {
  border-color: #4caf50;
}

.newsletter-input-group.success input {
  color: #4caf50;
}

@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 4px;
  }

  .newsletter-input-group input {
    border-bottom: 1px solid var(--color-border);
  }

  .newsletter-input-group .btn-primary {
    width: 100%;
    text-align: center;
  }

  .newsletter-features {
    gap: 16px;
  }

  .newsletter-feature {
    font-size: 0.85rem;
  }

  .newsletter-icon {
    width: 64px;
    height: 64px;
  }

  .newsletter-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* ===================== Footer ===================== */
footer {
  background-color: #1a1a1a;
  padding: 80px 5% 40px;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col p, .footer-col a {
  color: #b0b0b0;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 0.85rem;
}

/* ===================== Responsive — Tablet ===================== */
@media (max-width: 991px) {
  .hero h1 { font-size: 3.5rem; }
  .about { flex-direction: column; }
  .contact-wrapper { flex-direction: column; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

/* ===================== Responsive — Mobile ===================== */
@media (max-width: 768px) {
  .hamburger { display: block; }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1050;
    border-left: 1px solid var(--color-border);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  nav a {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--color-text-dark);
    text-shadow: none;
  }

  .logo-container img {
    height: 80px;
  }

  header.scrolled .logo-container img {
    height: 45px;
  }

  .hero {
    background-attachment: scroll;
  }

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

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

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 300px;
  }

  .service-content {
    transform: translateY(0);
  }

  .service-content p {
    opacity: 1;
  }

  .testimonial-item p {
    font-size: 1.2rem;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form-box {
    padding: 25px;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  section {
    padding: 60px 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===================== Mobile Overlay ===================== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1040;
}

.nav-overlay.active {
  display: block;
}

/* ===================== Service Page Specific ===================== */
.service-page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 120px 20px 60px;
}

.service-page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.service-page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.service-page-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 15px rgba(0,0,0,0.8), 0 8px 40px rgba(0,0,0,0.6);
}

.service-page-hero .section-subtitle {
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 15px rgba(0,0,0,0.8);
  font-weight: 600;
}

.service-page-hero .hero-content p {
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 15px rgba(0,0,0,0.7);
}

.service-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5%;
}

.service-page-content p {
  color: var(--color-text-body);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-page-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: var(--color-gold-hover);
}

@media (max-width: 768px) {
  .service-page-hero {
    height: 50vh;
    min-height: 350px;
    padding: 100px 20px 40px;
  }
  .service-page-hero .hero-content h1 {
    font-size: 2.2rem;
  }
  .service-page-content {
    padding: 50px 5%;
  }
}

/* ===================== Blog ===================== */
.blog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto 10px;
  align-items: center;
  justify-content: space-between;
}

.blog-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 18px;
  flex: 1;
  min-width: 250px;
  max-width: 450px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-search-box:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 62, 0.15);
}

.blog-search-box svg {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.blog-search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  width: 100%;
}

.blog-search-box input::placeholder {
  color: var(--color-text-muted);
}

.blog-filter-sort {
  display: flex;
  gap: 12px;
}

.blog-filter-sort select {
  padding: 12px 18px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg-main);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a4a4a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  transition: border-color 0.3s ease;
}

.blog-filter-sort select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 62, 0.15);
}

.blog-no-results {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-no-results p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.blog-card {
  background: var(--color-bg-main);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--color-text-dark);
}

.blog-card-body p {
  color: var(--color-text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-link:hover {
  color: var(--color-gold-hover);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 5%;
}

.blog-article-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-article h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 30px;
}

.blog-article p {
  color: var(--color-text-body);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

.blog-article h2 {
  margin-top: 45px;
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.blog-article blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 15px 25px;
  margin: 30px 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text-dark);
  background: var(--color-gold-light);
  border-radius: 0 4px 4px 0;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-article h1 {
    font-size: 2rem;
  }
  .blog-article {
    padding: 50px 5%;
  }
}
