/*
 Theme Name: Villa Punta del Cielo
 Author: Juan Carlos Caballero
 Version: 1.0
*/

:root {
    --font-site: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--font-site) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
small,
label,
span {
    font-family: var(--font-site) !important;
}

/* Navbar menu font size */
.navbar .navbar-nav .nav-link,
.navbar .dropdown-menu .dropdown-item {
    font-size: 13px !important;
}

.project-carousel .project-item {
    display: block;
    transition: transform .2s ease, box-shadow .2s ease;
}

.project-carousel .project-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.project-carousel .owl-stage-outer {
    padding: 14px 0;
}

.project-carousel .owl-stage {
    transition-timing-function: linear !important;
}

/* Mobile typography + hero video fixes */
@media (max-width: 991.98px) {
  /* Make large "display-*" headings mobile-friendly */
  .display-1 { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; line-height: 1.1; }
  .display-2 { font-size: clamp(2.0rem, 8vw, 3.0rem) !important; line-height: 1.1; }
  .display-3 { font-size: clamp(1.8rem, 7vw, 2.6rem) !important; line-height: 1.15; }
  .display-4 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; line-height: 1.2; }

  /* Homepage hero video: reduce vertical padding on mobile */
  .hero-video-content {
    padding: 56px 0 !important;
  }
}

@media (max-width: 575.98px) {
  /* Page header video hero: keep title readable on phones */
  .page-video-content {
    padding: 18px 0 !important;
  }
}