/* FONTS */

@font-face {
  font-family: 'MuseoModerno';
  src: url('fonts/MuseoModerno-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'MuseoModerno';
  src: url('fonts/MuseoModerno-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'MuseoModerno';
  src: url('fonts/MuseoModerno-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* ── Variables ── */
:root {
  --bg: #0d0d0b;
  --surface: #141412;
  --surface2: #1c1c19;
  --gold: #c9a84c;
  --gold-lt: #e2c97e;
  --gold-dk: #8a6a2a;
  --text: #e8e4d8;
  --text-dim: #8a8678;
  --text-muted: #4a4840;
  --white: #faf8f3;
  --ff-display: 'MuseoModerno', sans-serif;
  --ff-ui: 'MuseoModerno', sans-serif;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}



/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Helpers ── */
.section-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

/* ═════ NAV ═════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(13, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}



.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFF;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}


.lang-flags {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: border-color 0.25s, transform 0.2s, opacity 0.25s;
  opacity: 0.55;
  overflow: hidden;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.lang-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.lang-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

.lang-btn.active {
  border-color: var(--gold);
  opacity: 1;
  width: 38px;
  height: 38px;
}

/* Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  object-position: center;
  object-fit: contain;
}



/* ══════════ MOI ══════════ */
.moi {
  display: flex;
  height: 100vh;
  align-items: stretch;
  overflow: hidden;
}

.moi-text {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  letter-spacing: 0.2rem;
 background-color: black;
 padding-top: 7rem;
}
.moi-text img{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: 160px;
  margin-bottom: 2rem;
}

.moi-bio {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 2rem;
}

.moi-bio:last-child {
  margin-bottom: 0;
}

.moi-image {
  flex: 0 0 35%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
}

.moi-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.moi-img-frame img {
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.moi-image:hover .moi-img-frame img {
  transform: scale(1.04);
}



/* ══════════ SERVICES ══════════ */
.services {
  background: var(--bg);
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.services-grid {
  display: flex;
  gap: 0;
  height: 100%;
}

.services-col {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.services-item {
  position: relative;
  width: 100%;
  height: 100%;
}


.services-item img {
  filter: brightness(0.90) saturate(0.7);
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease);
}


.services-center-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
  transition: opacity 0.35s;
  pointer-events: none;
}


.services-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 11, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 3;
}

.services-hover-overlay p {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}

/* Hover state */
.services-col:hover .services-item img {
  filter: brightness(0.38) saturate(0.5);
  transform: scale(1.04);
}

.services-col:hover .services-center-label {
  opacity: 0;
}

.services-col:hover .services-hover-overlay {
  opacity: 1;
}

/* ══════════ MULTIMEDIA ══════════ */
.multimedia {
  background: var(--surface);
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* youtube/spotify */
.multimedia-duo {
  display: flex;
  gap: 3px;
  flex: 0 0 50%;
}

.duo-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 50% !important;
}

.duo-item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.duo-item:hover img {
  transform: scale(1.04);
}


.duo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  bottom: 14%;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  font-size: clamp(2rem, 1.2vw, 0.95rem);
  color: #fff;
  letter-spacing: 0.15em;

}

.duo-label-two {
  position: absolute;
  bottom: 0;
  left: 0;
  bottom: 14%;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  font-size: clamp(2rem, 1.2vw, 0.95rem);
  color: black;
  letter-spacing: 0.15em;
}

.duo-item:hover img {
  transform: scale(1.04);
}

/* Carrusel */

.carousel-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 2rem;
}

.carousel-stage {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* previews */
.carousel-peek {
  flex: 0 0 15%;
  aspect-ratio: 1/1;
  overflow: hidden;
  opacity: 0.45;
  transform: scale(0.88);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  cursor: pointer;
  border-radius: 2px;
}

.carousel-peek img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-peek:hover {
  opacity: 0.65;
}

/* slide central */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  flex: 0 0 25%;
  aspect-ratio: 1/1;
  background: var(--bg);
  border-radius: 2px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.carousel-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.35);
}

/* ══════════ CONTACT ══════════ */

/* ── LAYOUT SECTION  ── */
.contact {
  display: flex;
  height: 100vh;
  align-items: stretch;
  overflow: hidden;


}

.contact-imagen {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.contact-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── FORM SIDE ── */
.contact-form-wrap {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem;
  background: #ffffff;
  overflow-y: auto;
}

.contact-form-wrap h2 {
  font-family: var(--ff-ui);
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form-wrap h3 {
  font-family: var(--ff-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── FORM ELEMENTS ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.form-group.full {
  flex: 1 1 100%;
  text-align: center;
}

label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  font-family: var(--ff-ui);
  text-transform: none;
  letter-spacing: 0.25rem;
}

input[type="text"],
input[type="email"],
textarea {
  background: #e8ebb8;
  border: none;
  border-radius: 0;
  color: #111;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  padding: 0.65rem 0.75rem;
  outline: none;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  background: #dde08a;
}

input::placeholder,
textarea::placeholder {
  color: transparent;
}

textarea {
  min-height: 120px;
}

/* Autofill fix */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #e8ebb8 inset;
  -webkit-text-fill-color: #111;
}

/* ── CHECKBOXES ── */
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  font-family: var(--ff-ui);
  margin: 0;
}

.check-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  transition: none;
}

.check-option:hover {
  border: none;
  background: none;
}

.check-option input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e8ebb8;
  border: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.check-option input:checked+.check-label+.check-box {
  background: #8a9a2a;
}

.check-option input:checked~.check-box::after {
  display: none;
}

.check-option:has(input:checked) {
  border: none;
  background: none;
}

.check-label {
  font-size: 1rem;
  color: #111;
  font-family: var(--ff-ui);
  font-weight: 700;
}

/* ── SUBMIT ── */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: #111;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.btn-submit:hover {
  background: #333;
  transform: none;
}

