/* ---------- HERO WRAP ---------- */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* CAROUSEL */
.hero-carousel {
  display: flex;
  transition: transform 700ms cubic-bezier(.22,.9,.35,1);
}

/* SLIDE */
.hero-slide {
  min-width: 100vw;
  height:75vh;
  position: relative;
  display: flex;
  align-items: flex-end; /* bottom */
  justify-content: flex-start; /* left */
  background-position: center;
  background-size: cover;
}

.hero-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 520px;
  padding: 24px 20px 40px 40px;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* EYEBROW */
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 6px; /* gap below eyebrow */
}

/* TITLE & SUB */
.hero-title {
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 600;
  margin: 0;
}

.hero-sub {
  font-size: clamp(13px, 1.1vw, 16px);
  opacity: 0.9;
  margin: 0;
}

/* CTA */
.hero-cta {
  display:inline-block;
  background:#c86a3f;
  color:#fff;
  font-size:13px;
  padding:9px 16px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition: transform 0.2s ease, background 0.2s ease;
  align-self: flex-start; /* left aligned with title/sub */
}

.hero-cta:hover {
  transform: translateY(-2px);
  background:#a9552f;
}

/* ---------- CONTROLS HORIZONTAL RIGHT BOTTOM ---------- */
.hero-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: row;   /* horizontal */
  align-items: center;   /* vertically center buttons/dots */
  gap: 8px;
  z-index: 6;
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
}

.hero-controls button {
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.hero-dots {
  display: flex;         
  gap: 4px;
}

.hero-dot {
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.hero-dot.active {
  background:#fff;
}

.hero-controls-hint {
  font-size: 9px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-left: 4px;
}

/* ---------- MOBILE ---------- */
@media (max-width:768px){
  .hero-slide { height:62vh; }
  .hero-content { padding:20px 16px 32px 20px; gap:6px; }
  .eyebrow { font-size:11px; margin-bottom:4px; }
  .hero-cta { font-size:12px; padding:7px 14px; }
  .hero-controls { right:12px; bottom:12px; gap:6px; font-size:9px; }
  .hero-controls button { width:20px; height:20px; font-size:10px; }
  .hero-dot { width:1px; height:1px; }
  .hero-controls-hint { font-size:8px; margin-left:3px; }
}

/* CATEGORY */
.categories .cat {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.categories .cat:hover {
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.categories .cat h3 {
  color: var(--text-dark);
}

.categories .cat:hover h3 {
  color: var(--accent);
}

.categories .cat p {
  color: var(--text-light);
}

/* GRID */
.grid img:hover {
  transform: scale(1.04);
}


/* ---------- CATEGORIES---------- */
.categories {
  max-width:1200px;
  margin:28px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.cat {
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 24px rgba(12,14,16,0.06);
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;

}

.cat img {
  height:170px;
  width:170px;
  margin:20px auto 10px;
  object-fit:cover;
  border-radius:50%;  
border-color: darkgrey; 
}

.cat-body {
  padding:14px;
  text-align:center;
}

.cat h3 {
  font-size:1.05rem;
  margin-bottom:6px;
  font-weight:700;
}

.cat p {
  font-size:0.95rem;
  color:#666;
}

.cat:hover {
  transform:translateY(-6px);
  box-shadow:0 14px 34px rgba(12,14,16,0.08);
}

/* ---------- Responsiveness ---------- */
    @media (max-width:1000px) { .categories { grid-template-columns:repeat(2,1fr); }}
    @media (max-width:640px) {
      .categories { grid-template-columns:1fr; }
      
    }

/*dream-container*/
.dream-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

/* SIDE IMAGES */
.side-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}

/* CENTER CONTENT */
.center {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.center h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.center h2 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #666;
}

.center p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #777;
}

.contact-info {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.btn {
  background: linear-gradient(180deg, #5a3a2e, #3e261d);
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn:hover {
  background:#5a3a2e ; 
  color: white;
  transform: translateY(-2px);
}

/*responsive*/
@media (max-width: 768px) {
  .dream-container {
    grid-template-columns: 1fr;
  }

  .side-img {
    height: 220px;
  }

  .center {
    order: -1;
  }
}


/* ================= PORTFOLIO SECTION ================= */

.portfolio-section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* HERO */
.portfolio-hero {
  position: relative;
  min-height: 520px;
  padding: 60px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

/* DARK OVERLAY */
.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 0;
}

/* CONTENT */
.portfolio-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.portfolio-left {
  max-width: 70%;
  color: #fff;
}

.portfolio-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

.portfolio-title {
  font-size: 34px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.portfolio-text {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

/* RIGHT */
.portfolio-right {
  display: flex;
  align-items: center;
}

/* BUTTON */
.portfolio-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.portfolio-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .portfolio-hero {
    padding: 40px;
  }

  .portfolio-left {
    max-width: 100%;
  }

  .portfolio-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .portfolio-hero {
    padding: 28px;
    min-height: auto;
  }

  .portfolio-title {
    font-size: 24px;
  }

  .portfolio-text {
    font-size: 15px;
  }
}

/* ================= GALLERY SECTION ================= */

.gallery-section {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

/* SECTION HEADER */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #5a3a2e;
}

.view-link {
  font-weight: 700;
  color: #c86a3f;
  text-decoration: none;
}

.view-link:hover {
  text-decoration: underline;
}

/* COLLAGE */
.gallery-collage img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-collage img:hover {
  transform: scale(1.04);
}

/* SMALL IMAGES */
.gallery-collage .col-md-4 img {
  height: 220px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gallery-collage img {
    height: 220px;
  }
}



