@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 14px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid #e4ddcf;
}

.logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

nav a {
  color: #111111;
  text-decoration: none;
  margin-left: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover { color: #b9972f; }

/* HERO VIDEO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 8% 70px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.58), rgba(255,255,255,0.82));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.tagline {
  color: #b9972f;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 14px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  line-height: 1;
  margin-bottom: 22px;
  color: #000000;
}

.hero p {
  font-size: 18px;
  color: #222222;
  margin-bottom: 34px;
  max-width: 650px;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.primary {
  background: #000000;
  color: #ffffff;
}

.secondary {
  border: 1px solid #000000;
  color: #000000;
  background: transparent;
}

/* SECTIONS */
.section {
  padding: 90px 8%;
  text-align: center;
  background: #ffffff;
}

.cream { background: #f8f5ef; }

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: #000000;
  margin-bottom: 22px;
}

.section p {
  max-width: 820px;
  margin: auto;
  color: #333333;
  font-size: 16px;
}

/* CARDS */
.cards,
.package-grid {
  margin-top: 45px;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.package {
  background: #ffffff;
  padding: 38px 26px;
  border: 1px solid #e4ddcf;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card {
  color: #000000;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 700;
}

.package h3 {
  color: #000000;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-bottom: 12px;
}

.package ul {
  list-style: none;
  margin-top: 22px;
}

.package li {
  padding: 9px 0;
  border-bottom: 1px solid #eee7da;
  color: #333333;
}

.featured { border: 2px solid #b9972f; }

/* GALLERY */
.gallery-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid #e4ddcf;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* CONTACT */
.contact-details {
  margin: 30px auto;
  max-width: 700px;
  background: #f8f5ef;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e4ddcf;
}

.contact-details p { margin-bottom: 8px; }

.contact-details a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}

.contact form {
  max-width: 700px;
  margin: 35px auto 0;
  display: grid;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd4c2;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  color: #111111;
}

textarea { min-height: 130px; }

button {
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 55px 8%;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  color: #111111;
}

.footer-logo {
  width: 85px;
  height: 85px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 1px solid #e4ddcf;
}

footer h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #000000;
  font-size: 34px;
  margin-bottom: 8px;
}

footer p {
  margin-bottom: 6px;
  color: #333333;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 5%;
    flex-direction: column;
    gap: 10px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo span { font-size: 25px; }

  nav { text-align: center; }

  nav a {
    margin: 0 7px;
    font-size: 12px;
  }

  .hero { padding-top: 190px; }

  .hero h1 { font-size: 44px; }

  .hero p { font-size: 16px; }

  .section h2 { font-size: 38px; }

  .gallery-grid img { height: 220px; }
}
/* ===========================
   PREMIUM SERVICES SECTION
=========================== */

.services-showcase{
    background:#111;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    min-height:650px;
    color:#fff;
}

.service-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    padding:70px 45px;
    border-left:2px solid rgba(255,255,255,.25);
}

.service-card:first-child{
    border-left:none;
}

.service-content{
    width:100%;
}

.service-content h3{
    font-family:'Montserrat',sans-serif;
    font-size:34px;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.service-content p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:15px;
    margin-bottom:35px;
}

.service-content a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    letter-spacing:1px;
    transition:.3s;
}

.service-content a:hover{
    color:#c8a248;
}

.service-content span{
    margin-left:12px;
}

.service-image{
    width:260px;
    height:260px;
    border-radius:50%;
    overflow:hidden;
    margin-top:40px;
    transition:.4s;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-image:hover img{
    transform:scale(1.1);
}

.service-card:nth-child(2){
    justify-content:center;
}

.service-card:nth-child(2) .service-image{
    margin-bottom:45px;
    margin-top:0;
}

/* MOBILE */

@media(max-width:991px){

.services-showcase{

grid-template-columns:1fr;

}

.service-card{

border-left:none;
border-bottom:1px solid rgba(255,255,255,.2);

}

.service-content{

text-align:center;

}

.service-content p{

max-width:500px;
margin:auto;
margin-bottom:30px;

}

.service-image{

width:220px;
height:220px;

}

}
/* OUR CRAFT DETAILS */
.hidden {
  display: none !important;
}

.craft-details {
  background: #ffffff;
  padding: 90px 8%;
  color: #111111;
}

.craft-box {
  max-width: 950px;
  margin: 0 auto 45px;
  padding: 35px;
  border-bottom: 1px solid #e4ddcf;
}

.craft-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #000000;
  margin-bottom: 18px;
}

