/* ===== Global Variables & Reset - Optimized ===== */
:root{--primary-color:#1a1a1a;--secondary-color:#544e30;--light-color:#ecf0f1;--dark-color:#1a1a1a;--text-color:#333;--text-light:#fff;--transition:all .3s ease;--shadow:0 4px 6px rgba(0,0,0,.1);--shadow-hover:0 10px 20px rgba(0,0,0,.15);--max-width:1200px}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Raleway','Helvetica Neue',Arial,sans-serif;line-height:1.6;color:var(--text-color);background-color:#f8f9fa;overflow-x:hidden}
h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',serif;font-weight:700;line-height:1.2}
a{text-decoration:none;color:inherit;transition:var(--transition)}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}

/* ===== Performance Optimizations ===== */
/* Content visibility for below-fold sections */
.services-section,
.testimonials-section,
.slim-slider,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Optimize image rendering */
img {
  content-visibility: auto;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Contain layout for complex components */
.navbar,
.page-header,
.grid,
.services-grid,
.testimonials-grid {
  contain: layout style;
}

/* Optimize paint for animated elements */
.slider-track,
.btn,
.nav-links a {
  will-change: transform;
}

/* Data saver mode optimizations */
.data-saver img {
  filter: blur(0);
}

.data-saver .slider-track {
  animation: none;
}

/* ===== Utility Classes ===== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
  color: white;
}

.section-padding {
  padding: 80px 0;
}

 .text-center {
  text-align: center;
  color: #544e30;
}


.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
  color: #1a1a1a;
  border: 2px solid rgba(237, 227, 121, 0.4);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(237, 227, 121, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 227, 121, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #544e30 0%, #313054 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.btn:hover {
  color: #544e30;
  text-shadow: 0 0 12px rgba(237, 227, 121, 0.8);
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.3) 0%, rgba(49, 48, 84, 0.3) 100%);
  border-color: #544e30;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(237, 227, 121, 0.4);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover::after {
  width: 90%;
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
}

.btn-outline {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  border: 2px solid rgba(237, 227, 121, 0.6);
  color: #544e30;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.25) 0%, rgba(49, 48, 84, 0.25) 100%);
  color: #1a1a1a;
  border-color: #544e30;
  box-shadow: 0 5px 15px rgba(237, 227, 121, 0.3);
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}



/* ===== Navigation Bar Base Styles ===== */
.navbar {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.25) 0%, rgba(49, 48, 84, 0.25) 100%);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(237, 227, 121, 0.2);
}

.nav-container {
  display: flex;
  flex-direction: column; /* Stack logo and nav vertically */
  align-items: center; /* Center horizontally */
  gap: 20px; /* Space between logo and links */
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center; /* Center nav links */
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(237, 227, 121, 0.2);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 50%;
  bottom: 2px;
  background: linear-gradient(90deg, #544e30 0%, #313054 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 80%;
}

/* Glow on Hover */
.nav-links a:hover {
  color: #544e30;
  text-shadow: 0 0 12px rgba(237, 227, 121, 0.8);
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.25) 0%, rgba(49, 48, 84, 0.25) 100%);
  border-color: rgba(237, 227, 121, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(237, 227, 121, 0.3);
}

/* Active Link */
.nav-links a.active {
  color: #1a1a1a;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.4) 0%, rgba(49, 48, 84, 0.3) 100%);
  border-color: #544e30;
  box-shadow: 0 0 20px rgba(237, 227, 121, 0.4);
}

