/* style.css */
:root {
  --primary-color: #b22222;
  /* Dark red like Sierra */
  --secondary-color: #333;
  --light-color: #f8f8f8;
  --dark-color: #111;
  --gray-color: #555;
  --light-gray: #eeeeee;
  --success-color: #28a745;
  --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-color);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 70px;
  width: auto;
}

.footer .logo img {
  max-height: 100px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  padding: 0.5rem 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  font-weight: 500;
  padding: 0.5rem;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-links li .shop-button {
  background-color: #e44d26;
  /* A distinct color, e.g., a shade of orange/red */
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
  /* Space from Contact link */
}

.nav-links li .shop-button:hover {
  background-color: #f76b4a;
  /* Lighter shade on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
    padding: 1rem;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: white;
    height: 2px;
    width: 25px;
    position: relative;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }

  .nav-toggle-label span::before {
    bottom: 8px;
  }

  .nav-toggle-label span::after {
    top: 8px;
  }

  .nav-links {
    height: auto !important;
    min-height: unset !important;
    max-height: 100vh;
    padding: 0.3rem 0 0.3rem 0 !important;
    gap: 0 !important;
  }

  .nav-toggle:checked~.nav-links {
    display: flex;
  }

  .nav-links li {
    margin: 0 !important;
  }

  .nav-links li a {
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
    line-height: 1.1;
  }

  .nav-links li .shop-button {
    font-size: 0.82rem;
    padding: 0.35rem 0.5rem;
    height: 2.2rem;
    min-height: unset;
    max-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
}

.hero.visible .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1.2s;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 1.5s;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
}

.primary-btn:hover {
  background-color: #901a1a;
  transform: translateY(-3px);
}

.secondary-btn {
  background-color: black;
  color: white;
  border: 2px solid black;
}

.secondary-btn:hover {
  background-color: #333333;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Hero Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-buttons .btn {
    max-width: 240px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Section Styles */
.section {
  padding: 0;
  position: relative;
  color: var(--light-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section .container {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  color: var(--light-color);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.2;
}

.section.visible .section-title {
  transform: translateY(0);
  opacity: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section:hover .section-title::after {
  width: 120px;
}

.section-title-dark {
  font-size: 2.5rem;
  text-align: center !important;
  margin: 0 auto 3rem auto;
  position: relative;
  color: var(--light-color);
}

.section-title-dark::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--light-color);
}

.dark-section {
  background-color: rgba(51, 51, 51, 0.9);
  color: var(--light-color);
}

.light-section {
  background-color: rgba(248, 249, 250, 0.9);
  color: var(--dark-color);
}

/* Category Section */
.search-category {
  text-align: center;
}

.search-category h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--light-color);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(5px);
}

.category-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.category-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 1.3rem;
  color: var(--light-color);
}

/* Products Section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: 1.5rem;
}

.product-details h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #333;
}

.product-details p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Purpose Section */
.purpose-content {
  display: flex;
  /* Yan yana yerleştirmek için flex kullanıyoruz */
  align-items: center;
  /* Dikey ortalama */
}

.purpose-text {
  flex: 1;
  /* Metin alanı */
  margin-right: 20px;
  /* Görsel ile metin arasında boşluk */
}

.purpose-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.purpose-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.purpose-text p {
  margin-bottom: 2rem;
}

.purpose-image img {
  width: 100%;
  max-width: 600px;
  max-height: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 700px) {
  .purpose-image img {
    max-width: 100%;
    max-height: 220px;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Testimonial Section */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--light-color);
  font-style: italic;
  padding: 2rem;
  border-radius: 8px;
}

.testimonial p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #007bff;
  margin-right: 15px;
  margin-top: 5px;
}

.info-item p {
  color: #fff;
  /* Yazı rengini beyaz yapıyoruz */
  margin: 0;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
  /* Sola hizalama */
}

.footer-social .social-links {
  justify-content: flex-start;
  /* Footer için sol hizalama */
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-gray);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 1.5rem 0 0.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* Marka bilgisi için daha geniş, linkler için daha dar */
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    /* Küçük ekranlarda tek sütun */
  }
}

.footer-brand p {
  margin-top: 1rem;
  color: #aaa;
}

.footer-links h4,
.footer-newsletter h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  max-width: 320px;
}

