/*--------------------------------------------------------------
# CSS Custom Properties
--------------------------------------------------------------*/
:root {
  --gold:        #b8a07e;
  --gold-light:  rgba(184, 160, 126, 0.12);
  --gold-mid:    rgba(184, 160, 126, 0.35);
  --dark:        #1a1a1a;
  --text:        #888;
  --text-mid:    #666;
  --bg:          #ffffff;
  --bg-warm:     #f5f4f2;
  --border:      #e8e8e8;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.09);
  --shadow-lift: 0 16px 56px rgba(0, 0, 0, 0.13);
  --radius:      16px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.35s var(--ease);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", helvetica, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

h2 {
  color: var(--dark);
  font-weight: 700;
}

h4 {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

a {
  color: var(--dark);
  text-decoration: none !important;
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

p {
  margin: 0 0 20px;
  padding: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

::-moz-selection { background: var(--gold); color: #fff; }
::selection      { background: var(--gold); color: #fff; }

.paddsection {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*--------------------------------------------------------------
# Section Eyebrow / Labels
--------------------------------------------------------------*/
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  display: block;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 14px;
  margin: 0;
}

.section-subtitle a {
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

.section-subtitle a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: var(--transition);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: var(--transition);
  z-index: 997;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  top: -100%;
  border-bottom: 1px solid transparent;
}

#header.header-scrolled,
#header.header-inner-pages {
  top: 0;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
}

#header .logo a { color: var(--text); }
#header .logo img { max-height: 38px; }

@media (max-width: 992px) {
  #header { border: 0; }
}

/*--------------------------------------------------------------
# Navigation Menu — Desktop
--------------------------------------------------------------*/
.navbar { padding: 0; }

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li { position: relative; }

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  transition: var(--transition);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--gold);
}

/*--------------------------------------------------------------
# Navigation Menu — Mobile
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: var(--dark);
  font-size: 26px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition);
}

.mobile-nav-toggle.bi-x { color: #fff; }

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px; right: 16px; bottom: 16px; left: 16px;
  padding: 12px 0;
  border-radius: 20px;
  background-color: var(--bg);
  overflow-y: auto;
  transition: var(--transition);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 12px 24px;
  font-size: 15px;
  color: var(--dark);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--gold);
}

/*--------------------------------------------------------------
# Hero (unchanged — preserving all original hero styles)
--------------------------------------------------------------*/
#hero {
  background: url("../images/home-bg.jpg") repeat scroll center center / cover;
  height: 100vh;
  width: 100%;
}

#hero .hero-content {
  height: 100vh;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}

.hero-content p {
  font-size: 13px;
  letter-spacing: 3px;
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
}

.hero-content .list-social li {
  float: left;
  margin-right: 20px;
}

.hero-content .list-social li i {
  color: #fff;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  background: var(--bg-warm);
  padding-top: 120px;
  padding-bottom: 100px;
}

.about-img-wrap {
  position: relative;
  padding-left: 16px;
  padding-bottom: 16px;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 2px solid var(--gold-mid);
  border-radius: 6px;
  pointer-events: none;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .about-img-wrap img {
    height: 480px;
    object-fit: cover;
    object-position: top center;
  }
}

.about-descr {
  padding-left: 16px;
}

.about-descr .p-heading {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-descr .separator {
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 991px) {
  .about-img-wrap::before { display: none; }
  .about-img-wrap { padding: 0; }
  .about-descr { padding-left: 0; margin-top: 40px; }
}

/*--------------------------------------------------------------
# Stats / Services Section
--------------------------------------------------------------*/
#services {
  background: var(--bg);
  padding: 80px 0 90px;
}

#services .section-eyebrow {
  margin-bottom: 40px;
}

/* --- Desktop Bubble Cards --- */
.stats-grid {
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-card {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 24px var(--gold-light);
  transition: var(--transition);
  cursor: default;
  text-align: center;
  padding: 16px;
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(184, 160, 126, 0.22);
}

.stat-card i {
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  display: block;
  margin: 0;
}

.stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  display: block;
  margin: 0;
}

/* --- Mobile Swiper --- */
.services-block {
  text-align: center;
  padding: 32px 20px;
}

.services-block span {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

.services-block i {
  font-size: 44px;
  color: var(--gold);
  line-height: 44px;
}

.services-slider .swiper-pagination {
  margin-top: 24px;
  position: relative;
}

.services-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--border);
  opacity: 1;
  border: none;
}

.services-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
#portfolio {
  background: var(--bg-warm);
  padding-bottom: 60px;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 48px;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
  background: var(--bg);
}

#portfolio #portfolio-flters li:hover {
  color: var(--gold);
  border-color: var(--gold-mid);
}

#portfolio #portfolio-flters li.filter-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

#portfolio .portfolio-item {
  margin-bottom: 0;
}

.portfolio-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-overlay i {
  font-size: 30px;
  color: #fff;
  transform: scale(0.75);
  transition: var(--transition);
}

.portfolio-item a:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item a:hover .portfolio-overlay i {
  transform: scale(1);
}

.portfolio-item a:hover img {
  transform: scale(1.07);
}

/* Show More button */
.portfolio-show-more-wrap {
  padding: 16px 0 40px;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-show-more:hover {
  color: var(--gold);
  border-color: var(--gold-mid);
  background: var(--gold-light);
}

.btn-show-more i {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}

.btn-show-more:hover i {
  transform: translateY(3px);
}

/*--------------------------------------------------------------
# Music Videos
--------------------------------------------------------------*/
#journal {
  background: var(--bg-warm);
  padding-bottom: 80px;
}

.video-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.video-card .video-wrapper {
  border-radius: 0;
}

.video-card-body {
  padding: 16px 20px 20px;
}

.video-card-body h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.video-card-body h4 a {
  color: var(--dark);
  transition: var(--transition);
}

.video-card-body h4 a:hover {
  color: var(--gold);
}

.video-views {
  font-size: 11px;
  color: var(--text);
  display: block;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

.video-views:empty {
  display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background: var(--dark);
  padding: 120px 0;
}

#contact .section-eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}

#contact h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}

.contact-email {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(184, 160, 126, 0.35);
  padding-bottom: 5px;
  transition: var(--transition);
}

.contact-email:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
}

@media (max-width: 767px) {
  #contact h2 {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111;
  padding: 50px 0;
}

#footer .socials-media {
  width: 100%;
  margin-bottom: 20px;
}

#footer .socials-media ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .socials-media ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #555;
  border-radius: 50%;
  transition: var(--transition);
}

#footer .socials-media ul li a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

#footer p {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #444;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.credits {
  font-size: 12px;
  color: #444;
}

.credits a {
  color: #555;
}

.credits a:hover {
  color: var(--gold);
}

/*--------------------------------------------------------------
# Video Embed
--------------------------------------------------------------*/
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .paddsection {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  #about {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .paddsection {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #about {
    padding-top: 70px;
  }

  #services {
    padding: 60px 0 70px;
  }

  #contact {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }

  #footer .socials-media ul li {
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  #contact h2 {
    font-size: 32px;
  }
}
