    /* ======================================================
       ROOT VARIABLES
    ====================================================== */
    :root {
      --color-gold: #c9a24d;
      --color-charcoal: #1f1f1f;
      --color-gray: #5f5f5f;
      --color-light: #f7f7f7;
      --color-red: #e63946;
      --font-primary: 'Inter', system-ui, sans-serif;
      --radius: 12px;
      --transition: 0.3s ease;
      --header-height: 90px;
    }

    /* ======================================================
       BASE
    ====================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    body { margin:0; font-family: var(--font-primary); color: var(--color-charcoal); background: var(--color-light); overflow-x:hidden; }
    h1,h2,h3,h4 { margin:0; font-weight:700; color: var(--color-charcoal); }
    p { margin:0 0 1.5rem; color: var(--color-gray); }
    a { text-decoration:none; color: inherit; transition: color var(--transition);}
    a:hover { color: var(--color-gold); }
    .container { max-width: 1200px; margin:0 auto; padding:0 1.5rem; }
/* ======================================================
   LANDING MENU BUTTON (CENTERED FLOATING)
====================================================== */
.landing-header {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000; /* above hero */
  pointer-events: none;
}

.landing-menu-toggle {
  pointer-events: all;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.landing-menu-toggle:hover {
  background: rgba(0,0,0,0.55);
  transform: scale(1.05);
}

/* ======================================================
   LANDING SLIDE-IN MENU
====================================================== */
.landing-menu {
  position: fixed;
  inset: 0; /* full screen */
  background: rgba(20, 20, 20, 0.96);
  z-index: 2500; /* above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,.1,.2,1);
  pointer-events: all;
}

/* Menu open */
.landing-menu.is-open {
  transform: translateX(0);
}

/* Close button X */
.landing-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #fff;
  background: none;
  border: none;!important
  cursor: pointer;
  z-index: 2600; /* above menu links */
  transition: transform 0.2s ease, color 0.2s ease;
}

.landing-menu-close:hover {
  color: var(--color-gold);
  transform: scale(1.1);
      border: none;
}

/* Menu links with slide-in animation */
.landing-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  z-index: 2550;
}

.landing-menu-nav a {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.landing-menu.is-open .landing-menu-nav a {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay for links */
.landing-menu.is-open .landing-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.landing-menu.is-open .landing-menu-nav a:nth-child(2) { transition-delay: 0.2s; }
.landing-menu.is-open .landing-menu-nav a:nth-child(3) { transition-delay: 0.3s; }
.landing-menu.is-open .landing-menu-nav a:nth-child(4) { transition-delay: 0.4s; }

.landing-menu-nav a:hover {
  color: var(--color-gold);
  transform: translateX(6px);
}

/* Social icons with slide-up animation */
.landing-menu-socials {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 2550;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: 0.5s; /* after links */
}

.landing-menu.is-open .landing-menu-socials {
  opacity: 1;
  transform: translateY(0);
}

.landing-menu-socials a {
  font-size: 2rem;
  color: var(--color-gold);
  transition: transform 0.3s ease, color 0.3s ease;
}

.landing-menu-socials a:hover {
  transform: scale(1.3);
  color: #e63946;
}

/* Prevent hero interaction while menu is open */
body.menu-open {
  overflow: hidden;
}
    /* DISABLE TEXT SELECTION */
    body, * { user-select:none; -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; }

 
                              /* MOBILE MENU SOCIAL ICONS */
.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  justify-content: center;
}

.mobile-social a {
  font-size: 2rem;
  color: #c9a24d;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-social a:hover {
  transform: scale(1.3);
  color: #e63946; /* nice contrast on hover */
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .reveal {
    transform: translateX(60px) scale(0.95);
    filter: blur(8px);
  }

  .reveal.active {
    transform: translateX(0) scale(1);
  }
}

/* Responsive */
@media(max-width:768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
                              
/* Responsive */
@media(max-width:768px){
  .cta-buttons-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
  gap: 1.5rem;
}
.hero-logo-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-logo-btn img {
  width: 60%;
  height: auto;
}

.hero-logo-btn:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.2);
}

/* Bottom CTA button */
.hero-cta-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 105, 180, 0.2); /* soft pink */
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-cta-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 105, 180, 0.4); /* darker pink on hover */
}

.hero-logo-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.hero-logo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* logo completely fills the circle */
  border-radius: 50%;
}


.hero-cta-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 105, 180, 0.4);
}
/* Logo button inside the expanded menu */
/* Logo button inside the expanded menu */
.menu-logo-btn {
  width: 100px;
  aspect-ratio: 1 / 1;       /* ðŸ”’ forces perfect square */
  border-radius: 50%;
  border: none;
  margin: 0 auto 2rem auto;
  display: grid;             /* safer than flex here */
  place-items: center;
  background: none;
  cursor: pointer;
  overflow: hidden;          /* ðŸ”‘ clips image */
  padding: 0;
  flex-shrink: 0;            /* ðŸ”’ prevents flex squeeze */
  transition: transform 0.3s ease;
}

.menu-logo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills the circle */
  border-radius: 50%;
  display: block;
}

.menu-logo-btn:hover {
  transform: scale(1.05);
}