.craft-box p {
  font-size: 17px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 18px;
}

.craft-button {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 10px;
}

.craft-button:hover {
  background: #c8a248;
  color: #000000;
}

.know-more-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 1px;
  padding: 0;
}

.know-more-btn:hover {
  color: #c8a248;
}
/* ===========================
   CRAFT FEATURE
=========================== */

.craft-feature{
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
    gap:30px;
    max-width:1400px;
    margin:auto;
}

.craft-text{
    max-width:520px;
}

/* ===========================
   SLIDESHOW
=========================== */

.craft-slideshow{
    position:relative;
    width:100%;
    height:520px;
    overflow:hidden;
    border-radius:0;
    margin-left:auto;
}

.craft-slideshow img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    opacity:0;

    transition:opacity .8s ease;

}

.craft-slideshow img.active{

    opacity:1;
    z-index:2;

}

.craft-text h3{

    font-size:52px;
    margin-bottom:25px;

}

.craft-text p{

    font-size:20px;
    line-height:1.8;

}

.craft-button{

    display:inline-block;

    padding:18px 36px;

    margin-top:25px;

}

.craft-button:hover{

background:#c7a33d;

color:#000;

}

@media (max-width: 991px) {
  .craft-feature {
    grid-template-columns: 1fr;
  }

  .craft-slideshow {
    height: 350px;
  }
}

.craft-slideshow {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background: #f5f5f5;
}

.craft-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.craft-slideshow img.active {
  opacity: 1;
  z-index: 2;
}
/* ===========================
   PACKAGE SHOWCASE
=========================== */

.package-showcase {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.package-header {
  max-width: 850px;
  margin: 0 auto 55px;
}

.package-subtitle {
  color: #b9972f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.package-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 18px;
}

.package-header > p:last-child {
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
}

.package-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: #ffffff;
  border: 1px solid #e7e0d4;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.package-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
  border-color: #c8a248;
}

.package-image {
  width: 100%;
  height: 640px;
  overflow: hidden;
  background: #f6f3ee;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.035);
}

.package-content {
  padding: 25px 24px 28px;
}

.package-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #111111;
  margin-bottom: 8px;
}

.package-content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

/* PACKAGE POPUP */

.package-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 35px 20px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.package-modal.show {
  display: flex;
}

.package-modal-image {
  display: block;
  width: auto;
  max-width: min(760px, 88vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: packageZoomIn 0.28s ease;
}

.package-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  z-index: 3001;
  transition: transform 0.25s ease, color 0.25s ease;
}

.package-close:hover {
  color: #c8a248;
  transform: scale(1.08);
}

body.modal-open {
  overflow: hidden;
}

@keyframes packageZoomIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 850px) {
  .package-showcase {
    padding: 80px 5%;
  }

  .package-gallery {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .package-image {
    height: auto;
  }

  .package-image img {
    height: auto;
    aspect-ratio: auto;
  }

  .package-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 520px) {
  .package-showcase {
    padding: 65px 18px;
  }

  .package-header h2 {
    font-size: 36px;
  }

  .package-card {
    border-radius: 14px;
  }

  .package-content h3 {
    font-size: 28px;
  }

  .package-modal {
    padding: 55px 12px 20px;
  }

  .package-modal-image {
    max-width: 94vw;
    max-height: 84vh;
  }

  .package-close {
    top: 14px;
    right: 18px;
    font-size: 38px;
  }
}