.nav-links a.active::after {
  width: 80%;
  background: linear-gradient(90deg, #544e30 0%, #313054 100%);
}

/* ===== Mobile Styles ===== */
.mobile-menu-btn {
  display: none;
}

/* Hover zone for burger menu - invisible trigger area */
.mobile-menu-trigger {
  display: none;
}

/* Only show burger menu on mobile phones (max-width: 480px) */
@media screen and (max-width: 480px) {
  .mobile-menu-btn {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(84, 78, 48, 0.9) 0%, rgba(84, 78, 48, 1) 100%);
    border: none;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(60px);
    box-shadow: 0 4px 20px rgba(84, 78, 48, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .mobile-menu-trigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    z-index: 1000;
    background: transparent;
    display: block;
  }

  .mobile-menu-trigger:hover + .mobile-menu-btn,
  .mobile-menu-btn:hover {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(84, 78, 48, 1) 0%, rgba(84, 78, 48, 0.8) 100%);
    transform: translateX(0) scale(1.1);
    box-shadow: 0 6px 25px rgba(84, 78, 48, 0.6);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(237, 227, 121, 0.95) 0%, rgba(49, 48, 84, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 80px 2rem 2rem;
    border-left: 1px solid rgba(237, 227, 121, 0.3);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    gap: 1.5rem;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    background: linear-gradient(135deg, rgba(84, 78, 48, 0.2) 0%, rgba(84, 78, 48, 0.1) 100%);
    border-color: rgba(84, 78, 48, 0.4);
    color: #544e30;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(84, 78, 48, 0.2);
  }
  
  .nav-links a.active {
    background: linear-gradient(135deg, rgba(84, 78, 48, 0.3) 0%, rgba(84, 78, 48, 0.2) 100%);
    border-color: #544e30;
    color: #544e30;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(84, 78, 48, 0.3);
  }
  
  /* Close button for mobile menu */
  .nav-links::before {
    content: '×';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #544e30;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transition: all 0.3s ease;
  }
  
  .nav-links::before:hover {
    background: linear-gradient(135deg, rgba(84, 78, 48, 0.2) 0%, rgba(84, 78, 48, 0.1) 100%);
    transform: scale(1.1);
  }
}

/* Tablet and larger screens - keep normal navigation */
@media screen and (max-width: 768px) and (min-width: 481px) {
  .nav-container {
    flex-direction: column;
    padding: 15px 0;
  }
  
  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 20px;
  }
  
  .nav-links a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===== Page Header ===== */
.page-header {
  background-image: url('/images/LandScape/Landscape.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgba(0, 0, 0.4);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-header h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ede379;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.page-header p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* ===== Grid Layout ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.grid-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: white;
}

.grid-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.grid-img-container {
  overflow: hidden;
  position: relative;
}

.grid-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover .grid-img {
  transform: scale(1.1);
}

.grid-info {
  padding: 20px;
}

.grid-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.grid-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* ===== Filter Buttons with Glowing Hover Effect ===== */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 5px 20px;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 65px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1px;
}

/* Glowing Border Effect on Hover */
.filter-btn::before {
  content:'';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: #544e30;
  border-radius: 40px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1.1);
  filter: blur(8px);
}

/* Hover and Active State */
.filter-btn:hover,
.filter-btn.active {
  background-color: #544e30;
  color: #1a1a1a;
  border-color: #544e30;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  opacity: 0.6;
  transform: scale(1.05);
}



/* ===== About Page ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: auto;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #1a1a1a;
}

.awards-list {
  margin: 20px 0;
  list-style-type: none;
  color: #1a1a1a;
}

.awards-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.awards-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.2) 0%, rgba(49, 48, 84, 0.2) 100%);
  color: #1a1a1a;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background-color: rgba(237, 227, 121, 0.15);
}

.testimonial-author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.testimonial-author h4 {
  color: #1a1a1a;
}

.testimonial-author p {
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.9rem;
}

/* ===== Services ===== */
.services-section {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.3) 0%, rgba(49, 48, 84, 0.3) 100%);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #544e30;
}

.service-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out;
}

.service-card:hover .service-img {
  filter: grayscale(0%);
}


/* ===== Journal Page ===== */
.journal {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.05) 0%, rgba(49, 48, 84, 0.05) 100%);
  min-height: 100vh;
  padding: 40px 0;
}

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

.journal-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
  color: #1a1a1a;
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(237, 227, 121, 0.2);
  border: 1px solid rgba(237, 227, 121, 0.3);
  transition: all 0.3s ease;
}

.journal-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(237, 227, 121, 0.3);
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
}

.post-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-image img {
  width: 100%;
  height: 336px;
  object-fit: cover;
}

.post-meta {
  color: #1a1a1a;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.post-excerpt {
  margin-bottom: 15px;
  line-height: 1.8;
}
.post-content {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.08) 0%, rgba(49, 48, 84, 0.08) 100%);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(237, 227, 121, 0.2);
}

.post-content h2 {
  color: #544e30;
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.3;
}

.post-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-content h2 a:hover {
  color: #1a1a1a;
  text-shadow: 0 0 8px rgba(237, 227, 121, 0.6);
}

.read-more {
  color: #544e30;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  gap: 10px;
}

/* ===== Gear Page ===== */
.gear-category {
  margin-bottom: 60px;
}

.gear-category h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #544e30;
  position: relative;
  padding-bottom: 10px;
}

.gear-category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.gear-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  color: chocolate;
}