/* logo animation */
  /* 1. Make sure the container doesn't block the mouse */
  #banner, .inner {
    pointer-events: none;
  }

  /* 2. Re-enable mouse for the logo and text */
  .logo, h2, p {
    pointer-events: auto !important;
  }

  /* 3. The Animation */
  @keyframes forceSpin {
    from { transform: rotate(0deg) scale(1); }
    to   { transform: rotate(360deg) scale(1.1); }
  }

  .logo {
    transition: all 0.5s ease !important;
    position: relative !important;
    z-index: 10 !important; /* Bring it to the absolute front */
    display: flex !important;
  }

  .logo:hover {
    animation: forceSpin 0.5s forwards !important;
    background: rgba(255,255,255,0.3) !important;
    cursor: pointer !important;
  }

/* trimite button*/
/* Base Styles */
input[type="submit"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: transparent;
    border-radius: 5px;
    border: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.125);
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    height: 3.75em;
    letter-spacing: 0.1em;
    line-height: 3.75em;
    padding: 0 2.25em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Interaction States */
input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0.025);
}

input[type="submit"]:active {
    background-color: rgba(255, 255, 255, 0.075);
}

/* Icon Support */
input[type="submit"].icon:before {
    margin-right: 0.5em;
    color: rgba(255, 255, 255, 0.35);
}

/* Primary Button Variation */
input[type="submit"].primary {
    background-color: #4c5c96;
    box-shadow: none;
}

input[type="submit"].primary:hover {
    background-color: #53639e;
}

input[type="submit"].primary:active {
    background-color: #45558d;
}

input[type="submit"].primary.icon:before {
    color: #7985b0;
}

/* Sizing Variations */
input[type="submit"].fit {
    width: 100%;
}

input[type="submit"].small {
    font-size: 0.6em;
}

input[type="submit"].large {
    font-size: 1em;
}

/* Disabled State */
input[type="submit"].disabled, 
input[type="submit"]:disabled {
    opacity: 0.25;
}

/* Responsive Adjustments */
@media screen and (max-width: 480px) {
    input[type="submit"] {
        padding: 0;
    }
}

/* Allow the form and buttons to be clickable again */
form, 
.actions, 
input[type="submit"] {
    pointer-events: auto !important;
}

  /* 1. SECTION FADE-IN (Triggers when the page loads) */
  .wrapper.spotlight {
    animation: sectionFadeIn 1.2s ease-out forwards;
    pointer-events: auto !important; /* Ensures the section is "touchable" */
  }

  @keyframes sectionFadeIn {
    from { 
      opacity: 0; 
      transform: translateY(20px); 
    }
    to { 
      opacity: 1; 
      transform: translateY(0); 
    }
  }

  /* 2. IMAGE HOVER ANIMATION */
  /* Target the image link wrapper to ensure it catches the hover */
  .wrapper.spotlight .image {
    overflow: hidden; /* Keeps the zoom contained */
    display: block;
    pointer-events: auto !important;
    transition: transform 0.5s ease;
  }

  .wrapper.spotlight .image img {
    transition: all 0.5s ease !important;
    display: block;
    filter: brightness(0.9); /* Slightly darker normally */
  }

  /* When hovering over the image container */
  .wrapper.spotlight .image:hover img {
    transform: scale(1.05); /* Gentle zoom */
    filter: brightness(1.1); /* Subtle "light up" effect */
  }

  /* 3. BUTTON 'SPECIAL' HOVER */
  .wrapper.spotlight .special {
    transition: all 0.3s ease !important;
    display: inline-block;
  }

  .wrapper.spotlight .special:hover {
    padding-left: 1.5rem !important; /* Slides the button text slightly right */
    letter-spacing: 0.2em;
  }
/* Force all links and buttons inside the spotlight to be clickable */
.wrapper.spotlight .content,
.wrapper.spotlight .special,
.wrapper.spotlight .image {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 5 !important;
}

/* Ensure the 'special' link feels interactive */
.wrapper.spotlight .special {
    cursor: pointer !important;
}
/* Ensure the entire footer container allows mouse interaction */
#footer, 
#footer .inner {
    pointer-events: auto !important;
}

/* Force all links, icons, and list items in the footer to be clickable */
#footer a, 
#footer .contact li, 
#footer .copyright li,
#footer .icon {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999 !important;
    cursor: pointer !important;
}

#contactMessage {
    display: block !important;        /* ensure it�s not hidden */
    opacity: 0 !important;            /* start invisible for fade */
    padding: 10px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    margin-top: 10px !important;
    font-weight: bold !important;
    background-color: #4caf50 !important; /* green for success */
    color: #fff !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none; /* avoid blocking clicks */
    z-index: 9999; /* above everything */
    position: relative;
}

#contactMessage.show {
    opacity: 1 !important;            /* fade in */
}

#contactMessage {
    display: block !important;
    opacity: 0 !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    margin-top: 8px !important;      /* ensures space below button */
    font-weight: bold !important;
    background-color: #4caf50 !important; /* green for success */
    color: #fff !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none;
    z-index: 10;                      /* above nearby elements */
    position: relative;
    width: 100%;                       /* full width of form */
    box-sizing: border-box;
}
#contactMessage {
    transition: opacity 0.8s ease !important;  /* slightly slower fade */
}
