/* ===== GENERAL SETUP ===== */
:root {
  --main-color: #262626;
  --gray-color: #B3B3B3;
  --light: #FFFFFF;
  --gradient-color:linear-gradient(125deg, rgba(255, 255, 255, 0.20) 11.09%, rgba(255, 255, 255, 0.75) 34.21%, rgba(255, 255, 255, 0.55) 111.37%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF-Compact-Rounded', sans-serif;
  background-color: #fff;
}

/* ===== HEADER ===== */
.contact-header {
  width: 90%;
  margin: 2rem auto;
  padding: 0.8rem 1.5rem;
  border: 1px solid #aaa;
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.back-btn img {
  width: 2rem;
  height: auto;
}

.booking-btn {
  text-decoration: none;
  font-weight: 700;
  color: #111;
  background: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-header {
    flex-direction: row;
    justify-content: space-between;
  }
  .booking-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}




/* ===== WIKI ===== */

.cover-logo {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: none;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.frame-wiki {
    width: 100%;
    height: auto;
}

.wiki-section-01 {
    width: 100%;
    height: auto;
    padding: 1rem 0rem;
}
.wiki-section-01 img {
    width: 100%;
    height: auto;
}

.wiki-section-02 {
    width: 100%;
    height: auto;
    padding: 1rem 0rem;
}
.wiki-section-02 img {
    width: 100%;
    height: auto;
}


/* VIDEO SECTION */
.video-section {
    width: 80%;
    height: auto;
    padding: 3rem 1rem;
    text-align: start;
    margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* cursor: pointer; */
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}






.video-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-overlay-icon img{
    width: 5rem;
    height: auto;

}

.video-wrapper:hover .video-overlay-icon {
  opacity: 1;
}

/* Popup */
.video-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,10,10,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 960px;
}

.video-popup-content video {
  width: 100%;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* == UI == */
.ui-section {
    width: 80%;
    height: auto;
    padding: 3rem 1rem;
    text-align: start;
    margin: 0 auto;
}
.ui-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.ui-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.ui-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


@media (max-width: 768px) {
    .ui-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}






/* ===== LAST SECTION===== */

.thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.5;
}


/* ===== FOLLOW ME ===== */
.follow-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
}
.follow-subsection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #eaeaea;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  flex-wrap: wrap;
  width: 60%;
}

.follow-text {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  flex: 1;
  min-width: 250px;
}

.social-icons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-right: 1rem;
}

.social-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.icon-color {
  opacity: 0;
}

.social-icon:hover .icon-color {
  opacity: 1;
}

.social-icon:hover .icon-bw {
  opacity: 0;
}
/* 🔁 Responsive */
@media (max-width: 768px) {
  .follow-subsection {
    flex-direction: column;
    align-items: center;
  }
  .follow-text {
    text-align: center;
    padding-bottom: 1.2rem;
  }
  .social-icons {
    justify-content: flex-start;
  }
}


