:root {
  --rose-gold: #b76e79;
  --rose-gold-light: #f4d3d8;
  --dark: #2b2b2b;
  --light: #fff;
}

/* ========== FONT-FACES ========== */  
@font-face {
  font-family: 'Sinthya';
  src: url('/fonts/Sinthya.woff2') format('woff2'),
       url('/fonts/Sinthya.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Colombia';
  src: url('/fonts/Colombia-Regular.woff2') format('woff2'),
       url('/fonts/Colombia-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Colombia';
  src: url('/fonts/Colombia-Bold.woff2') format('woff2'),
       url('/fonts/Colombia-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ========== GLOBAL STYLES ========== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Colombia', sans-serif;
  background: url('/images/Hairbackground.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center top;
  color: var(--dark);
  overflow-x: hidden;
}

h1 {
  font-family: 'Sinthya', cursive;
}

p {
  font-family: 'Colombia', sans-serif;
  font-weight: normal;
}

strong {
  font-family: 'Colombia', sans-serif;
  font-weight: bold;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
}

/* ========== HEADER ========== */
.site-header {
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 750px;
  margin: 0 auto 0 auto;
  border-radius: 20px;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  flex-direction: column; /* stack elements vertically */
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.logo svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto; /* no extra space here */
}

.slogan {
  display: block;
  width: 60%;
  height: auto;
  margin-bottom: 100px;
}

.brand-text {
  display: none;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  font-family: 'Sinthya', cursive;
  font-size: 2rem;
  margin: 0;
  color: var(--rose-gold);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.brand-text p {
  font-size: 1.2rem;
  margin: 5px 0 0;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* ========== MAIN SECTION ========== */
.heading-script {
  font-family: 'Sinthya', cursive;
  font-size: 2rem;
  letter-spacing: 0.5px;
  line-height: 0rem;
}

section {
  padding: 20px 20px;
  text-align: center;
  max-width: 750px;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== FLOW SECTION ========== */
.flow-section {
  padding: 40px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  margin: 0 auto;
  max-width: 750px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out;
  box-sizing: border-box;
}

.flow-section h2 {
  font-family: 'Sinthya', cursive;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 0rem;
  margin: 20px 0 40px;
  color: var(--dark);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.15);
}

.flow-section p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.site-header {
  margin-bottom: 0;
}
.flow-section {
  margin-top: 0;
}

/* ========== LINE ========== */
hr {
  border: none;          /* remove default border */
  height: 2px;           /* thickness of line */
  background-color: var(--dark); /* color */
  margin: 20px 0;        /* spacing above and below */
  width: 80%;            /* optional width */
  max-width: 600px;      /* optional max width */
  margin-left: auto;     /* center align */
  margin-right: auto;
}


/* ========== BOOKSY BUTTON (RE-DESIGNED) ========== */
.booksy-btn {
  background-color: var(--rose-gold);
  text-decoration: none;
  border-radius: 15px; /* Matches the source's aesthetic better */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px; /* Increased height to fit your logo comfortably */
  border: none;
  cursor: pointer;
  overflow: visible; /* Changed from hidden to show the shadow properly */
  position: relative;
  transition: background-color 0.2s; /* Only transition color, not movement */
  
  /* The "Unpressed" Shadow */
  box-shadow: inset 0px 1px 0px var(--rose-gold-light), 0px 6px 0px #994c56;
  top: 0;
}

/* The "Click" Effect */
.booksy-btn:active {
  top: 6px; /* Moves down by exactly the shadow height */
  box-shadow: inset 0px 1px 0px var(--rose-gold-light), inset 0px -1px 0px #994c56;
  background-color: var(--rose-gold);
}

.booksy-btn:hover {
  background-color: #a55c66; /* Slightly darker rose gold */
}

/* Background layer from source code for extra depth */
.booksy-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 5px;
  z-index: -1;
  border-radius: 15px;
  background-color: rgba(0,0,0,0.1); /* Subtle shadow on the ground */
}

.booksy-btn:active::before {
  top: -1px;
}

.booksy-logo {
  display: block;
  width: 80px; /* Scaled to fit the 140px button width */
  height: auto;
  pointer-events: none; /* Prevents logo from interfering with the click */
}

/* ========== SOCIAL ICONS ========== */
.social-icons {
  margin-top: 40px;
}

.social-icons a {
  display: inline-block;
  color: var(--rose-gold-light);
  font-size: 2.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.15);
  margin: 0 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #a55c66;
}

.contact-section {
  text-align: center;
  padding: 40px 20px;
}

.contact-details {
  margin: 20px 0 20px 0;
  font-size: 2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  color: #333;
}

.contact-details a {
  font-family: 'Colombia', sans-serif;
  color: var(--rose-gold-light);
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to right, var(--rose-gold), var(--rose-gold));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.4s ease, color 0.4s ease;
}

.contact-details a:hover {
  color: var(--rose-gold-light);
  background-size: 100% 100%;
}

/* ========== MAP ========== */
.map-tagline {
  font-family: 'Sinthya', cursive;
  font-weight: normal;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  color: var(--rose-gold-light);
}

#map {
  width: 100%;
  max-width: 100%;
  height: 300px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.15);
}

.map-label {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'Sinthya', cursive;
    font-size: 1.8rem !important; /* Slightly larger to match your branding */
    color: var(--rose-gold) !important; /* Using your variable for consistency */
    font-weight: normal; /* Script fonts usually look better normal than bold */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    
    /* Pull the text closer */
    margin-top: -10px !important; 
    line-height: 0.8 !important;
    white-space: nowrap;
}

.leaflet-tooltip-bottom:before {
    display: none !important; /* Ensures the little triangle is gone */
}
  
/* ========== FOOTER ========== */
.site-footer {
  margin-top: 60px;
  font-family: 'Colombia', sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  color: #ccc;
  position: relative;
  bottom: 0;
  width: 100%;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--rose-gold);
}

/* ========== RESPONSIVE STYLES FOR MOBILE ========== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .logo {
    width: 100%;
    max-width: auto;
    height: auto;
    margin-bottom: 10px;
  }

  .slogan {
    width: 60%;
    height: auto;
    padding: 0 1rem;
    margin-bottom: 100px;
  }

  .brand-text h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
  }

  .brand-text p {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
  }

  .social-icons a {
    font-size: 2rem;
    margin: 0 0.5rem;
  }

  .portfolio-items {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-item {
    width: 90%;
  }

  .portfolio-item img {
    height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .flow-section h2 {
    font-size: 1.6rem;
  }
}
