/* ============================================
   PINT SIZE LOUNGE — Custom Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #1B4332;
  color: #FEFDF8;
}

/* --- Utility --- */
.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.abs-pos {
  position: absolute;
  pointer-events: none;
}

.no-underline {
  text-decoration: none;
}

/* --- Geometric Shapes --- */
.shape-circle {
  border-radius: 50%;
}

.shape-square {
  border-radius: 1rem;
  transform: rotate(15deg);
}

.shape-triangle {
  width: 0 !important;
  height: 0 !important;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(27, 67, 50, 0.06);
  border-radius: 0;
  transform: rotate(-15deg);
}

.shape-ring {
  border-radius: 50%;
  border: 8px solid;
  background: transparent !important;
}

/* Hero shapes */
.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(27, 67, 50, 0.05);
  top: 5%;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(212, 168, 67, 0.12);
  bottom: 20%;
  left: 5%;
  animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(193, 105, 79, 0.1);
  top: 30%;
  left: 10%;
  animation: float 7s ease-in-out infinite;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: rgba(27, 67, 50, 0.08);
  bottom: 15%;
  right: 15%;
  animation: float 9s ease-in-out infinite reverse;
}

.shape-5 {
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 67, 0.15);
  top: 20%;
  left: 25%;
  animation: float 5s ease-in-out infinite;
}

.shape-6 {
  top: 60%;
  right: 25%;
  animation: float 7s ease-in-out infinite reverse;
}

.shape-7 {
  width: 150px;
  height: 150px;
  border-color: rgba(27, 67, 50, 0.08);
  top: 15%;
  left: 50%;
  animation: float 10s ease-in-out infinite;
}

/* About shapes */
.about-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(27, 67, 50, 0.04);
  top: -80px;
  right: -80px;
}

.about-shape-2 {
  width: 80px;
  height: 80px;
  background: rgba(212, 168, 67, 0.15);
  bottom: 20%;
  left: -30px;
}

.about-accent-1 {
  width: 60px;
  height: 60px;
  background: rgba(193, 105, 79, 0.12);
  top: -20px;
  left: -20px;
}

/* Menu shapes */
.menu-shape-1 {
  width: 250px;
  height: 250px;
  background: rgba(254, 253, 248, 0.04);
  top: 10%;
  left: -60px;
}

.menu-shape-2 {
  width: 70px;
  height: 70px;
  background: rgba(254, 253, 248, 0.06);
  bottom: 15%;
  right: 10%;
}

.menu-shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(212, 168, 67, 0.08);
  top: 50%;
  right: 5%;
}

/* Vibe shapes */
.vibe-shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(27, 67, 50, 0.04);
  bottom: -50px;
  right: 10%;
}

.vibe-shape-2 {
  width: 60px;
  height: 60px;
  background: rgba(193, 105, 79, 0.1);
  top: 15%;
  left: 5%;
}

/* Visit shapes */
.visit-shape-1 {
  width: 180px;
  height: 180px;
  background: rgba(27, 67, 50, 0.05);
  top: 10%;
  right: -40px;
}

.visit-shape-2 {
  width: 50px;
  height: 50px;
  background: rgba(212, 168, 67, 0.15);
  bottom: 20%;
  left: 5%;
}

/* Contact shapes */
.contact-shape-1 {
  width: 250px;
  height: 250px;
  background: rgba(27, 67, 50, 0.04);
  top: -60px;
  left: -60px;
}

.contact-shape-2 {
  width: 80px;
  height: 80px;
  background: rgba(193, 105, 79, 0.1);
  bottom: 10%;
  right: 5%;
}

/* Footer shapes */
.footer-shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(254, 253, 248, 0.03);
  bottom: -50px;
  right: 10%;
}

.footer-shape-2 {
  width: 60px;
  height: 60px;
  background: rgba(254, 253, 248, 0.05);
  top: 10%;
  left: 5%;
}

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
  50% { transform: translateY(-20px) rotate(var(--rotate, 0deg)); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, #FEFDF8 0%, #F7F0D8 50%, #FEFDF8 100%);
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-in 1s ease forwards 0.3s;
}

.hero-badge {
  opacity: 0;
  animation: hero-in 1s ease forwards 0.1s;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  opacity: 0;
  animation: hero-in 1s ease forwards 1.2s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #1B4332, transparent);
  transform-origin: top;
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* --- Tags / Labels --- */
.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27, 67, 50, 0.08);
  color: #1B4332;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.tag-label-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254, 253, 248, 0.1);
  color: #D4A843;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1B4332;
  color: #FEFDF8;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #163729;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #1B4332;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border: 2px solid #1B4332;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #1B4332;
  color: #FEFDF8;
  transform: translateY(-2px);
}

/* --- Nav --- */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A843;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* --- About --- */
.about-images {
  position: relative;
}

.about-img-float {
  animation: float 6s ease-in-out infinite;
}

.about-stat {
  text-align: left;
}

/* --- Menu --- */
.menu-category {
  background: rgba(254, 253, 248, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(254, 253, 248, 0.08);
}

.menu-item-light {
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
  padding-bottom: 1rem;
}

.menu-item-light:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* --- Vibe --- */
.vibe-img-wrap {
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vibe-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 67, 50, 0.2);
}

.vibe-img {
  transition: transform 0.6s ease;
}

.vibe-img-wrap:hover .vibe-img {
  transform: scale(1.05);
}

.vibe-card {
  background: #FEFDF8;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: all 0.3s ease;
}

.vibe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(27, 67, 50, 0.1);
}

.vibe-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* --- Visit --- */
.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-map-wrap {
  position: relative;
}

/* --- Contact Form --- */
.contact-form {
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.contact-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(27, 67, 50, 0.15);
  border-radius: 12px;
  background: #FEFDF8;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1B4332;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input::placeholder {
  color: rgba(27, 67, 50, 0.35);
}

.contact-input:focus {
  border-color: #1B4332;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.contact-input:hover:not(:focus) {
  border-color: rgba(27, 67, 50, 0.3);
}

/* --- Mobile Menu --- */
.mobile-nav-link {
  position: relative;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A843;
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
  width: 2rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 767px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .shape-1 { width: 250px; height: 250px; }
  .shape-2 { width: 120px; height: 120px; }
  .shape-3 { width: 80px; height: 80px; }
  .shape-4 { width: 60px; height: 60px; }
  .shape-5 { width: 40px; height: 40px; }
  .shape-7 { width: 80px; height: 80px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .shape-1 { width: 300px; height: 300px; }
}
