/* ============================================================
   ROOT VARIABLES
   ------------------------------------------------------------
   Central colour system so you can tweak the entire theme
   from ONE place without hunting through the file.
   ============================================================ */
:root{
  --dark:#0b0b0c;                /* Main background (almost black) */
  --light:#ffffff;               /* Primary text colour */
  --accent:#c9a46b;              /* Gold accent (LYP style) */
  --glass:rgba(255,255,255,0.08);/* Subtle glass border */
  --glass-2:rgba(255,255,255,0.12);
}

/* ============================================================
   GLOBAL RESET
   ------------------------------------------------------------
   Removes browser defaults and ensures consistent sizing.
   ============================================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ============================================================
   BODY BASE STYLES
   ------------------------------------------------------------
   Global font, background, and text colour.
   ============================================================ */
body{
  font-family:'Inter',sans-serif;
  background:var(--dark);
  color:var(--light);
  overflow-x:hidden; /* Prevents horizontal scroll from animations */
}

/* ============================================================
   NAVBAR
   ------------------------------------------------------------
   Style, logo image, and text colour.
   ============================================================ */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  height: 80px;              /* 👈 controls logo height */
  padding: 0 60px;           /* remove vertical padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}


.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 1000%;        /* 👈 fill navbar height */
  max-height: 140%;    /* 👈 safety cap (adjust if needed) */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}


.navbar nav a {
  margin-left: 30px;
  color: white;
  text-decoration: none;
  font-weight: 300;
}

.nav-cta {
  padding: 8px 18px;
  border: 1px solid var(--accent);
  border-radius: 30px;
}

@media (max-width: 768px) {
  .navbar {
    height: 68px;
    padding: 0 24px;
  }

  .logo img {
    max-height: 52px;
  }
}

/* BUTTONS */

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 26px;
  border-radius: 40px;
  border: 1px solid var(--accent);

  font-size: 0.9rem;
  text-decoration: none;
  color: var(--light);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-btn:hover {
  background: var(--accent);
  color: #0b0b0c;
  transform: translateY(-2px);
  box-shadow: #c9a36b81;
}

.lcg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 26px;
  border-radius: 40px;
  border: 1px solid #6ba8c9;

  font-size: 0.9rem;
  text-decoration: none;
  color: var(--light);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lcg-btn:hover {
  background: #6ba8c9;
  color: #0b0b0c;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(107,168,201,0.4);
}


/* ============================================================
   HERO SECTION (FULL SCREEN)
   ------------------------------------------------------------
   Main cinematic opening section.
   ============================================================ */
   
   .mtc-title-logo {
  height: 150px; /* 🔴 change logo size here */
  width: auto;
}
.mtc-hero{
  height:100vh;                 /* Full viewport height */
  position:relative;
  background-image:url("/static/img/mtc-hero2.webp");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center 35%;
}

/* Dark overlay for readability over image */
.mtc-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.92)
  );
}

/* Content container inside hero */
.mtc-hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 8vw;
  max-width:1200px;
}

/* Small uppercase line above title */
.mtc-eyebrow{
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-size:0.78rem;
  opacity:0.75;
  margin-bottom:18px;
}

/* Main hero heading */
.mtc-hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.6rem,5.2vw,5.3rem);
  line-height:1.08;
}

/* Gold highlight inside heading */
.mtc-hero-title span{
  color:var(--accent);
}

/* Subtitle under main heading */
.mtc-hero-subtitle{
  margin:18px 0 26px;
  font-size:1.05rem;
  max-width:680px;
  opacity:0.85;
}

/* =========================
   SCROLL DOWN ARROW
   ========================= */

.scroll-mtc-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 32px;
  text-decoration: none;

  color: var(--accent);/* 🔴 CHANGE ARROW COLOR HERE */

  animation: bounce 1.6s infinite;
  opacity: 0.85;

  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}


/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* ============================================================
   QUICK FACT CHIPS (Date / Venue / Accommodation)
   ============================================================ */
.mtc-quickfacts{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:8px 0 26px;
}

/* Individual info chip */
.mtc-chip{
  border:1px solid var(--glass);
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
  padding:12px 14px;
  border-radius:14px;
  min-width:190px;
}