.btn-arrow {
  font-size: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: #8a9a2a;
  min-height: 1.2rem;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: var(--gold);
  border: none;
  cursor: pointer;
  color: var(--bg);
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
  min-width: 200px;
}

.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(5px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gold);
  min-height: 1.2rem;
  transition: opacity 0.3s;
}

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--text-muted);
  padding-left: 2rem;
  padding-right: 2rem;
  display: grid;
  grid-template-columns: 0.6fr 1.7fr 0.6fr;
  align-items: center;
  position: relative;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #FFF;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  transition: transform 0.15s, opacity 0.15s;
}

.social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.social-icons img {
  display: block;
  object-fit: contain;
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═════ responsive ═════ */


@media (max-width: 1024px) {

  .hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-img {
    content: url('../img/BO_heromobile.png');
  }

  hero-bg {
    height: 100vh;
  }

  .moi {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .moi-text {
    flex: none;
      padding: 4rem 2rem;
    padding-top: 7rem;
  }

  .moi-image {
    flex: none;
    height: 40vh;
  }

  .contact {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .contact-imagen {
    flex: none;
    height: 40vh;
  }

  .contact-form-wrap {
    flex: none;
    padding: 4rem 3rem;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .carousel-wrapper {
    flex: 0 0 50%;
  }

  .carousel-peek {
    flex: 0 0 12%;
  
  
  }

  .duo-label {
  position: absolute;
  bottom: 0;  
  left: 0;
  bottom: 5%;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  font-size: clamp(2rem, 1.2vw, 0.95rem);
  color: #fff;
  letter-spacing: 0.15em;
 
}
.duo-label-two {
  position: absolute;
  bottom: 0;  
  left: 0;
  bottom: 5%;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  font-size: clamp(2rem, 1.2vw, 0.95rem);
  color: black;
  letter-spacing: 0.15em;
}

.duo-item img{
  height: 40svh;
}
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .nav-right {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13, 13, 11, 0.97);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    transform: translateY(-120%);
    transition: transform 0.5s var(--ease);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .nav-right.open {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-img {
    content: url('../img/BO_heromobile.png');
  }


  .services {
    height: auto;
  }

  .services-grid {
    flex-direction: column;
    height: auto;
  }

  .services-col {
    flex: none;
    height: 50svw;
  }

  .multimedia {
    height: auto;
  }

  .multimedia-duo {
    flex-direction: column;
    flex: none;
  }

  .duo-item {
    height: 40svw;
  }

  .carousel-wrapper {
    flex: 0 0 60%;
  }

  .carousel-peek {
    flex: 0 0 10%;
  }

  .moi-text {
    padding: 4rem 2rem;
    padding-top: 7rem;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-copyright {
    font-size: 1rem;
    padding-bottom: 3rem;
  }

  .footer-logo a img {

    width: 200px;

  }

  .social-icons a img {
    width: 80px;
  }

  .form-row {
    flex-direction: column;
  }

  .check-options {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .services {
    height: auto;          
    overflow: visible;
  }

  .services-grid {
    flex-direction: column; 
  }

  .services-col {
    height: 33svh;          
    min-height: 120px;      
  }

  .services-item img {
    object-fit: cover;
    object-position: center 20%;
    width: 100%;
    height: 100%;
  }

  .services-center-label {
    font-size: clamp(1rem, 5vw, 1.2rem);   
    letter-spacing: 0.15em;                 
  }

  .services-hover-overlay {
    padding: 1.25rem;
  }

  .services-hover-overlay p {
    font-size: clamp(0.8rem, 3.5vw, 1rem); 
    line-height: 1.4;
  }
}