/* =========================================
   Art of Rose — Cleaned CSS (no AOS/Lightbox2)
   Bootstrap + Swiper only
   by Dang
   https://juldah.website
   ========================================= */

/*---------------------------------------
  CSS VARIABLES
----------------------------------------*/
:root {
  --white: #fff;
  --gold: #ffd700;
  --gold-2: #ffc300;
  --rose-red: #b90018;
  --bg: #121212; /* page bg */
  --panel: #181818; /* section bg */
  --ink: #eaeaea; /* body text */
  --muted: #bababa; /* secondary text */
  --title: #ffd700;

  --font-body: "Noto Sans JP", sans-serif;

  --h1: 72px;
  --h2: 42px;
  --h3: 36px;
  --h4: 32px;
  --h5: 24px;
  --h6: 22px;
  --p: 20px;
}

/*---------------------------------------
  BASE / RESET
----------------------------------------*/
html,
body {
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  position: relative;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.25s;
}
a:hover {
  color: var(--rose-red);
}
::selection {
  background: #000;
  color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--title);
  line-height: 1.15;
}
h1 {
  font-size: var(--h1);
}
h2 {
  font-size: var(--h2);
}
h3 {
  font-size: var(--h3);
}
h4 {
  font-size: var(--h4);
}
h5 {
  font-size: var(--h5);
}
h6 {
  font-size: var(--h6);
}
p {
  font-size: var(--p);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.text-secondary-white-color {
  color: #fff;
}

/* Fancy headings (brand look) */
h2,
h3,
.blog-section-title,
.portfolio-title,
.news-title,
.section-title {
  font-family: "Allura", cursive !important;
  font-weight: 700 !important;
  letter-spacing: 1.1px;
  color: #ffe49d !important;
}

/*---------------------------------------
  VIDEO HERO
----------------------------------------*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  z-index: -100;
}
.custom-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  inset: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}
.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

/* Gold script logo/title */
.hero-gold,
.hero-title {
  font-family: "Great Vibes", cursive !important;
  font-size: 5rem !important;
  font-weight: 700 !important;
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    #fffbe6 10%,
    #ffd700 40%,
    #f9c300 70%,
    #fffbe6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-shadow: 0 2px 8px #9e8600aa, 0 0 32px #ffd70055, 0 4px 2px #fff3,
    2px 1px 0 #fff3, 0 2px 8px #0004;
}
.hero-subtitle {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 6px #000a;
}
.hero-stroke {
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px #fff5, 0 1px 3px #ffd70044;
  border-bottom: 2px solid #ffd70077;
  padding: 0 2px;
}

@media (max-width: 991px) {
  .hero-gold,
  .hero-title {
    font-size: 2.1rem !important;
  }
  h2,
  h3,
  .blog-title,
  .blog-section-title,
  .portfolio-title,
  .news-title,
  .section-title {
    font-size: 1.3rem !important;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  .hero {
    height: 100vh;
  }
  .custom-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }
  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

/*---------------------------------------
  NAVBAR (Glass)
----------------------------------------*/

/* === Fixed + auto-hide navbar === */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transform: translateY(0);
  transition: transform 0.25s ease;
}
#site-header.nav-hide {
  transform: translateY(-110%);
} /* hide on scroll down */

/* Full-width glass bar; iwas “nasa gilid” at “dalawang container” look */
#site-header .navbar {
  width: 100%;
  background: rgba(26, 26, 26, 0.7); /* glass look */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border-radius: 0; /* remove big rounded when fixed */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; /* not too tall */
}

/* Logo size (mas maliit) */
#site-header .navbar-brand img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 992px) {
  #site-header .navbar-brand img {
    height: 46px;
  }
}

