@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.logo img{
  height: 40px;
  margin-left: 6px;
}

/* Burger button */
.menu-btn{
  display: block;
  font-size: 30px;
  cursor: pointer;
  color: #fff;

  position: absolute;
  right: 12px;
  top: 14px;

  z-index: 1100;
}

/* Menu base */
.menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.menu a{
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

/* MOBILE: hidden until click */
@media (max-width: 767px){
  .menu{
    position: absolute;
    top: 60px;
    right: 16px;

    flex-direction: column;
    gap: 16px;
    padding: 18px;
    width: 220px;

    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(18px);
    border-radius: 16px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;

    transition: opacity .25s ease, transform .25s ease;
    z-index: 1200;
  }

  .menu.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
}

/* DESKTOP: show menu and shift it left (closer to logo) */
@media (min-width: 768px){
  .navbar{
    justify-content: flex-start;
    gap: 18px;
  }
  .menu{
    position: static;
    flex-direction: row;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    background: none;
    padding: 0;
    width: auto;

    margin-left: 18px; /* shift left */
  }
  .menu-btn{
  display: block;
  font-size: 30px;
  cursor: pointer;
  color: #fff;

  position: absolute;
  right: 12px;
  top: 14px;

  z-index: 1100;
}
}


/* HERO */
.hero {
    height: 100vh;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    transform: scale(1.05);
    transition: transform 0.2s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 72px;
    margin: 0;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    margin: 10px auto 0;
}

/* FADE-IN */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 1s forwards ease-out;
}
.delay-1 { animation-delay: .4s; }

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

/* SHOWCASE */
.showcase {
    padding: 80px 20px;
    text-align: center;
}

.showcase-grid {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: .35s;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card h3 {
    margin: 16px;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
    .showcase-grid { grid-template-columns: repeat(3, 1fr); }
}

/* PANORAMA */
.panorama-section {
    padding: 80px 20px;
    text-align: center;
}

.panorama-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.panorama-selector button {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
    transition: .3s;
}

.panorama-selector button:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.04);
}

.panorama-viewer {
    width: 100%;
    height: 480px;
    max-width: 1000px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
}

/* PARTNERS — LIGHT GLASS */
.partners {
    padding: 80px 20px;
    text-align: center;
}

.partners h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #eaeaea;
}

.partners p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 60px;
    padding: 20px 0;
    animation: partnersSlide 20s linear infinite;
}

@keyframes partnersSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-pill {
    min-width: 200px;
    height: 110px;
    padding: 24px 28px;

    background: rgba(255, 255, 255, 0.40);
    border-radius: 22px;
    backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.55);
    box-shadow:
        0 6px 20px rgba(0,0,0,0.12),
        inset 0 0 40px rgba(255,255,255,0.55);

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease;
    cursor: pointer;
}

.partner-pill img {
    max-height: 80px;
    max-width: 155px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
    transition: 0.35s ease;
}

.partner-pill:hover {
    transform: scale(1.12);
    background: rgba(255,255,255,0.55);
    border-color: rgba(255,255,255,0.9);
    box-shadow:
        0 8px 26px rgba(0,0,0,0.18),
        inset 0 0 50px rgba(255,255,255,0.7);
}

.partner-pill:hover img {
    filter: brightness(1.25) drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

@media (max-width: 600px) {
    .partner-pill {
        min-width: 150px;
        height: 90px;
        padding: 16px;
    }
    .partner-pill img { max-height: 65px; }
}

/* CONTACTS — FA ICON CAPSULES */
.contacts {
    padding: 80px 20px;
    text-align: center;
}

.contacts h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #eaeaea;
}

.contacts p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 420px;
    margin: 0 auto;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 26px;
    border-radius: 22px;

    background: rgba(255,255,255,0.40);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(22px);

    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;

    box-shadow:
        0 8px 22px rgba(0,0,0,0.22),
        inset 0 0 40px rgba(255,255,255,0.55);

    transition: .35s ease;
}

.contact-pill i {
    font-size: 32px;
    width: 38px;
    text-align: center;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
    transition: .35s ease;
}

.contact-pill:hover {
    transform: scale(1.06);
    background: rgba(255,255,255,0.55);
    border-color: rgba(255,255,255,0.9);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        inset 0 0 50px rgba(255,255,255,0.75);
}

.contact-pill:hover i {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.7));
}

@media (max-width: 600px) {
    .contact-pill {
        padding: 16px 20px;
        font-size: 20px;
    }
    .contact-pill i {
        font-size: 28px;
        width: 34px;
    }
}

/* FOOTER */
footer {
    padding: 40px 0;
    text-align: center;
    color: #777;
}
