/* Bella Collina Mansion Mobile + Luxury Facelift
   CSS-only overrides. Keeps existing forms, API calls, booking links, galleries, and scripts intact. */

:root {
  --bella-navy: #080d22;
  --bella-cream: #fbf7ef;
  --bella-soft: #f4efe5;
  --bella-sage: #a5b092;
  --bella-sage-dark: #7f8c6c;
  --bella-gold: #c5a45d;
  --bella-ink: #202020;
  --bella-muted: #5f5f5f;
  --bella-radius: 22px;
  --bella-shadow: 0 22px 60px rgba(8, 13, 34, .14);
}

html { scroll-behavior: smooth; }
body {
  color: var(--bella-ink);
  background: var(--bella-cream);
  overflow-x: hidden;
}

body p,
.section-title-desc p,
.footer-info p,
.service-content p,
.about-content p,
.about-sec-content p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.85;
  color: #3f3f3f;
}

img, iframe, video { max-width: 100%; }

.container {
  max-width: 1240px;
}

/* Better section breathing room */
.about-section,
.about-us-area,
.service-area,
.gallery-area,
.wishes-area,
.testimonial-area,
.blog-area,
.contact-area,
.brand-area {
  position: relative;
}

.section-title,
.section-main-title,
.section-sub-title {
  overflow-wrap: anywhere;
}

.section-main-title h1,
.section-main-title h2,
.section-main-title h3,
.section-sub-title h1,
.breadcumb-content h4 {
  letter-spacing: .01em;
}

.section-title-desc[style],
.section-main-title h3[style],
.service-title[style] {
  max-width: 100%;
}

/* Header polish */
.lavewell_nav_manu {
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.header-btn a,
.slider-btn a,
.about-us-btn a,
.bella-hero-overlay a,
button,
input[type="submit"] {
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.header-btn a:hover,
.slider-btn a:hover,
.about-us-btn a:hover,
.bella-hero-overlay a:hover {
  transform: translateY(-2px);
}

/* Home hero: show the full video/image frame instead of cutting it on mobile */
.bella-hero-video {
  background:
    radial-gradient(circle at top left, rgba(197,164,93,.22), transparent 35%),
    linear-gradient(135deg, #050816 0%, #10172f 100%) !important;
  padding: clamp(92px, 8vw, 132px) 0 clamp(32px, 4vw, 54px) !important;
  margin: 0 !important;
}

.bella-hero-video-inner {
  width: min(1280px, 94vw) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #000 url("../images/meta.jpg") center center / contain no-repeat !important;
  box-shadow: 0 34px 90px rgba(0,0,0,.45) !important;
}

.bella-hero-video-inner iframe,
.bella-hero-video-inner video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

.bella-hero-video-inner video {
  object-fit: contain !important;
  background: #000 !important;
}

.bella-hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.34), rgba(0,0,0,.08)) !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.65);
}

/* Inner page hero/breadcrumbs: make text readable over images */
.breadcumb-area,
.lavewell-slider-bg,
.lavewell-slider-bg2,
.banner-area {
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  isolation: isolate;
}

.breadcumb-area::before,
.lavewell-slider-bg::before,
.lavewell-slider-bg2::before,
.banner-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,13,34,.76), rgba(8,13,34,.34), rgba(8,13,34,.70));
  z-index: -1;
}

.breadcumb-content h4,
.lavewell-slider-title,
h1.lavewell-slider-title,
.banner-title,
.banner-content h1 {
  color: #fff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

/* Image + card polish across the site */
.about-thumb img,
.service-thumb img,
.gallery__thumb img,
.blog-thumb img,
.single-wedding-box img,
.team-thumb img,
img.w-100 {
  border-radius: var(--bella-radius);
}

.about-thumb img,
.service-thumb img,
.gallery__thumb-box,
.single-service-box,
.single-wedding-box,
.blog-single-box,
.contact-info-box {
  box-shadow: var(--bella-shadow);
}

.single-service-box,
.single-wedding-box,
.blog-single-box,
.contact-info-box {
  border-radius: var(--bella-radius);
  overflow: hidden;
  background: rgba(255,255,255,.82);
}

/* Video rows currently have iframe padding inline. This removes the black-box squeeze. */
.video-16x9 iframe {
  padding: 0 !important;
}

/* Gallery pages: keep images elegant and responsive without giant blank areas */
#albumsContainer {
  width: min(1380px, 94vw);
  margin: 0 auto;
}

#albumsContainer .section-main-title h1,
#albumsContainer .section-main-title h3,
#albumsContainer h1.text-center {
  margin: clamp(34px, 6vw, 76px) auto clamp(18px, 3vw, 34px) !important;
  font-size: clamp(30px, 4vw, 56px) !important;
  line-height: 1.08 !important;
}

#albumsContainer .box > div,
#albumsContainer a,
#albumsContainer img.lazy-image {
  border-radius: 18px;
}

#albumsContainer img.lazy-image {
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

#albumsContainer a:hover img.lazy-image {
  transform: scale(1.035);
  filter: brightness(1.03);
}

/* Forms */
input,
select,
textarea,
.form-control {
  min-height: 46px;
  font-size: 16px !important;
  border-radius: 12px !important;
}

textarea.form-control { min-height: 120px; }

/* Footer */
.footer-area {
  overflow: hidden;
}

.footer-info a { word-break: break-word; }

