body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}


/* ABOUT HERO SECTION */
.about-hero {
  background-color: #1c1c1c;
  color: #f0f0f0;
  padding: 100px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: 90vh;
}

.about-hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  animation: fadeInLeft 1.2s ease;
  margin-top: 110px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 1s ease;
}

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

.about-text {
  animation: fadeInRight 1.2s ease;
}

.about-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #e6c200;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-text h1 i {
  color: #d1a954;
}

.about-text p {
  font-size: 1.1rem;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Subtle entry animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  .about-hero {
    text-align: center;
    padding: 70px 5%;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
  }

  .about-text h1 {
    font-size: 2rem;
    justify-content: center;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    border-radius: 10px;
  }
}

/* Our Story Section */
.story {
  background-color:#e6e6e6 ;
  color: black;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
}

.story .text {
  flex: 1 1 500px;
}

.story .text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d4af37; /* gold accent */
  position: relative;
}

.story .text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  margin-top: 10px;
  border-radius: 2px;
}

.story .text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: black;
  text-align: justify;
}

.story .image {
  flex: 1 1 400px;
  text-align: center;
}

.story .image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.story .image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
  .story-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .story .text h2::after {
    margin: 10px auto 0;
  }

  .story .text p {
    text-align: center;
  }
}


/* VISION & MISSION SECTION */
.vision {
  background-color: #2b2b2b;
  color: #f5f5f5;
  text-align: center;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease-in-out;
}

.vision h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #e6c200;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.vision h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d1a954;
  margin: 10px auto 0;
  border-radius: 2px;
}

.vision h2 i {
  color: #d1a954;
  margin-right: 10px;
}

.vision p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dcdcdc;
  margin-top: 15px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Subtle fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional decorative background fade */
.vision::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
  animation: slowRotate 40s linear infinite;
  z-index: 0;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .vision {
    padding: 70px 5%;
  }

  .vision h2 {
    font-size: 1.8rem;
  }

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

/* Meet the Designer Section */
.designer {
  background-color: #121212;
  color: #e6e6e6;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.designer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
}

.designer .photo {
  flex: 1 1 400px;
  text-align: center;
}

.designer .photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.designer .photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.designer .bio {
  flex: 1 1 500px;
}

.designer .bio h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #d4af37;
  margin-bottom: 20px;
  position: relative;
}

.designer .bio h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: #d4af37;
  margin-top: 8px;
  border-radius: 2px;
}

.designer .bio p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d1d1;
  text-align: justify;
}

.designer .signature {
  margin-top: 30px;
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #d4af37;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 900px) {
  .designer-container {
    flex-direction: column;
    text-align: center;
  }

  .designer .bio h2::after {
    margin: 10px auto 0;
  }

  .designer .signature {
    text-align: center;
  }
}


/* The Craft Section */
.craft {
  background-color: #1a1a1a;
  color: #e6e6e6;
  padding: 100px 8%;
  text-align: center;
}

.craft h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
  position: relative;
}

.craft h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  margin: 10px auto 25px;
  border-radius: 3px;
}

.craft p {
  font-size: 1.1rem;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

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

.gallery img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
  opacity: 0.9;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  opacity: 1;
}

/* Fade-in Animation */
.gallery img {
  animation: fadeUp 1.2s ease both;
}

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

/* Experience Section */
.experience {
  background: linear-gradient(to right, #0f0f0f, #1f1f1f);
  text-align: center;
  padding: 100px 8%;
  color: #f2f2f2;
}

.experience h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.experience p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #d0d0d0;
  line-height: 1.8;
}

/* Call-to-Action Button */
.abtn.yellow {
  background-color: #d4af37;
  color: #121212;
  padding: 14px 32px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.4s ease;
}

.abtn.yellow:hover {
  background-color: #e0c45a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .craft, .experience {
    padding: 70px 5%;
  }

  .craft h2, .experience h2 {
    font-size: 2rem;
  }

  .gallery {
    gap: 15px;
  }
}