.mtc-chip-label{
  display:block;
  font-size:0.75rem;
  opacity:0.7;
  margin-bottom:4px;
  letter-spacing:0.06em;
}

.mtc-chip-value{
  display:block;
  font-size:0.95rem;
}

/* ============================================================
   HERO BUTTONS
   ============================================================ */
.mtc-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Base button style */
.mtc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:60px;
  padding:12px 26px;
  font-weight:600;
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

/* Primary gold-outline button */
.mtc-btn-primary{
  background:transparent;
  color:var(--light);
  border:1px solid var(--accent);
}

.mtc-btn-primary:hover{
  transform:translateY(-2px);
  background:rgba(201, 163, 107, 0.77);
}

/* Secondary glass button */
.mtc-btn-ghost{
  background:rgba(255,255,255,0.06);
  color:var(--light);
  border:1px solid var(--glass);
}

.mtc-btn-ghost:hover{
  transform:translateY(-2px);
  border-color:var(--accent);
}

/* Larger CTA button (used later) */
.mtc-btn-big{
  padding:14px 34px;
  font-size:1.05rem;
}

/* Scroll hint text */
.mtc-scrollhint{
  margin-top:30px;
  font-size:0.85rem;
  opacity:0.65;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.mtc-section{
  padding:110px 0;
  text-align:center;
    background:linear-gradient(
        to bottom,
        #c9a36b00,
        #c9a46b,
        #c9a36b00
    );
}

/* Darker variant section */
.mtc-section-dark{
  background-image:url("/static/img/mtc-hero3.webp");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center 35%;
}

/* Centered content container */
.mtc-container{
  width:min(1100px, 88vw);
  margin:0 auto;
  border:1px solid var(--glass);
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(2px);
  padding:12px 14px;
  border-radius:14px;
  min-width:190px;
}

/* Section heading */
.mtc-h2{
  font-family:'Playfair Display',serif;
  font-size:2.7rem;
  margin-bottom:26px;
}

.mtc-h2 span{
  color:var(--accent);
}

/* Standard paragraph text */
.mtc-text{
  max-width:740px;
  margin:0 auto;
  opacity:0.82;
  line-height:1.75;
}

/* ============================================================
   CARD GRID
   ============================================================ */
.mtc-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:54px;
}

/* Base card */
.mtc-card{
  padding:34px 26px;
  border:1px solid var(--glass);
  background:rgba(255,255,255,0.03);
  transition:transform .35s ease, border-color .35s ease;
  text-align:left;
}

.mtc-card:hover{
  transform:translateY(-10px);
  border-color:var(--accent);
}

.mtc-card h3{
  font-family:'Playfair Display',serif;
  font-size:1.35rem;
  margin-bottom:10px;
}

.mtc-card h3 span{
  color:var(--accent);
}

.mtc-card p{
  opacity:0.8;
  line-height:1.7;
}

/* Accent card (used for pricing) */
.mtc-card-accent{
  background:linear-gradient(
    180deg,
    rgba(201,164,107,0.10),
    rgba(255,255,255,0.02)
  );
}

/* Pricing text */
.mtc-price{
  font-size:1.8rem;
  color:var(--accent);
  margin:8px 0 6px;
  font-weight:700;
}

/* ============================================================
   CHECKLIST SECTION
   ============================================================ */
.mtc-list{
  width:min(760px, 92vw);
  margin:44px auto 0;
  text-align:left;
}

.mtc-list-item{
  display:flex;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--glass);
  background:rgba(255,255,255,0.03);
  margin-bottom:12px;
  border-radius:12px;
}

.mtc-list-item span{
  color:var(--accent);
  font-weight:700;
}

/* Agenda day headers */
.mtc-agenda-day{
  background:rgba(201, 163, 107, 0.41);
  border-color:var(--accent);
}

.mtc-agenda-day span{
  text-transform:uppercase;
  letter-spacing:1px;
}

/* ===========================
   MTC PHOTO GALLERY
   =========================== */

.mtc-gallery{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
}

.mtc-gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  cursor:pointer;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    filter .35s ease;
  filter:brightness(0.92);
}