@media (max-width: 991px) {
  .container {
    max-width: 94vw;
  }

  .row {
    --bs-gutter-x: 22px;
  }

  .section-main-title h1,
  .section-main-title h2,
  .section-main-title h3,
  .section-sub-title h1,
  .service-content h1,
  .service-title,
  h1.lavewell-slider-title {
    font-size: clamp(30px, 8vw, 46px) !important;
    line-height: 1.1 !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .section-title,
  .about-sec-content,
  .about-content,
  .service-content,
  .wishes-content,
  .contact-content {
    text-align: center !important;
  }

  .section-title-desc,
  .section-title-desc p,
  .about-sec-content p,
  .about-content p,
  .service-content p {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-section,
  .about-us-area,
  .service-area,
  .gallery-area,
  .wishes-area,
  .testimonial-area,
  .blog-area,
  .contact-area {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .about-section .about-thumb,
  .about-us-area .about-thumb,
  .service-thumb {
    margin: 0 auto 28px !important;
    text-align: center;
  }

  .about-thumb img,
  .service-thumb img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .about-us-btn {
    padding: 24px 0 0 !important;
    text-align: center !important;
  }

  .about-us-btn a,
  .header-btn a,
  .slider-btn a {
    width: min(100%, 330px);
    text-align: center;
  }

  .service-thumb[style],
  .service-thumb img[style] {
    width: 100% !important;
    height: auto !important;
  }

  .footer-area,
  .footer-title,
  .footer-info,
  .footer-single-item,
  .footer-single-item2 {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  body {
    background: #fffaf2;
  }

  .mobile-menu-area {
    z-index: 10000;
  }

  .mean-container .mean-bar {
    min-height: 70px;
    background: var(--bella-navy) !important;
    padding: 0 12px !important;
  }

  .mean-container a.meanmenu-reveal {
    top: 16px !important;
  }

  .mean-container .mean-nav ul li a {
    font-size: 15px !important;
    letter-spacing: .02em;
    padding: 14px 5% !important;
  }

  .bella-hero-video {
    padding: 74px 0 18px !important;
  }

  .bella-hero-video-inner {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.35) !important;
  }

  .bella-hero-overlay {
    padding: 20px !important;
    justify-content: flex-end !important;
  }

  .bella-hero-overlay h1 {
    font-size: clamp(25px, 8vw, 36px) !important;
    line-height: 1.08 !important;
    margin-bottom: 8px !important;
  }

  .bella-hero-overlay p {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }

  .bella-hero-overlay a {
    padding: 11px 18px !important;
    font-size: 13px !important;
  }

  .breadcumb-area {
    min-height: 240px !important;
    padding: 104px 0 52px !important;
    display: flex;
    align-items: center;
  }

  .breadcumb-content h4 {
    font-size: clamp(32px, 11vw, 48px) !important;
    line-height: 1.05 !important;
  }

  p,
  body p,
  .section-title-desc p,
  .footer-info p,
  .service-content p,
  .about-content p,
  .about-sec-content p {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .section-title-desc,
  .about-content,
  .about-sec-content,
  .service-content {
    width: 100% !important;
  }

  .about-section .row,
  .about-us-area .row,
  .service-area .row {
    row-gap: 26px;
  }

  .single-service-box,
  .single-wedding-box,
  .blog-single-box,
  .contact-info-box {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .video-row {
    gap: 14px !important;
  }

  .video-16x9 {
    border-radius: 16px !important;
    box-shadow: var(--bella-shadow);
  }

  /* Gallery: mobile Pinterest-style grid, not giant full-width blocks */
  #albumsContainer {
    width: calc(100vw - 24px) !important;
  }

  #albumsContainer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #albumsContainer [class*="grid-column-layout"] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  #albumsContainer .box,
  #albumsContainer [class^="layout"],
  #albumsContainer .one,
  #albumsContainer .two,
  #albumsContainer .three {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 0 !important;
    height: auto !important;
  }

  #albumsContainer .box > div,
  #albumsContainer [style*="height: 565px"],
  #albumsContainer [style*="height: 550px"],
  #albumsContainer [style*="height: 415px"],
  #albumsContainer [style*="height: 400px"],
  #albumsContainer [style*="height: 275px"],
  #albumsContainer [style*="height: 200px"] {
    height: 230px !important;
    padding: 0 !important;
  }

  #albumsContainer .box:nth-child(3n + 1) > div {
    height: 300px !important;
  }

  #albumsContainer img.lazy-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  #albumsContainer h1.text-center {
    margin: 42px auto 18px !important;
  }

  .footer-area {
    padding-top: 56px !important;
    padding-bottom: 34px !important;
  }

  .footer-shape,
  .footer-shape2,
  .about-shape,
  .service-shape,
  .service-shape2,
  .wedding-shape,
  .wedding-shape2,
  .counter-shape,
  .counter-shape2 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .bella-hero-video-inner {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
    border-radius: 14px !important;
  }

  .section-main-title h1,
  .section-main-title h2,
  .section-main-title h3,
  .section-sub-title h1,
  .service-content h1,
  .service-title {
    font-size: clamp(27px, 9vw, 38px) !important;
  }

  #albumsContainer [class*="grid-column-layout"] {
    gap: 9px !important;
  }

  #albumsContainer .box > div,
  #albumsContainer [style*="height: 565px"],
  #albumsContainer [style*="height: 550px"],
  #albumsContainer [style*="height: 415px"],
  #albumsContainer [style*="height: 400px"],
  #albumsContainer [style*="height: 275px"],
  #albumsContainer [style*="height: 200px"] {
    height: 190px !important;
  }

  #albumsContainer .box:nth-child(3n + 1) > div {
    height: 250px !important;
  }
}
