:root {
  --pink: #f7c6d9;
  --accent: #EC3D97;
  --mint: #6DFAC6;
  --peach: #ffd6c9;
  --text: #111;
}

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

body {
  font-family: 'Inter', Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

footer {
  color: #EC3D97;
}

/*span {
  width: 52px;
}*/

/* HEADER */
.header {
  position: absolute;
  top: 50px;
  left: 80px;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 10;
}

/* HERO */
.hero {
  height: 92vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    var(--pink) 60%,
    var(--peach) 85%
  );
}

/* 🔵 CIRCLE */
.circle-wrapper {
  margin-top: 120px;
  position: relative;
  z-index: 2;
}

/*.circle-ring {
  width: 554px;
  height: 554px;
  border-radius: 50%;
  border: 5px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;

  animation: pulse 5s ease-in-out infinite;
}*/

.circle-ring {
  width: 554px;
  height: 554px;
  border-radius: 50%;
  border: 5px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;

  animation: pulseGlow 10s ease-in-out infinite;
}

/* 🌸 soft pink glow */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 0px rgba(236, 61, 151, 0.0),
      0 0 0px rgba(236, 61, 151, 0.0);
  }

  50% {
    box-shadow:
      0 0 25px rgba(236, 61, 151, 0.25),
      0 0 60px rgba(236, 61, 151, 0.15);
  }

  100% {
    box-shadow:
      0 0 0px rgba(236, 61, 151, 0.0),
      0 0 0px rgba(236, 61, 151, 0.0);
  }
}

/* 🌸 synced glow */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 0px rgba(255,255,255,0),
      0 0 0px rgba(236, 61, 151, 0);
  }

  50% {
    box-shadow:
      0 0 40px rgba(255,255,255,0.9),   /* white core glow */
      0 0 80px rgba(236, 61, 151, 0.25); /* pink outer haze */
  }

  100% {
    box-shadow:
      0 0 0px rgba(255,255,255,0),
      0 0 0px rgba(236, 61, 151, 0);
  }
}


/*
NO PULSE HIDE COMMMENTS

.circle-ring {
  width: 554px;
  height: 554px;
  border-radius: 50%;
  border: 5px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;

  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 0px rgba(255,255,255,0),
      0 0 0px rgba(236, 61, 151, 0);
  }

  50% {
    box-shadow:
      0 0 40px rgba(255,255,255,0.9),   comment: white core glow 
      0 0 80px rgba(236, 61, 151, 0.25); comment: pink outer haze 
  }

  100% {
    box-shadow:
      0 0 0px rgba(255,255,255,0),
      0 0 0px rgba(236, 61, 151, 0);
  }
}*/

/*@keyframes pulse {
  0%,100% { box-shadow: 0 0 15px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 40px rgba(255,255,255,0.4); }
}*/

/* 🔁 FLIP SYSTEM (FIXED) */
.circle-inner {
  width: 520px;
  height: 520px;
  position: relative;
  border-radius: 50%;

  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

/* hover flip */
.circle-wrapper:hover .circle-inner {
  transform: rotateY(180deg);
}

/* faces */
.circle-face {
  position: absolute;
  inset: 0;

  border-radius: 50%;
  overflow: hidden;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.circle-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FRONT */
.circle-face.front {
  z-index: 2;
}

/* BACK */
.circle-face.back {
  transform: rotateY(180deg);
}

/* ✨ flip shadow */
.circle-wrapper:hover .circle-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.15);
}

/* ☁️ BUTTONS */
.floating-btn,
.insta-cta {
  position: absolute;
  left: 80px;
  z-index: 5;
  display: inline-block;

  background: var(--accent);
  color: white;
  text-decoration: none;

  padding: 18px 28px;
  border-radius: 999px;

  /*font-size: 34px;*/
  /*font-weight: 600;*/

  font-size: 24px;
  font-weight: bold;

  transition: all 0.2s ease;
}

/*.external-link {
  width: 22px;
}
.floating-btn img {
  justify-content: center;
  align-items: center; 
}
*/
/* spacing between */
#btn-about { bottom: 60px; }
#btn-inspire { bottom: 150px; }
#btn-insta { bottom: 240px; }


/* softer shadows */
.floating-btn:hover,
.insta-cta:hover {
  /*transform: translate(-4px, -4px);*/
  box-shadow: 6px 6px 15px rgba(0,0,0,0.15);
}

.floating-btn:active,
.insta-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

/* GALLERY */
.gallery {
  background: linear-gradient(to bottom, var(--pink), #ffffff);
  padding: 80px 20px;
}

/* DESKTOP GRID */
.desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.desktop-grid a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.desktop-grid a:hover {
  /*transform: translate(-4px, -4px);*/
  box-shadow: 6px 6px 15px rgba(0,0,0,0.15);
}
.desktop-grid a:hover img {
  /*transform: translate(-4px, -4px);*/
  box-shadow: 6px 6px 15px rgba(0,0,0,0.15);
}
.desktop-grid img {
  width: 100%;
  display: block;
  border-radius: 12px; /* ADD THIS */
  transition: all 0.2s ease;
}

/* 📱 CAROUSEL */
.carousel {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-left: 20px;
}

.carousel-track img {
  flex: 0 0 335px;
  /*max-width: 85%;*/
  max-width: 96%;
  scroll-snap-align: start;
  border-radius: 12px;
}
/*.carousel-track img {
  flex: 0 0 335px;
  width: 335px;
  border-radius: 12px;
}*/

.carousel-track {
  scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  font-size: 20px;
  margin: 0 5px;
  color: #ccc;
}

.dots .active {
  color: #000;
}

/* DIVIDER */
.divider {
  width: 80%;
  height: 1px;
  margin: 40px auto;
  background: rgba(0,0,0,0.1);
}

.divider.hidden {
  display: none;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .header {
    top: 20px;
    left: 20px;
  }

  h1 {
    font-size: 22px;
    letter-spacing: 0.5px;
  }

  .desktop-grid { display: none; }
  .carousel { display: block; }

  /* circle smaller */
  .circle-ring {
    width: 260px;
    height: 260px;
  }

  .circle-inner {
    width: 240px;
    height: 240px;

    transform: rotateY(180deg); /* show side B */
  }

  /* disable hover flip */
  .circle-wrapper:hover .circle-inner {
    transform: rotateY(180deg);
  }

  .circle-face.front {
    display: none;
  }

  /* smaller buttons */
  .floating-btn,
  .insta-cta {
    font-size: 18px;
    left: 20px;
  }
}

.footer {
  text-align: center;
  padding: 40px;
}