:root {
  --primary-color: #d67c2f;
  --dark-text: #1a1a1a;
  --light-text: #666;
}

body {
  font-family: 'Poppins', sans-serif;
}

img{
  max-width:100%;
  display:block;
}

button, a{
  cursor:pointer;
}

a{
  text-decoration:none;
}

body{
  margin:0;
  font-family:'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.hero-slide.active{
  opacity:1;
  z-index:1;
}


.hero-bg{
  width:100%;
  height:100%;

  object-fit:cover;

  object-position:center top;

  filter: brightness(0.92) contrast(1.08) saturate(1.05);

  image-rendering:-webkit-optimize-contrast;
}

/* 🔥 LIGHT OVERLAY (fix dull issue) */
.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0) 80%
  );
}

/* CONTENT */
.hero-content{
  position:absolute;
  bottom:20%;
  left:8%;
  color:#fff;
  max-width:600px;
  animation: fadeUp 1s ease;
}

/* SUBTITLE */
.hero-subtitle{
  font-family:'Poppins', sans-serif;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:10px;
   text-shadow: 
    0 2px 8px rgba(0,0,0,0.4);
}

/* HEADING */
.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:70px;
  line-height:1.1;
  margin-bottom:20px;
  text-shadow: 
    0 4px 20px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.25);
}

/* LOCATION */
.hero-location{
  font-family:'Poppins', sans-serif;
  margin-bottom:25px;
  text-shadow: 
    0 2px 8px rgba(0,0,0,0.4);
}

.hero-location i{
  color:#ff7a00;
  margin-right:6px;
  font-size:14px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
}

.btn-primary{
  background:#ff7a00;
  color:#fff;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
}

.btn-secondary{
  background:#fff;
  color:#333;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
}

.btn-primary:hover{
  background:#e66a00;
  transform:translateY(-2px);
}

.btn-secondary:hover{
  background:#f2f2f2;
}


@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* LARGE TABLET */
@media (max-width: 1024px){

  .hero-content{
    left:6%;
    bottom:18%;
    max-width:500px;
  }

  .hero-content h1{
    font-size:55px;
  }

}

/* TABLET */
@media (max-width: 768px){

  .hero{
    margin-top:120px;
    height:calc(100vh - 120px);
  }

  .hero-bg{
    object-position:65% center;
  }

  .hero-content{
    left:5%;
    bottom:15%;
    max-width:90%;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-subtitle{
    font-size:12px;
  }

  .hero-location{
    font-size:14px;
  }

  .hero-buttons{
    flex-direction:row;
    flex-wrap:wrap;
    gap:10px;
  }

  .btn-primary,
  .btn-secondary{
    padding:10px 18px;
    font-size:14px;
  }
}

/* MOBILE */
@media (max-width: 480px){

  .hero{
    height:85vh;
  }

  .hero-content{
    left:5%;
    bottom:12%;
    max-width:95%;
  }

  .hero-content h1{
    font-size:32px;
    line-height:1.2;
  }

  .hero-subtitle{
    font-size:11px;
    letter-spacing:1.5px;
  }

  .hero-location{
    font-size:13px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .btn-primary,
  .btn-secondary{
    width:fit-content;
    font-size:13px;
    padding:9px 16px;
  }
}

/* SMALL MOBILE */
@media (max-width: 360px){

  .hero-content h1{
    font-size:28px;
  }

  .hero-location{
    font-size:12px;
  }
}


/* SECTION */
.about-section {
  background: #f5f5f5;
  padding: 80px 5%;
}

/* CONTAINER */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-subtitle {
  color: var(--primary-color);
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 600;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--dark-text);
  margin: 15px 0;
  line-height: 1.2;
}

.about-text p {
  color: var(--light-text);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-stats h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 0;
}

.about-stats div:nth-child(1) h3 {
  color: #d67c2f;
}

.about-stats div:nth-child(2) h3 {
  color: green;
}

.about-stats div:nth-child(3) h3 {
  color: goldenrod;
}

.about-stats span {
  font-size: 13px;
  color: var(--light-text);
}

/* RIGHT IMAGES */
.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.about-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* DIFFERENT HEIGHTS (same layout effect) */
.img1 {
  height: 180px;
}

.img2 {
  height: 260px;
}

.img3 {
  height: 260px;
  margin-top: -80px;
}

.img4 {
  height: 180px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-stats {
    justify-content: space-between;
  }
}

/* SECTION */
.craft-section {
  background: #eae4dc;
  padding: 80px 5%;
  text-align: center;
}

/* HEADER */
.craft-header span {
  color: #d67c2f;
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 500;
}

.craft-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin: 10px 0;
  color: #1a1a1a;
}

.craft-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
}

/* CARDS GRID */
.craft-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.craft-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 🔥 HEIGHT CONTROL (main fix) */
.craft-card img {
  width: 100%;
  height: 420px; /* 👈 increase height */
  object-fit: cover;
  object-position: center;
}
/* DARK OVERLAY */
.craft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.1)
  );
}

/* TEXT OVERLAY */
.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 18px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.craft-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .craft-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .craft-container {
    grid-template-columns: 1fr;
  }

  .craft-header h2 {
    font-size: 30px;
  }
}

/* SECTION */
.festival-section {
  background: #f5f5f5;
  padding: 90px 5%;
}

/* HEADER */
.festival-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.festival-header span {
  color: #bb5d0a;
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 600;
}

.festival-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 10px 0;
}

.festival-header p {
  max-width: 500px;
  color: #666;
  font-size: 18px;
}

/* BUTTON */
.festival-btn {
  border: 1px solid #d67c2f;
  padding: 10px 20px;
  border-radius: 30px;
  color: #d67c2f;
  transition: 0.3s;
}

.festival-btn:hover {
  background: #d67c2f;
  color: #fff;
}

/* GRID */
.festival-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* CARD */
.festival-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

/* IMAGE */
.festival-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TAG */
.tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff7a00;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 2;
}

/* OVERLAY */
.festival-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    transparent
  );
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.overlay p {
  font-size: 18px;
  opacity: 0.9;
}

/* HOVER */
.festival-card:hover img {
  transform: scale(1.08);
  transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .festival-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .festival-container {
    grid-template-columns: 1fr;
  }

  .festival-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}