/* Offset body para di matakpan ang content (we'll update exact height via JS too) */
body {
  padding-top: 80px;
}

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding: 5px 0;
}
.glass-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.17) !important;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-radius: 0 0 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  z-index: 100;
}
.logo-img,
.glass-navbar .navbar-brand img {
  filter: none !important;
  height: 64px;
  width: auto;
}
.glass-navbar .navbar-brand {
  color: var(--gold) !important;
  font-size: 2.6rem;
  letter-spacing: 2px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 15px;
}
.navbar-nav .nav-link,
.glass-navbar .nav-link,
.navbar-brand {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  letter-spacing: 1.1px;
  font-size: 1.15rem;
  font-weight: 700;
}
.navbar-nav .nav-link {
  color: #eaeaea;
  position: relative;
}
.glass-navbar .nav-link {
  color: var(--gold) !important;
  text-shadow: 0 1px 2px #000b;
  transition: color 0.18s, text-shadow 0.18s;
}
.glass-navbar .nav-link:hover,
.glass-navbar .nav-link:focus,
.glass-navbar .nav-link.active {
  color: #fff !important;
  text-shadow: 0 2px 6px #ffd700cc, 0 1px 2px #1117;
}

/* remove decorative dot/underline coming from template */
.glass-navbar .nav-link:after {
  display: none !important;
}
.navbar-toggler {
  border: 0;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 35px;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  background: #222;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}
.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  position: absolute;
  right: 0;
  left: 0;
  background: #222;
  width: 30px;
  height: 2px;
  content: "";
}
.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}
.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  ABOUT / TESTIMONIAL STRIP
----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}
.team-thumb.gold-card {
  background: rgba(24, 24, 24, 0.89);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 22px #000b;
  border-bottom: 3px solid var(--gold);
  min-height: 110px;
  max-height: 190px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 32px 18px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  overflow: visible;
  backdrop-filter: blur(2.5px);
  transition: max-height 0.28s;
}
.client-name {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 1px;
}
.star-rating {
  margin-bottom: 2px;
}
.star-rating .star {
  color: var(--gold);
  font-size: 1.07rem;
  margin-right: 1.5px;
}
.client-role {
  color: #fff;
  font-size: 1rem;
  margin: 0.2rem 0;
  font-weight: 400;
}
.client-desc {
  color: #eaeaea;
  font-style: italic;
  font-size: 0.94rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-thumb.gold-card:hover {
  max-height: 250px;
}
.team-thumb.gold-card:hover .client-desc {
  white-space: normal;
  text-overflow: unset;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(1.8) drop-shadow(0 0 4px #ffd70088);
  background-color: #ffd700bb !important;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: #222;
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}
@media (max-width: 991px) {
  .team-thumb.gold-card .client-desc {
    max-height: 160px !important;
    opacity: 1 !important;
    margin-top: 8px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    transition: none !important;
    display: block !important;
  }
}

/*---------------------------------------
  ROSE STATS
----------------------------------------*/
.rose-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.rose-stat {
  background: #181818cc;
  border-radius: 9px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 8px 18px;
  font-size: 1.12rem;
  font-weight: 500;
  box-shadow: 0 1px 8px #0002;
}
.stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  margin-right: 12px;
  color: var(--gold);
  min-width: 48px;
  display: inline-block;
}
.stat-label {
  color: #fff;
  font-size: 1.01rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/*---------------------------------------
  PORTFOLIO / SWIPER CARDS
----------------------------------------*/
.nav-tabs .nav-link {
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.nav-tabs .nav-link.active {
  color: var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
}

.testimonial-card {
  background: rgba(32, 32, 32, 0.92);
  border-radius: 22px;
  border: 1.5px solid #383838;
  box-shadow: 0 4px 24px #0005, 0 2px 8px #ffd70022;
  padding: 18px 18px 14px;
  margin: 18px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px #ffd70033, 0 2px 12px #0008;
  transform: translateY(-4px) scale(1.03);
}

.portfolio-thumb-img {
  border-radius: 14px;
  box-shadow: 0 1px 8px #0007;
  width: 210px;
  height: 210px;
  object-fit: cover;
  margin-bottom: 12px;
  background: #111;
}
.portfolio-info {
  color: #e0e0e0;
}
.portfolio-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.portfolio-medium {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 0;
}
.portfolio-description {
  color: var(--muted);
  font-size: 0.97rem;
  margin: 2px 0 0;
  line-height: 1.4;
  font-style: italic;
  padding: 0 10px;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  fill: var(--gold) !important;
  stroke: var(--gold) !important;
  border-radius: 50%;
  background: rgba(32, 32, 32, 0.4);
  box-shadow: 0 2px 18px #ffd70044, 0 2px 8px #0002;
  width: 48px;
  height: 48px;
  z-index: 1001;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ffd700cc;
  color: #232323 !important;
  box-shadow: 0 4px 24px #ffd70099, 0 2px 12px #0008;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--gold) !important;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px #0009;
}

/* Order buttons (Shop + Digital tab) */
.btn-order-now,
.btn.btn-warning {
  background: var(--gold-2) !important;
  color: #181818 !important;
  border: none !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  transition: background 0.2s, color 0.2s, transform 0.06s;
}
.btn-order-now:hover,
.btn.btn-warning:hover {
  background: #bfa700 !important;
  color: #fff !important;
}
.btn-order-now:active,
.btn.btn-warning:active {
  transform: translateY(1px);
}

/* Ensure shop cards fill height & keep one-per-row on phones (Bootstrap already sets col-12 at xs) */
.card.h-100 {
  background: #202020;
  border: 1px solid #333;
  border-radius: 18px;
  color: #ddd;
}
.card .portfolio-title {
  font-family: "Allura", cursive;
  font-size: 1.5rem;
  color: #ffe49d;
}

/*---------------------------------------
  NEWS / UTILITIES (kept minimal)
----------------------------------------*/
.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}
.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------------------
  MEDIA TWEAKS
----------------------------------------*/
@media (max-width: 575.98px) {
  /* one card per row — already col-12, but tighten paddings */
  .testimonial-card {
    padding: 14px;
  }
  .portfolio-thumb-img {
    width: 100%;
    height: 320px;
  }
}

/* --------------------------------------
   REMOVED:
   - AOS selectors (.aos-*, [data-aos]) ➜ no AOS
   - Lightbox2 selectors (#lightboxOverlay, .lightbox, .lb-*) ➜ no Lightbox2
   - Unused/duplicate navbar underline + bullets from template
   -------------------------------------- */
/* ==== PATCH: bring back color accents & spacing ==== */

/* Spacing helpers (used sa sections) */
.section-padding {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Gold accent utilities */
.text-gold {
  color: #ffd700 !important;
}
.text-gold-2 {
  color: #ffc300 !important;
}
.bg-panel {
  background: #181818 !important;
}
.bg-deeper {
  background: #0f0f0f !important;
}
.border-gold {
  border-color: #ffd700 !important;
}

/* Headline accents (keeps your brandy feel) */
.section-title,
.blog-section-title,
.portfolio-title,
.news-title {
  color: #ffe49d !important;
  text-shadow: 0 1px 6px #0008;
}

/* Links a bit brighter for contrast on dark */
a,
a:visited {
  color: #ffd700;
}
a:hover {
  color: #b90018;
}

/* Navbar active underline for better affordance */
.glass-navbar .nav-link.active,
.glass-navbar .nav-link:hover {
  position: relative;
}
.glass-navbar .nav-link.active::after,
.glass-navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 2px;
  background: #ffc300;
  border-radius: 2px;
}

/* Card polish (shop + portfolio) */
.card.h-100 {
  background: linear-gradient(180deg, #202020, #171717);
  border: 1px solid #2a2a2a;
  color: #ddd;
}
.card .portfolio-title {
  color: #ffe49d;
  text-shadow: 0 1px 4px #0006;
}

/* Blog buttons (if any) */
.btn-outline-warning {
  color: #ffc300;
  border-color: #ffc300;
}
.btn-outline-warning:hover {
  background: #ffc300;
  color: #121212;
}

/* --- BLOG TITLES: bring back cursive + gold --- */
.blog-card-title,
.blog-title,
.blog-section-title,
.section-title,
.news-title,
.portfolio-title {
  font-family: "Allura", cursive !important;
  font-weight: 700 !important;
  letter-spacing: 1.1px !important;
  color: #ffe49d !important;
}

/* BLOG CARD THEME OVERRIDE */
.news .card,
#blogs .card,
.blog-list .card {
  /* sakop homepage at /Blog/blogs.html */
  background: #202020 !important;
  border: 1px solid #383838 !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 24px #0006, 0 2px 8px #ffd70022 !important;
  color: #d8d8d8 !important;
}

#blogs .card-title,
.news .card-title,
.blog-list .card-title {
  font-family: "Allura", cursive !important;
  color: #ffd700 !important;
  font-weight: 700 !important;
  letter-spacing: 0.7px;
}

/* meta/date + paragraph */
#blogs small,
.news small,
.blog-list small,
#blogs .card-text,
.news .card-text,
.blog-list .card-text {
  color: #d8d8d8 !important;
}

/* “Read More” button visibility */
#blogs .btn,
.news .btn,
.blog-list .btn {
  background: #ffc300 !important;
  color: #181818 !important;
  border: 2px solid #ffc300 !important;
  font-weight: 700;
  border-radius: 12px;
}
#blogs .btn:hover,
.news .btn:hover,
.blog-list .btn:hover {
  background: #bfa700 !important;
  color: #fff !important;
}

/* --- Blog card titles readability on dark bg --- */
.card .blog-card-title,
.card h5.blog-card-title {
  margin-bottom: 6px;
  line-height: 1.1;
}

/* --- Blog snippets readability on dark bg --- */
.card .card-text,
.card small,
.card .text-muted {
  color: #eaeaea !important;
}

/* --- Make "Read More" / "Order" buttons readable --- */
.btn-warning,
.card .btn.btn-warning,
.btn-order-now {
  background: #ffc300 !important;
  color: #111 !important;
  border: 2px solid #ffc300 !important;
  font-weight: 700;
  border-radius: 12px;
}

.btn-warning:hover,
.card .btn.btn-warning:hover,
.btn-order-now:hover {
  background: #bfa700 !important;
  border-color: #bfa700 !important;
  color: #fff !important;
}

/* --- Navbar pill glow tweak (optional, cleaner on dark) --- */
.glass-navbar .nav-link {
  color: #ffd700 !important;
}
.glass-navbar .nav-link:hover,
.glass-navbar .nav-link:focus,
.glass-navbar .nav-link.active {
  color: #ffffff !important;
  text-shadow: 0 2px 6px #ffd700cc, 0 1px 2px #1117;
}

/* --- Blog grid spacing on mobile (optional UX polish) --- */
@media (max-width: 576px) {
  .card.blog-card {
    margin-bottom: 18px;
  }
}

/* --- Shop cards responsive (Bootstrap col-12) --- */
@media (max-width: 576px) {
  #shop .col-12.col-sm-6.col-lg-4 {
    width: 100%;
  }
}

/* MAP SECTION */
#contact {
  padding-bottom: 28px;
} /* breathing room bago footer */

#contact iframe {
  filter: grayscale(100%) saturate(0.85) brightness(0.9) contrast(1.05);
  border-radius: 12px;
  overflow: hidden;
}

/* Footer or dark blocks text */
.muted {
  color: #bababa !important;
}

/* FOOTER */
.site-footer {
  background: #0f0f0f;
  color: #eaeaea;
  padding: 36px 0 24px;
  border-top: 1px solid #2a2a2a;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto; /* address | links | links | socials */
  gap: 18px 32px;
  align-items: start;
}

.site-footer h4 {
  color: #ffd700;
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 6px 0;
}

.site-footer a {
  color: #eaeaea;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffd700;
}

.site-footer .copyright {
  border-top: 1px solid #262626;
  margin-top: 18px;
  padding-top: 12px;
  font-size: 0.95rem;
  color: #cfcfcf;
}

/* optional: icons column spacing */
.site-footer .socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer .socials a {
  color: #ffd700;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.site-footer .socials a:hover {
  color: #b90018;
}
