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



/* ===== Body ===== */

.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    width: 80%;
    margin: 3rem auto;
    margin-top: 6rem;
}

.contact-left {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
}

.contact-left img {
    width: 70% ;
    height: auto;
    object-fit: contain;
}




.contact-right {
    width: 100%;
    padding: 2rem 0rem;
}

.contact-right h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
  width: 70%;
  margin: 0 auto;
}

.contact-item img {
  width: 20px;
  height: 20px;
}

.contact-item span {
  flex: 1;
  font-size: 1rem;
}



.copy-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
}

.copy-btn img {
  width: 16px;
  height: 16px;
}

.copied-text {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 0.75rem;
  color: #22bb55;
  opacity: 0;
  transform: translateY(0);
  transition: all 0.3s ease;
  pointer-events: none;
}



/* Container of icons */
.socials {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0rem;
}
.socials-icon {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    }

/* Each icon */
.socials-icon a {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Smooth hover scale */
.socials-icon a:hover {
  transform: scale(1.1);
}

/* Both images in a-tag (BW + color) */
.socials-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Initial state: show BW, hide color */
.icon-bw {
  opacity: 1;
  z-index: 1;
}
.icon-color {
  opacity: 0;
  z-index: 2;
}

/* On hover: fade to color */
.socials-icon a:hover .icon-bw {
  opacity: 0;
}
.socials-icon a:hover .icon-color {
  opacity: 1;
}





/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    gap: 0.5rem;
    align-items: flex-start;
    text-align: left;
    display: flex;
  }

  .contact-right {
    width: 100%;
  }

  .socials{
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
  }
}
