/* --- MODERN ABOUT PAGE STYLES (from user) --- */
:root {
  --primary-color: #d4af37;
  --primary-light: #f4e4a6;
  --primary-dark: #b8941f;
  --secondary-color: #2c2c2c;
  --secondary-light: #4a4a4a;
  --accent-color: #f8f5f0;
  --accent-dark: #e8e0d5;
  --text-primary: #2c2c2c;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #ffffff;
  --white: #ffffff;
  --black: #000000;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
  --gradient-secondary: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  --gradient-accent: linear-gradient(135deg, #f8f5f0 0%, #e8e0d5 100%);
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* --- HEADER & FOOTER STYLES FROM index.css --- */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Satisfy:wght@400&family=Phudu:wght@300;400;500&display=swap');

:root {
  --primary-color: #dfba9f;
  --secondary-color: #2c2c2c;
  --accent-color: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #faf8f5;
  --font-main: 'Work Sans', sans-serif;
  --font-script: 'Satisfy', cursive;
  --font-display: 'Phudu', cursive;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.navbar {
  background-color: var(--secondary-color) !important;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Existing button styling  */
.btn-booking {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-booking:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Mobile layout (below 768px) */
@media screen and (max-width: 768px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: stretch; /* Ensures items stretch to full width */
    padding: 0;
    width: 100%;
  }
  .navbar-nav {
    width: 100%;
  }
  .nav-item {
    width: 100%;
    text-align: left;
    margin-bottom: 5px; /* Space between menu items */
  }
  .nav-link {
    padding: 10px;
    display: block; /* Ensure full width */
    color: #fff; /* Match the image's text color */
    border-bottom: 1px solid #d4a373; /* Match the underline style from the image */
  }
  .nav-link.active {
    border-bottom-color: #d4a373; /* Highlight active item */
  }
  .btn-booking {
    margin-top: 10px;
    width: 22%;
    text-align: left;
    display: block;
    padding: 10px;
    box-sizing: border-box; /* Include padding in width calculation */
  }
}

/* Smaller Mobile (below 480px) */
@media screen and (max-width: 480px) {
  .btn-booking {
    padding: 6px 15px;
    font-size: 14px;
  }
  .nav-link {
    font-size: 14px;
  }
}

/* Footer Styles */
.footer-wrapper {
  background-color: var(--secondary-color);
  color: #fff;
  position: relative;
}

.subscribe-wrapper {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 0;
  text-align: center;
}

.subscribe-form h4 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.social-icon-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-item:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-content {
  padding: 80px 0 40px;
}

.footer-widget-area {
  margin-bottom: 40px;
}

.footer-widget-area .logo img {
  max-height: 80px;
  margin-bottom: 20px;
}

.widget-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.widget-title h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.foh-wrap {
  display: table;
  width: 100%;
}

.foh-row {
  display: table-row;
}

.foh-date,
.foh-time {
  display: table-cell;
  padding: 8px 0;
  color: #ccc;
}

.foh-date {
  font-weight: 600;
  width: 40%;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ================== FLOATING BUTTONS ================== */
/* Floating Action Buttons */
.freeze-footer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.freeze-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn_call_now,
.btn_make_appointment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  background: gray;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn_call_now {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn_make_appointment {
  background: linear-gradient(135deg, #d9a679, #c9a480);
}

/* Icon styling with animation */
.btn_call_now img,
.btn_make_appointment img {
  width: 28px;
  height: 28px;
  animation: bounce 2s infinite ease-in-out;
}

/* Hover effect */
.btn_call_now:hover,
.btn_make_appointment:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn_call_now:hover img,
.btn_make_appointment:hover img {
  animation: pulse 0.6s ease;
}

/* Responsive */
@media (max-width: 480px) {
  .freeze-footer {
    bottom: 20px;
    right: 20px;
  }

  .btn_call_now,
  .btn_make_appointment {
    width: 70px;
    height: 70px;
  }

  .btn_call_now img,
  .btn_make_appointment img {
    width: 25px;
    height: 25px;
  }
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Pulse animation for hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* --- END HEADER & FOOTER STYLES --- */

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 80px;
    background: #f5f0eb;
}

.contact-section h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.salon-info h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details-list {
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail p {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 1rem;
}

.contact-detail i {
    margin-right: 10px;
    color: #d4af37;
    width: 20px;
}

.salon-image {
    margin-top: 30px;
}

/* Contact Page Styles (tiếp theo) */
.salon-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #b8941f;
}

.follow-us h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.youtube {
    background: #ff0000;
}

.map-section {
    margin-top: 60px;
}

.map-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive styles for contact page */
@media (max-width: 991px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section {
    padding: 100px 0 50px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0 30px;
  }
  .contact-main {
    gap: 24px;
  }
  .contact-form-section {
    padding: 24px 10px;
  }
  .form-container h3,
  .follow-us h3 {
    font-size: 1rem;
  }
  .salon-info h2 {
    font-size: 2rem;
  }
  .contact-section h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .map-section {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0 10px;
  }
  .contact-form-section {
    padding: 12px 2px;
  }
  .salon-image img,
  .map-container {
    border-radius: 8px;
  }
  .contact-section h1 {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .contact-main {
    align-items: stretch;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .salon-image {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    height: 100%;
  }
  .salon-image img {
    height: 100%;
    object-fit: cover;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    display: block;
  }
}