.gear-item {
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gear-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gear-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gear-info {
  padding: 20px;
}

.gear-info h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.gear-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  color: #1a1a1a;
}

.contact-info h2 {
  color: #544e30;
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-info p {
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info h3 {
  color: #544e30;
  margin-bottom: 10px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-method i {
  font-size: 1.5rem;
  color: #544e30;
  margin-top: 5px;
}

.form-group {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: #1a1a1a;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
  background-color: rgba(137, 137, 137, 0.4);
  color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

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

contact-info {
    margin-bottom: 50px;
    background-color: rgba(237, 227, 121, 0.05);
    color: #1a1a1a;
  }

.map-section {
  margin-top: 80px;
}

/* ===== Prints Page ===== */
.print-options {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.print-size {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.add-to-cart {
  white-space: nowrap;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  animation: fadeIn 0.3s;
}

.lightbox-content {
  display: block;
  max-width: 90%;
  max-height: 80%;
  margin: 5% auto;
  border-radius: 4px;
}

.lightbox-caption {
  color: white;
  text-align: center;
  max-width: 80%;
  margin: 20px auto 0;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-lightbox:hover {
  color: var(--secondary-color);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.2) 0%, rgba(49, 48, 84, 0.2) 100%);
  backdrop-filter: blur(10px);
  color: #1a1a1a;
  padding: 4px 0 30px;
  border-top: 1px solid rgba(237, 227, 121, 0.3);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  z-index: -1;
}

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

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 4px;
  color: #1a1a1a;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #544e30;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(26, 26, 26, 0.8);
  transition: all 0.3s ease;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.05) 0%, rgba(49, 48, 84, 0.05) 100%);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 227, 121, 0.2), transparent);
  transition: left 0.5s ease;
}

.footer-links a:hover::before {
  left: 100%;
}

.footer-links a:hover {
  color: #544e30;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
  padding-left: 1.2rem;
  text-shadow: 0 0 8px rgba(237, 227, 121, 0.5);
  border: 1px solid rgba(237, 227, 121, 0.3);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.2) 0%, rgba(49, 48, 84, 0.2) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(237, 227, 121, 0.3);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(237, 227, 121, 0.4) 0%, rgba(49, 48, 84, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a:hover {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.4) 0%, rgba(49, 48, 84, 0.4) 100%);
  transform: translateY(-3px) scale(1.1);
  border-color: #544e30;
  box-shadow: 0 5px 15px rgba(237, 227, 121, 0.4);
}

.social-links a:hover i {
  color: #544e30;
  text-shadow: 0 0 8px rgba(237, 227, 121, 0.6);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .about-content,
  .contact-grid,
  .journal-post {
    grid-template-columns: 1fr;
  }
  
  .about-img,
  .post-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-info {
    margin-bottom: 50px;
    background-color: rgba(237, 227, 121, 0.05);
    color: #1a1a1a;
  }
  .contact-info p {
    margin-bottom: 20px;
    color: #1a1a1a;
  }
  .contact-info h2 {
    color: #544e30;
  }
  .contact-info h3 {
    color: #544e30;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-container {
    flex-direction: column;
    padding: 15px 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    margin-top: 20px;
    gap: 15px;
  }
  
  .nav-links.active {
    max-height: 500px;
    padding: 20px 0;
  }
  
  .page-header {
    min-height: 50vh;
    padding: 80px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .page-header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .filter-buttons {
    gap: 5px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .page-header {
    padding: 60px 0 40px;
    min-height: 40vh;
  }
  
  .page-header h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .page-header p {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .print-options {
    flex-direction: column;
  }
}

/*Slim tag on footer */
.slim-slider {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  overflow: hidden;
  background: #fefefe;
  margin-top: 3rem;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: calc(200%); /* doubled for loop */
  animation: scrollLeftToRight 25s linear infinite;
}

.slider-track img {
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

/* Unified animation - removed duplicate scrollSlider */

.tagline-bar {
  text-align: center;
  background: #111;
  color: #fff;
  font-size: 0.6rem;
  padding: 0.7rem 1rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/*Print page*/
.prints {
  padding: -10rem;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
}

.prints-filters {
  text-align: center;
  margin-bottom: -0.1rem;
}

.filter-btn {
  background-color: #eee;
  border: none;
  padding: -8.6rem 4rem;
  margin: 0 0.7rem;
  cursor: pointer;
}

.filter-btn.active {
  background-color: #333;
  color: #fff;
}

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

.print-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.print-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.print-item:hover img {
  transform: scale(1.05);
}

.caption {
  text-align: center;
  margin-top: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
}
.print-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.print-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.print-item:hover {
  transform: scale(1.02);
}

.caption {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.buy-btn {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  background-color: #111;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

.buy-btn:hover {
  background-color: #444;
}

/*Top Logo*/
/* Logo and Branding Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between logo and text */
}

.site-logo {
  height: 40px; /* Adjust to your preference */
  width: auto; /* Maintain aspect ratio */
  display: block;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #1a1a1a; /* Changed from white to dark */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .logo-container {
    gap: 8px;
  }
  .site-logo {
    height: 32px;
  }
  .logo {
    font-size: 1.2rem;
  }
}

/* All Photos Page Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  color: white;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.all-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.photo-info{
  color: white;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .all-photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
/* All Photos Page Specific Styles */
.all-photos-container {
    padding: 40px 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.photo-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.photo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.view-all-btn {
    display: inline-block;
    margin: 30px auto;
    text-align: center;
}

/* Back button styles */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
}

.back-btn i {
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}
/* === Slim Slider Container === */
.slim-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(237, 227, 121, 0.25) 0%, rgba(49, 48, 84, 0.25) 50%, rgba(237, 227, 121, 0.25) 100%);
  padding: 5px 0;
}

/* === Wrapper to contain and clip the track === */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
}

/* === Track that moves infinitely from left to right === */
.slider-track {
  display: flex;
  width: calc(200%); /* Because we duplicate images for seamless scroll */
  animation: scrollLeftToRight 25s linear infinite;
}

.slider-track img {
  width: auto;
  height: 72px;
  margin-right: 30px;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

/* === Unified Left-to-Right Scrolling Animation === */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* Move left by 50% to create seamless loop */
  }
}

/* === Tagline Bar === */
.tagline-bar {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 16px;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 8px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid #333;
}
 /*Filtered pics*/
.graphic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Unified .graphic-item styles */
.graphic-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.graphic-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 5px;
  object-fit: cover;
}

