/* ===== 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-animation {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: none;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover-animation video {
  width: 40%;
  height: 100%;
  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;
}
.wiki-section-03 img {
    width: 100%;
    height: auto;
}
.wiki-section-04 img {
    width: 100%;
    height: auto;
}
.wiki-section-05 img {
    width: 100%;
    height: auto;
}



/* ===== 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;
  }
}


