/* ===========================
   GLOBAL / RESET
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A8852E;
  --cream: #FAF7F2;
  --cream-mid: #F3EDE3;
  --dark: #1A1A1A;
  --text-muted: #888;
  --text-body: #555;
  --white: #ffffff;
  --border-light: #e8e0d0;
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }

/* Hover zoom on images */
.img-hover-zoom {
  overflow: hidden;
  border-radius: 6px;
}
.img-hover-zoom img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-hover-zoom:hover img {
  transform: scale(1.06);
}

/* Card hover lift */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Buttons */
.btn-hero {
  background-color: var(--dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-hero:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-gold:hover {
  background-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background-color: var(--gold);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-gold-outline:hover {
  background-color: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
=========================== */
#mainNav {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Centered pipe nav */
.nav-pipe {
  padding: 18px 0;
}

.nav-pipe .nav-item .nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark) !important;
  padding: 4px 18px !important;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-pipe .nav-item .nav-link:hover {
  color: var(--gold) !important;
}

/* Pipe separators */
.nav-separator {
  color: #bbb;
  font-size: 0.85rem;
  font-weight: 300;
  list-style: none;
  line-height: 1;
  user-select: none;
  padding: 0;
}

.navbar-toggler {
  border-color: rgba(0,0,0,0.15);
  padding: 6px 10px;
  margin: 8px 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,26,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Brand (kept for footer use) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  background-color: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 7px;
  border-radius: 3px;
  letter-spacing: 1px;
  line-height: 1;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark);
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.35) 60%,
    rgba(10, 10, 10, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 400px;
  font-weight: 300;
}

/* .hero-side-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  z-index: 2;
  border-top-left-radius: 12px;
  overflow: hidden;
  display: none;
}
.hero-side-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
} */

/* ===========================
   REDEFINES LUXURY SECTION
=========================== */
.luxury-section {
    background: #f8f8f8;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.content-box {
    padding: 20px 40px;
}

.content-box h2 {
    font-size: 42px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    max-width: 480px;
}

.btn-gold {
    background: #d8a145;
    color: #000;
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-gold:hover {
    background: #c28e37;
    color: #fff;
}

.building-image {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
}

.building-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===========================
   EXCLUSIVITY SLIDER SECTION
=========================== */
.right-content {
    display: flex;
    flex-direction: column;
}

.excl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.nav-line {
    flex: 1;
    height: 1px;
    background: #bdb7b0;
    margin-right: 30px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.excl-btn {
    width: 42px;
    height: 42px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.swiper-button-prev-excl {
    background: #b9b4ae;
    color: #fff;
}

.swiper-button-next-excl {
    background: #2f2f2f;
    color: #fff;
}

.excl-img {
    overflow: hidden;
}

.excl-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* ===========================
   AMENITIES SECTION
=========================== */
.amenities-section {
  background-color: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
}
.section-subtext {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Masonry-style amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 10px;
}

.am-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
}
.am-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.am-item:hover img {
  transform: scale(1.06);
}

/* Large item spanning 2 columns */
.am-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
  height: 100%;
  min-height: 370px;
}

/* Middle wide item */
.am-item:nth-child(6) {
  grid-column: span 2;
}

/* Overlay text item */
.am-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 20px 14px 14px;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 300;
}

/* ===========================
   PARTNERS / LOGOS
=========================== */
.partners-section {
  background-color: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

.partner-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.partner-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}
.logo-accent {
  font-size: 1.8rem;
  line-height: 0.8;
  display: inline-block;
  vertical-align: middle;
}
.partner-bordered {
  border: 1.5px solid var(--dark);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.85rem;
}
.partner-riga {
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.partner-riga sub {
  font-size: 0.45rem;
  letter-spacing: 2px;
  vertical-align: bottom;
  color: var(--text-muted);
  display: block;
}

/* ===========================
   INSTAGRAM / FOLLOW SECTION
=========================== */
.instagram-section {
  background-color: var(--cream);
  padding: 60px 0;
}

.insta-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}
.insta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-img:hover img {
  transform: scale(1.07);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-img:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay i {
  font-size: 2rem;
  color: var(--white);
}

.follow-link {
  font-size: 0.85rem;
  color: var(--gold) !important;
  font-weight: 500;
}
.follow-link:hover {
  color: var(--gold-dark) !important;
  text-decoration: underline;
}

/* ===========================
   CTA / CONTACT FORM
=========================== */
.cta-section {
  position: relative;
  padding: 70px 0;
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 8, 0.82);
}
.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.cta-input {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-family: var(--font);
  transition: border-color 0.3s ease;
}
.cta-input::placeholder {
  color: rgba(255,255,255,0.45);
}
.cta-input:focus {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: none;
  outline: none;
}

/* ===========================
   BLOGS SECTION
=========================== */
.blogs-section {
  background-color: var(--cream);
  padding: 70px 0;
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-body {
  padding: 20px;
}
.blog-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background-color: var(--cream-mid);
  border-top: 1px solid var(--border-light);
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 380px;
  font-weight: 300;
}
.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}
.footer-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.footer-value {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
}
.footer-divider {
  border-color: var(--border-light);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-line {
    height: 1px;
    background: #9a9a9a;
    width: 50%;
}