@media (max-width: 576px) {
  .footer-links ul {
    grid-template-columns: 1fr;
    max-width: 200px;
  }
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-newsletter p {
  color: #aaa;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
}

.newsletter-form .btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

.footer-bottom a {
  color: var(--primary-color);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #901a1a;
  /* Daha koyu bir hover rengi */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {

  .purpose-content,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .purpose-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section {
    height: 100vh;
    min-height: 100vh;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Fixed WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Page Content (for menu navigation) */
.page-content {
  display: none;
  padding-top: 80px;
  /* To account for the fixed navbar */
}

.page-content.active {
  display: block;
}

#home-content {
  display: block;
  /* Home page content is shown by default */
  background-image: url('../images/sections/ism-airgun-slugs.webp');
}

/* Animation for page transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in-animation {
  animation: fadeIn 0.5s ease-in;
}

/* Page Wrapper (For separate pages) */
.page-wrapper {
  padding-top: 80px;
  /* To account for the fixed navbar */
}

/* Filter Buttons for Products Page */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  background-color: var(--light-gray);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

/* Timeline Styles for About Page */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content>p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 2rem auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 50px;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 1;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Team Grid Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding-bottom: 1.5rem;
}

.team-image {
  height: 220px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--gray-color);
  font-size: 0.95rem;
}

/* Mission and Values Styles */
.mission-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.application-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.application-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.application-card h3,
.application-card p {
  padding: 0 1.5rem;
}

.application-card h3 {
  margin: 1.5rem 0 0.8rem;
}

.application-card p {
  margin-bottom: 1.5rem;
  color: var(--gray-color);
}

/* Map Container */
.map-container {
  margin-top: 2rem;
}

.map-container h3 {
  margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .fa-chevron-down {
  transform: rotate(180deg);
}

.fa-chevron-down {
  transition: transform 0.3s ease;
}

/* Form Select Styles */
select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }

  .timeline-dot {
    left: 6px;
  }

  .timeline-item {
    padding-left: 40px;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Home Page Product Grid */
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-cta {
  text-align: center;
}

/* Purpose Preview Section */
.purpose-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.purpose-preview-text {
  padding: 2rem;
  border-radius: 8px;
}

.purpose-preview-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.purpose-preview-text p {
  margin-bottom: 2rem;
  color: var(--light-color);
}

.purpose-preview-values {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.preview-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preview-value i {
  font-size: 2rem;
  color: var(--primary-color);
}

.purpose-preview-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
}

/* About Preview Section */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
}

.about-preview-text {
  padding: 2rem;
  border-radius: 8px;
}

.about-preview-text p {
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.preview-timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.preview-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
  z-index: 0;
}

.preview-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.milestone-year {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.milestone-text {
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Testimonial Section for Homepage */
.testimonial-section {
  padding: 5rem 0;
}

/* Contact Preview Section */
.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-preview-info {
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-preview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.contact-preview-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 30px;
  text-align: center;
}

.contact-preview-item p {
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.contact-preview-info .social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.contact-preview-info .btn {
  margin-top: 1rem;
  align-self: center;
}

.contact-preview-form {
  padding: 2rem;
  border-radius: 8px;
}

.quick-contact-form .form-group {
  margin-bottom: 1rem;
}

/* Responsive adjustments for homepage sections */
@media (max-width: 992px) {

  .purpose-preview,
  .about-preview,
  .contact-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .purpose-preview-image,
  .about-preview-image,
  .contact-preview-form {
    order: -1;
  }

  .preview-timeline {
    max-width: 500px;
    margin: 0 auto 2rem;
  }
}

@media (max-width: 576px) {
  .purpose-preview-values {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .preview-timeline {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .preview-timeline::before {
    display: none;
  }

  .preview-milestone {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
  }

  .milestone-year {
    margin-bottom: 0;
  }
}

/* Form elements consistency */
textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  resize: vertical;
}

.quick-contact-form .form-group textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Nav Links */
.coming-soon-link {
  position: relative;
  background-color: #fdbb2d;
  color: #333 !important;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.coming-soon-link:hover {
  background-color: #e9a826;
  transform: translateY(-2px);
}

/* Blog Image Styles */
.blog-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Detail Image Styles */
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
}

/* Gallery Image Styles */
.gallery-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

/* Products Section Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-overlay span {
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card:hover .product-overlay span {
  transform: translateY(0);
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #333;
}

.product-details p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* Blog Section Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.blog-image-overlay span {
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.blog-card:hover .blog-image-overlay {
  opacity: 1;
}

.blog-card:hover .blog-image-overlay span {
  transform: translateY(0);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #333;
}

.blog-date {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 10px;
}

.blog-content p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
}

.no-blog-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 8px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--primary-dark);
}

/* Gallery Section Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-image {
  height: 200px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.no-gallery-images {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* Common Sections Styles */
.section {
  padding: 60px 0;
}

.light-section {
  background-color: #f8f9fa;
}

.dark-section {
  background-color: #343a40;
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.text-center {
  text-align: center;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {

  .products-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purpose-preview,
  .about-preview,
  .contact-preview {
    flex-direction: column;
  }

  .purpose-preview-image,
  .purpose-preview-text,
  .about-preview-image,
  .about-preview-text,
  .contact-preview-info,
  .contact-preview-form {
    width: 100%;
    max-width: 100%;
  }

  .purpose-preview-image,
  .about-preview-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    min-height: auto;
  }

  .section .container {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .products-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
    max-width: 240px;
    padding: 0.7rem 1.2rem;
  }
}

/* Button Shadow Style */
.shadow-btn {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  background-color: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}

.shadow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-dark);
}

/* Custom Lightbox Styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.lightbox-container {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Orange Button Style */
.orange-btn {
  background-color: #fdbb2d;
  color: #333;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.orange-btn:hover {
  background-color: #e9a826;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Seller Page Styles --- */
.seller-section {
  padding: 60px 0;
}

.seller-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.features {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  background-color: #f9f9f9;
}

.feature-item h3 {
  color: #0056b3;
  margin-bottom: 10px;
}

/* Style for the new seller button in header */
.seller-button {
  background-color: #ffc107;
  /* Different color */
  color: #212529;
  /* Dark text */
  padding: 8px 15px;
  border-radius: 5px;
  margin-left: 10px;
  /* To separate from SHOP button */
  transition: background-color 0.3s ease;
}

.seller-button:hover {
  background-color: #e0a800;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    min-width: auto;
    width: 100%;
  }
}

/* Home Content Section Styles */
.section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section .container {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section-animated-text {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section.visible .section-animated-text {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Home Content Styles */
@media (max-width: 992px) {
  .section {
    min-height: 80vh;
  }

  .section-animated-text {
    font-size: 2.8rem;
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .section {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .section .container {
    padding: 40px 15px;
  }

  .section-animated-text {
    font-size: 1.75rem;
    /* 3.5rem'in yarısı */
    margin-bottom: 1.5rem;
    padding: 0 10px;
    max-width: 600px;
    /* 1200px'in yarısı */
    width: 50%;
    /* Genişliği yarıda tut */
  }
}

@media (max-width: 480px) {
  .section {
    min-height: 50vh;
  }

  .section .container {
    padding: 30px 15px;
  }

  .section-animated-text {
    font-size: 1.4rem;
    /* Daha küçük ekranlar için biraz daha küçült */
    margin-bottom: 1rem;
    width: 50%;
    /* Genişliği yarıda tut */
    max-width: 300px;
    /* Daha küçük ekranlar için max-width'i de düşür */
  }
}

/* Background Images for Sections */
#home-content {
  background-image: url('../images/sections/ism-airgun-slugs.webp');
}

#products-content {
  background-image: url('../images/sections/products.webp');
}

#purpose-content {
  background-image: url('../images/sections/purpose.webp');
}

#target-shooting-content {
  background-image: url('../images/sections/target-shooting.webp');
}

/* Optimize background images for mobile */
@media (max-width: 768px) {
  #home-content {
    background-image: url('../images/sections/ism-airgun-slugs.webp');
    background-position: center center;
  }

  #products-content {
    background-image: url('../images/sections/products.webp');
    background-position: center center;
  }

  #purpose-content {
    background-image: url('../images/sections/purpose.webp');
    background-position: center center;
  }

  #target-shooting-content {
    background-image: url('../images/sections/target-shooting.webp');
    background-position: center center;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content {
  text-align: center;
}

.preloader-content img {
  max-width: 150px;
  height: auto;
}