.graphic-item:hover img {
  transform: scale(1.05);
}

/* Unified .graphic-items styles - used in graphics.html */
.graphic-items {
  position: relative;
  background: linear-gradient(145deg, rgba(237, 227, 121, 0.2) 0%, rgba(49, 48, 84, 0.2) 100%);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.graphic-items img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.graphic-items:hover img {
  transform: scale(1.05);
}

.graphic-items .caption {
  margin-top: 10px;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 1rem;
}

/* ===== Graphics Page Specific Layout ===== */
/* Graphics Grid Layout - Mobile-sized for first 8, 1:1 for last 2 */
.graphics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.graphics-grid .graphic-items {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: none;
  padding: 0;
  box-shadow: none;
}

.graphics-grid .graphic-items:hover {
  transform: translateY(-5px);
}

/* Optimized styling for first 7 pictures */
.graphics-grid .graphic-items:nth-child(-n+7) img {
  width: 100%;
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.graphics-grid .graphic-items:nth-child(-n+7):hover img {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(84, 78, 48, 0.2);
}

.graphics-grid .graphic-items:nth-child(-n+7) .caption {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #2a2a2a;
}

/* Special styling for 8th picture (dineo 2.jpg) - larger file size */
.graphics-grid .graphic-items:nth-child(8) img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.graphics-grid .graphic-items:nth-child(8):hover img {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(84, 78, 48, 0.25);
}

.graphics-grid .graphic-items:nth-child(8) .caption {
  font-size: 1rem;
  margin-top: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

/* Square aspect ratio for last two items (9 and 10) */
.graphics-grid .graphic-items.square-ratio {
  grid-column: span 1;
}

.graphics-grid .graphic-items.square-ratio img {
  height: 200px;
  width: 200px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.graphics-grid .graphic-items.square-ratio:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(84, 78, 48, 0.2);
}

.graphics-grid .caption {
  margin-top: 10px;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

/* Last row centering for 2 items */
.graphics-grid .graphic-items:nth-child(9) {
  grid-column: 2;
}

.graphics-grid .graphic-items:nth-child(10) {
  grid-column: 3;
}

/* Graphics Responsive Design */
@media (max-width: 768px) {
  .graphics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 15px;
  }
  
  .graphics-grid .graphic-items:nth-child(9),
  .graphics-grid .graphic-items:nth-child(10) {
    grid-column: auto;
  }
  
  .graphics-grid .graphic-items:nth-child(-n+7) img {
    height: 110px;
  }
  
  .graphics-grid .graphic-items:nth-child(8) img {
    height: 130px;
  }
  
  .graphics-grid .graphic-items.square-ratio img {
    height: 150px;
    width: 150px;
  }
}

@media (max-width: 480px) {
  .graphics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .graphics-grid .graphic-items:nth-child(-n+7) img {
    height: 120px;
  }
  
  .graphics-grid .graphic-items:nth-child(8) img {
    height: 140px;
  }
  
  .graphics-grid .graphic-items.square-ratio img {
    height: 180px;
    width: 180px;
  }
}

/* Auth Forms */
.auth-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.auth-form {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.auth-link {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Content Navigation ===== */
.content-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.content-nav-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
  border: 2px solid rgba(237, 227, 121, 0.4);
  border-radius: 25px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.content-nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 227, 121, 0.3), transparent);
  transition: left 0.6s ease;
}

.content-nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #544e30 0%, #313054 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.content-nav-btn:hover::before {
  left: 100%;
}

.content-nav-btn:hover::after {
  width: 90%;
}

.content-nav-btn:hover {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.3) 0%, rgba(49, 48, 84, 0.3) 100%);
  border-color: #544e30;
  color: #544e30;
  text-shadow: 0 0 12px rgba(237, 227, 121, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(237, 227, 121, 0.4);
}