.mtc-gallery img:hover{
  transform:translateY(-6px) scale(1.02);
  filter:brightness(1);
  box-shadow:0 18px 40px rgba(0,0,0,0.45);
}

.mtc-callout .mtc-link{
  font-weight:600;
  letter-spacing:.3px;
}

/* ===========================
   MTC IMAGE CAROUSEL
   =========================== */

.mtc-carousel{
  position:relative;
  margin-top:60px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  overflow:hidden;
  border-radius:20px;
}

.mtc-carousel-track{
  display:flex;
  transition:transform .6s ease;
}

.mtc-carousel-track img{
  min-width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
  filter:brightness(0.95);
}

/* Arrow buttons */
.mtc-carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.55);
  border:1px solid var(--glass);
  color:var(--light);
  font-size:2.2rem;
  width:54px;
  height:54px;
  border-radius:50%;
  cursor:pointer;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, transform .25s ease;
}

.mtc-carousel-btn:hover{
  background:rgba(0,0,0,0.75);
  transform:translateY(-50%) scale(1.08);
}

.mtc-carousel-btn.left{
  left:14px;
}

.mtc-carousel-btn.right{
  right:14px;
}

/* Mobile adjustment */
@media(max-width:768px){
  .mtc-carousel-track img{
    height:280px;
  }
}


/* Hide gallery data */
.mtc-gallery-data{
  display:none;
}

/* Lightbox */
.mtc-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:9999;
}

.mtc-lightbox.active{
  opacity:1;
  pointer-events:auto;
}

.mtc-lightbox img{
  max-width:90vw;
  max-height:85vh;
  border-radius:16px;
}

/* Navigation */
.mtc-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:2.5rem;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
  user-select:none;
}

.mtc-nav.left{ left:30px; }
.mtc-nav.right{ right:30px; }


/* =========================
   VIEW GALLERY BUTTON
   ========================= */

.mtc-gallery-btn{
  margin-top:18px;
  background:transparent;
  border:1px solid var(--accent);
  color:var(--accent);
  padding:8px 18px;
  border-radius:30px;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.mtc-gallery-btn:hover{
  background:var(--accent);
  color:#0b0b0c;
  transform:translateY(-2px);
}

/* Hidden galleries */
.mtc-hidden-gallery{
  display:none;
}

.gallery-close {
  position: fixed;            /* 👈 THIS fixes the problem */
  top: 30%;
  right: 20px;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.5);
  color: white;

  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10002;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gallery-close:hover {
  background: var(--accent);
  color: #0b0b0c;
  transform: scale(1.1);
}



/* ============================================================
   REGISTRATION BUTTON
   ============================================================ */

.reg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 26px;
  border-radius: 40px;
  border: 1px solid var(--accent);

  font-size: 0.9rem;
  text-decoration: none;
  color: var(--light);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.reg-btn:hover {
  background: var(--accent);
  color: #0b0b0c;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(107,168,201,0.4);
}

/* ============================================================
   DIVIDERS & CALLOUT
   ============================================================ */
.mtc-divider{
  height:1px;
  background:rgba(255,255,255,0.10);
  margin:46px auto;
  width:min(880px, 92vw);
}

.mtc-callout{
  border:1px solid var(--glass-2);
  background:rgba(0,0,0,0.35);
  padding:26px;
  border-radius:16px;
  text-align:left;
}

.mtc-callout-title{
  font-family:'Playfair Display',serif;
  font-size:1.4rem;
  margin-bottom:10px;
  color:var(--accent);
}

.mtc-link{
  display:inline-block;
  margin-top:10px;
  color:var(--accent);
  text-decoration:none;
  border-bottom:1px solid rgba(201,164,107,0.4);
}

.mtc-link:hover{
  border-bottom-color:rgba(201,164,107,0.9);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.mtc-final{
  padding:120px 0;
  text-align:center;
  background-image:url("/static/img/mtc-final1.webp");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center 35%;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ------------------------------------------------------------
   Used with JS to fade content in as user scrolls.
   ============================================================ */
.mtc-reveal{
  opacity:0;
  transform:translateY(60px);
  transition:1s ease;
}

.mtc-reveal.active{
  opacity:1;
  transform:translateY(0);
}
