
body{
    font-family: "Titillium Web", sans-serif; 
    background-color: rgb(255, 252, 241); 
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Titillium Web", sans-serif;
}

.gallery-container-text {
    margin-top: 30px;
    font-size: xx-large;
    font-weight: bold;
    margin-bottom: 30px;
    margin-left: 30px;
}

.gallery-container {
    width: 95%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 18px;
}

.sub-card-contain {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-left: 30px;
    gap: 30px
}

.sub-card-contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.sub-card-contain:hover img {
    transform: scale(1.02);
}

.tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: hsl(0, 0%, 100%);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.title-style {
    font-family: "Titillium Web", sans-serif;
    font-size: 30px;
}
/* HERO SECTION */
.hero-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 100px 6vw 60px;
  padding-top:5px; 
  background-color: #d6c0b3;
}

/* LEFT - Image */
.hero-left {
  flex: 1;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* RIGHT - Info */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:  rgb(113, 18, 18);
  font-weight: 600;
}

.hero-right h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #3b2a1a;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1rem;
  color: #6b5040;
  line-height: 1.8;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-points li {
  font-size: 0.95rem;
  color: #3b2a1a;
  background: #fff8f0;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid #c0392b;
}

.hero-btn {
  display: inline-block;
  background: rgb(113, 18, 18);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
  transition: background 0.3s;
}

.hero-btn:hover {
    background: #4c531c;
}

.tagline3{
   display: flex;
justify-content: center;
align-items: center;
margin: 30px 20px;
 font-size: clamp(1.5rem, 2.5vw, 2.2rem);
 font-weight: 600;
 color: #3b2a1a;

}
.point-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 120px 5vw 50px;
  }

  .hero-img {
    height: 280px;
    
  }
}

.sample-inte {
    font-size: 30px;
    color: rgb(36, 10, 106);
    box-shadow: 10px;
    font-family: "Titillium Web", sans-serif;
    font-size: 40px;
    width: 100%;
    text-align: center;
    object-fit: cover;
}


/* Tablet View */
@media (max-width: 768px) {
  .sample-inte img {
    height: 350px;
    object-position: center;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .sample-inte {
    height: 250px;
    object-fit: cover;
    object-position: center;
  }
}


@media (max-width: 768px) {
  .sample-inte {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .sample-inte {
    height: 250px;
    object-position: center;
  }
}




/* Tablet View */
@media (max-width: 768px) {
    .sample-inte img {
        height: 350px;
        object-position: center;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .sample-inte img {
        height: 250px;
        object-fit: cover;
        object-position: center;
    }
}
@media (max-width: 768px) {
    .sample-inte{
        height: 350px;
    }
}

@media (max-width: 480px) {
    .sample-inte{
        height: 250px;
        object-position: center;
    }
}
.mission-vision-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.mission {
    border-style: groove;
    border: none;
    width: 350px;
    padding: 20px;
    font-size: 20px;
    background-color: rgb(234, 210, 175);
    text-align: center;
    color: rgb(79, 6, 6);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(9, 9, 9, 0.849);
    transition: transform 0.2s ease;

}

.mission:hover {
    transform: scale(1.05);
}

.vision {
    border-style: groove;
    border: none;
    width: 350px;
    padding: 20px;
    height: 130px;
    font-size: 20px;
    background-color: rgb(234, 210, 175);
    text-align: center;
    color: rgb(79, 6, 6);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(9, 9, 9, 0.849);
    transition: transform 0.2s ease;

}

.vision:hover {
    transform: scale(1.05);
}

.logo {
    text-align: center;
    border-radius: 50px;

}

.information {
    border-style: groove;
    border: none;
    padding: 20px;
    height: 200px;
    font-size: 20px;
    background-color: rgb(171, 136, 109);
    text-align: center;
     color: rgb(79, 6, 6);
    border-radius: 10px;

    transition: transform 0.2s ease;

}

.sub-info{
    text-decoration: none;
    color: rgb(79, 6, 6);
}

.team-wrapper {
    text-align: center;
    padding: 40px 20px;
}

.team-wrapper h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #3b2a1a;
    margin-bottom: 30px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.team-card {
    width: 200px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card img {
    width: 120px;
    height: 120px;

    border-radius: 50%;
    margin-bottom: 10px;
}

.team-card h3 {
    margin: 8px 0 5px;
    font-size: 18px;
    color: #222;
}

.team-card p {
    color: #555;
    font-size: 14px;
}

.btn {
    display: block;
    width: 160px;
    margin: 25px auto;
    text-align: center;
    padding: 10px;
    background: black;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}

.btn:hover {
    opacity: 0.8;
}

/* ── MEDIA SECTION ── */
.media-section {
  padding: 80px 8vw;
  background: #fff8f0;
}

.media-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #3b2a1a;
  margin-bottom: 40px;
  text-align: center;
}

.media-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.media-card {
  background: #EDE6D6;
  border-radius: 16px;
  padding: 24px;
  border-top: 3px solid #c0392b;
  height: fit-content;
}

.media-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3b2a1a;
  margin-bottom: 16px;
}

.media-card p {
  font-size: 0.88rem;
  color: #6b5040;
  margin-top: 12px;
  line-height: 1.6;
}

.media-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.media-video {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
}

.audio-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.audio-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c0392b;
}

.media-audio {
  width: 100%;
}

.media-section .section-label {
  display: inline-block;
  background: rgb(113, 18, 18);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 12px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* HERO SECTION */
.bestsellers-hero {
  background: linear-gradient(135deg, #2c1a0e 0%, #5c2d0e 50%, #922b21 100%);
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;   
  margin-top: 35px;
}

/* glow effect */
.bestsellers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(192, 57, 43, 0.2) 0%, transparent 50%);
}

/* badge */
.hero-badge {
  display: inline-block;
  background: #d4a017;
  color: #2c1a0e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-top: 45px;
  margin-bottom: 5px;
  position: relative;
}

/* heading */
.bestsellers-hero h1 {
  font-family: "Titillium Web", sans-serif; 
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.bestsellers-hero h1 span {
  color: #d4a017;
}

/* description */
.bestsellers-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