.content-nav-btn.active {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.4) 0%, rgba(49, 48, 84, 0.4) 100%);
  border-color: #544e30;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(237, 227, 121, 0.7);
}

.content-nav-btn.active::after {
  width: 90%;
  background: linear-gradient(90deg, #313054 0%, #544e30 100%);
}

.content-nav-btn.active:hover {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.5) 0%, rgba(49, 48, 84, 0.5) 100%);
  transform: translateY(-3px) scale(1.05);
  color: #1a1a1a;
}

/* Mobile responsiveness for content nav */
@media (max-width: 768px) {
  .content-nav {
    gap: 10px;
  }
  
  .content-nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .content-nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .content-nav-btn {
    width: 200px;
    text-align: center;
  }
}

.auth-link a {
  color: var(--secondary-color);
  font-weight: 600;
}

.auth-message {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
}

/* ===== Article Styling ===== */
.article-header {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.15) 0%, rgba(49, 48, 84, 0.15) 100%);
  padding: 60px 0 40px;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237, 227, 121, 0.3);
}

.article-header h1 {
  font-size: 2.5rem;
  color: #544e30;
  margin: 20px 0;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #1a1a1a;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.article-content {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.03) 0%, rgba(49, 48, 84, 0.03) 100%);
  padding: 60px 0;
  min-height: 50vh;
}

.featured-image {
  margin: 0 0 40px 0;
  text-align: center;
}

.featured-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(237, 227, 121, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(237, 227, 121, 0.4);
}

.image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #1a1a1a;
}

.article-body .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #544e30;
}

.article-body blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.1) 0%, rgba(49, 48, 84, 0.1) 100%);
  border-left: 4px solid #544e30;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  position: relative;
}

.article-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #544e30;
  font-style: normal;
}

.article-footer {
  max-width: 800px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 2px solid rgba(237, 227, 121, 0.3);
}

.tags {
  margin-bottom: 30px;
}

.tag {
  display: inline-block;
  padding: 6px 15px;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.2) 0%, rgba(49, 48, 84, 0.2) 100%);
  color: #544e30;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 5px 10px 5px 0;
  font-weight: 600;
  border: 1px solid rgba(237, 227, 121, 0.4);
}

.share-buttons h4 {
  color: #544e30;
  margin-bottom: 15px;
}

.social-share {
  display: flex;
  gap: 15px;
}

.share-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.2) 0%, rgba(49, 48, 84, 0.2) 100%);
  border-radius: 50%;
  color: #544e30;
  transition: all 0.3s ease;
  border: 2px solid rgba(237, 227, 121, 0.4);
}

.share-btn:hover {
  background: linear-gradient(135deg, rgba(237, 227, 121, 0.4) 0%, rgba(49, 48, 84, 0.4) 100%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(237, 227, 121, 0.4);
  color: #1a1a1a;
}

/* ===== Article Mobile Responsive ===== */
@media (max-width: 768px) {
  .article-header {
    padding: 40px 0 30px;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .article-content {
    padding: 40px 0;
  }
  
  .article-body {
    padding: 0 15px;
  }
  
  .featured-image img {
    border-radius: 10px;
  }
  
  .social-share {
    justify-content: center;
  }
  
  .back-link {
    margin-bottom: 20px;
  }
}