/* ELITE Concierge Global CSS */
@import url('satoshi.css');
/* Root variables for consistent styling */
:root {
    --color-dark: #0c0c0c; /* Near black */
    --color-primary: #101820; /* Dark charcoal */
    --color-secondary: #dcb570; /* Gold accent */
    --color-tertiary: #2a2a2a; /* Medium charcoal */
    --color-light: #f8f8f8; /* Off-white */
    --color-white: #ffffff; /* Pure white */

    /*--font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif; */

    --font-heading: Satoshi-Medium;
    --font-body: Satoshi-Light;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    /* Inline CSS for new sections */
    .featured-event {
      background-color: var(--color-light);
      padding: 80px 0;
    }

    .event-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }

    .event-img {
      width: 100%;
      max-width: 600px;
      border-radius: 8px;
      box-shadow: var(--box-shadow);
    }

    .event-details p {
      max-width: 700px;
      margin: 20px auto;
      font-size: 16px;
      color: var(--color-tertiary);
    }

    .section-preview {
      background-color: var(--color-white);
      padding: 80px 0;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
    }

    .preview-card {
      background: var(--color-light);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: var(--box-shadow);
    }

    .preview-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .preview-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: var(--color-primary);
    }

    .preview-card p {
      font-size: 14px;
      color: #666;
    }

    .section-cta {
      padding: 80px 0;
      text-align: center;
      background-color: var(--color-primary);
      color: var(--color-white);
    }

    .section-cta h2 {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .section-cta p {
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .signature {
      width: 160px;
      margin: 20px auto;
    }

    @media (max-width: 768px) {
      .event-card, .grid {
        flex-direction: column;
      }
    }

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-tertiary);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, .btn {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    z-index: -1;
    transition: var(--transition);
}

.btn-outline {
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline::before {
    transform: scaleX(0);
    transform-origin: left;
}

.btn-outline:hover {
    color: var(--color-dark);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-filled {
    color: var(--color-dark);
}

.btn-filled:hover{
    color: var(--color-secondary);
}

.btn-filled::before {
    background: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-filled:hover::before {
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-secondary);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Button LOGIN */

.login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12); /* for dark header */
  color: #ffffff;           /* icon color */
  background: transparent;
  font-size: 18px;         /* for the <i> icon */
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

/* hover / focus */
.login-icon:hover,
.login-icon:focus {
  background: #C9A13A;     /* gold accent */
  color: #0b0b0b;          /* dark text when gold */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  border-color: transparent;
  outline: none;
}

/* accessible focus ring */
.login-icon:focus-visible {
  box-shadow: 0 0 0 3px rgba(201,161,58,0.18);
}





/* Custom cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(220, 181, 112, 0.5);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    display: none;
}

.cursor.expand {
    transform: translate(-50%, -50%) scale(4);
    background-color: rgba(220, 181, 112, 0.2);
    transition: transform 0.5s ease;
}

@media (min-width: 992px) {
    .cursor {
        display: block;
    }
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    padding: 30px 0;
    transition: var(--transition);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
}

.scroll-arrow {
    margin-top: 10px;
    animation: bounce 2s infinite;
}


.header.scrolled {
    background-color: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-white);
    position: relative;
    z-index: 2;
    letter-spacing: 3px;
}

.logo span {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--color-secondary);
}

.menu-toggle {
    display: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

/* Fullscreen menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-nav {
    text-align: center;
}

.fullscreen-nav li {
    margin: 20px 0;
    overflow: hidden;
}

.fullscreen-nav .nav-link {
    font-size: 32px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: inline-block;
}

.fullscreen-menu.active .fullscreen-nav .nav-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i));
}

/* Section styles */
.section-title-container {
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-secondary);
}

/* Footer styles */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 100px 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 3px;
    font-weight: 300;
}

.footer-logo span {
    color: var(--color-secondary);
    font-weight: 600;
}

.footer-text {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 15px;
    font-weight: 400;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    margin-right: 15px;
    color: var(--color-secondary);
}

.contact-person {
    margin-bottom: 5px;
}

.contact-person strong {
    color: var(--color-white);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-5px);
}

.newsletter-form {
    position: relative;
    margin-top: 25px;
}

.newsletter-input {
    width: 100%;
    padding: 15px;
    padding-right: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background-color: transparent;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-btn:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-secondary);
}

.center-wrapper {
  max-width: 1200px; /* or whatever suits your layout */
  margin: 0 auto;    /* this centers the block horizontally */
  padding: 0 20px;   /* optional, for spacing on smaller screens */
}

.section-title, .section-subtitle {
  text-align: center;
}

#center321 {
    text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
  gap: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Cards */
.card {
  width: fit-content;
  height: fit-content;
  background-color: rgba(49, 49, 49, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 15px;
  gap: 15px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.card a {
  width: 40px;
  height: 40px;
  background-color: rgba(117, 117, 117, 0);
  display: flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.card a:hover {
  transform: scale(1.2);
  border-radius: 15px;
}
/*instagram*/
.card a:nth-child(1):hover {
  background-color: #d62976;
}
/* twitter*/
.card a:nth-child(2):hover {
  background-color: #00acee;
}
/* linkdin*/
.card a:nth-child(3):hover {
  background-color: #0072b1;
}
/* Whatsapp*/
.card a:nth-child(4):hover {
  background-color: #25d366;
}

.card a:active {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

/*first-child*/
.card a svg:first-child {
  display: flex;
  scale: 1.3;
  position: absolute;
  width: 17px;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.card a svg:first-child path {
  fill: rgb(255, 255, 255);
}

.card a:hover svg:first-child {
  transform: translateY(-40px);
  opacity: 0;
}
/*last-child*/
.card a svg:last-child {
  display: flex;
  position: absolute;
  width: 17px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}
.card a svg:last-child path {
  fill: rgb(255, 255, 255);
}

.card a:hover svg:last-child {
  opacity: 1;
  transform: translateY(0px);
}


/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0; /* Smaller padding on mobile */
    }

}
