/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #212529;
  background-color: #fff;
}

.bg-dark {
  background: linear-gradient(to bottom right, #042420, #0b5e55);
}

/* Hero Section */
.hero-aboutme {
  position: relative;
  border-radius: 60px;
  min-height: 60vh;
  background: url("../img/DSC02130.jpg") center center/cover no-repeat;
  overflow: hidden;
  padding: 25px;
  margin: 80px 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-aboutme-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #2a2a2a; 
  padding: 2rem;
  max-width: 1000px;
  transform: translateY(-25%);
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #222; 
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.9;
  color: #1c1c1c;
}

@media (max-width: 576px) {
.hero-aboutme-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #2a2a2a; 
  padding: 2rem;
  max-width: 1000px;
  transform: translateY(10%);
}

.hero-title {
  font-size: clamp(4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: #1f1f1f; 
  transform: translateY(-50%);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 0.8rem;
  opacity: 0.9;
  color: #e0e0e0;
  transform: translateY(30%);
}

}

/* Light Background Section */
.section-light {
  background-color: #f8f9fa;
}

/* Placeholder Box (for image preview blocks) */
.placeholder-box {
  background-color: #dee2e6;
  height: 200px;
  border-radius: 0.5rem;
}

.gallery-preview img {
  transition: transform 0.3s ease;
}

.gallery-preview:hover img {
  transform: scale(1.03);
}

/* About Section Enhancements */
.about-section {
  background-color: #e5e5e5;
  padding: 4rem 0;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #212529;
}

.about-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 1rem;
}


.about-me .carousel-item {
  padding: 1rem 0;
}

/* Author Image Styling */
.about-section img {
  max-width: 48%;
  height: auto;
  border-radius: 12%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.04);
}

/* Story Section Enhancements */
.story-section {
  background: linear-gradient(to bottom right, #1d4e48, #0b5e55);
  padding: 4rem 0;
}

.story-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #c9c9c9;
}

.story-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.story-me .carousel-item {
  padding: 1rem 0;
}

/* Author Image Styling */
.story-section img {
  max-width: 80%;
  height: auto;
  border-radius: 2%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-section img:hover {
  transform: scale(1.03);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Pricelist section styling */
.pricelist-section {
  background: linear-gradient(to bottom right, #266961, #094b43);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.pricelist-section h2 {
  color: #f0f0f0;
}


/* FAQ section styling*/ 
.faq-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}


/* Footer section styles */
.footer-gradient {
  background: linear-gradient(to bottom right, #042420, #0b5e55);
  color: white;
}

.footer-link {
  color: #d1d1d1;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-gradient hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-gradient .btn-light {
  background-color: white;
  color: #000;
  border: none;
  font-weight: 600;
  padding: 0.4rem 1.25rem;
  font-size: 0.9rem;
}

.footer-gradient .btn-light:hover {
  background-color: #f0f0f0;
  color: #000;
} 

.mober-link {
  color: rgb(103, 103, 103);
  text-decoration: none;
}

.mober-link:hover {
  color: rgb(177, 177, 177);
}

@media (max-width: 576px) {
  .footer-gradient .row > div {
    text-align: center;
  }

  .footer-gradient .btn {
    margin-top: 1rem;
  }

  .footer-gradient .d-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
}