@charset "utf-8";
/* CSS Document */
/* General Styling */
:root {
    --primary-color: #FADADD; /* Blush Pink */
    --secondary-color: #D4AF37; /* Soft Gold */
    --tertiary-color: #FFFFF0; /* Ivory White */
    --text-dark: #333;
    --text-light: #555;
    --background-light: #f9f9f9;
    --border-color: #eee;
    --transition-speed: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    th, td {
      padding: 14px 18px;
      border: 1px solid #ddd;
      text-align: left;
      background-color: #fff;
    }
    th {
      background-color: #fce4ec;
      font-weight: bold;
    }

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: darken(var(--secondary-color), 10%); /* This won't work in pure CSS, but conceptually for color change */
    filter: brightness(0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #c7a134; /* Slightly darker gold */
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

.btn-primary:hover {
    background-color: #c7a134;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f7d5dd; /* Slightly darker pink */
    color: var(--text-dark);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Backgrounds */
.bg-light-pink {
    background-color: var(--primary-color);
}

/* --- Navbar --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 240, 0.95); /* Semi-transparent ivory white */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar .logo img {
    height: 60px; /* Adjust as needed for your logo size */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .book-now-btn {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.nav-links .book-now-btn:hover {
    background-color: #c7a134;
    transform: translateY(-2px);
    color: var(--tertiary-color); /* Ensure text color remains light on hover */
}

.nav-links .book-now-btn::after {
    display: none; /* Hide underline for button */
}

/* Burger menu for mobile */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
}

.burger div {
    width: 2rem;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Nav Toggle Animation */
.nav-active .burger .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-active .burger .line2 {
    opacity: 0;
}
.nav-active .burger .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- Hero Section (Home Page) --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tertiary-color);
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures video covers the entire area */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--tertiary-color);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--tertiary-color);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.hero-content .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* --- Page Hero Sections (for other pages) --- */
.page-hero {
    position: relative;
    width: 100%;
    height: 40vh; /* Shorter height for internal pages */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tertiary-color);
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    margin-top: 90px; /* To account for sticky header */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: var(--tertiary-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Specific Page Hero Backgrounds */
.about-hero {
    background-image: url('../assets/images/salon-interior-bg.jpg'); /* Placeholder */
}
.services-hero {
    background-image: url('../assets/images/services-bg.jpg'); /* Placeholder */
}
.gallery-hero {
    background-image: url('../assets/images/gallery-bg.jpg'); /* Placeholder */
}
.book-hero {
    background-image: url('../assets/images/book-bg.jpg'); /* Placeholder */
}
.contact-hero {
    background-image: url('../assets/images/contact-bg.jpg'); /* Placeholder */
}
.blog-hero {
    background-image: url('../assets/images/blog-bg.jpg'); /* Placeholder */
}


/* --- Welcome Section (Home Page) --- */
.welcome-section {
    background-color: var(--tertiary-color);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pastel-floral-texture.jpg'); /* Subtle background texture */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.welcome-section .container {
    position: relative;
    z-index: 1;
}

/* --- Services Preview Section (Home Page) --- */
.services-preview {
    background-color: var(--background-light);
}

.services-preview h2 {
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--tertiary-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* --- Testimonial Carousel --- */
.testimonials {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Add padding for dots */
}

.testimonial-carousel {
    position: relative; /* Parent for absolute positioning */
    width: 100%;
    overflow: hidden;
    min-height: 180px; /* Ensure enough height for content */
    padding: 0 40px; /* Added horizontal padding for content */
}

.testimonial-item {
    position: absolute; /* Keep all items absolute */
    width: calc(100% - 80px); /* Account for padding in carousel parent */
    top: 0;
    left: 40px; /* Offset by padding */
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden; /* Initially hidden */
    transition: opacity 1s ease-in-out, visibility 0s linear 1s; /* Hide visibility after opacity transition */
    z-index: 1; /* Default z-index */
    min-height: 150px; /* Sufficient height for content */
    display: flex; /* Use flex for centering content *within* the item */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible; /* Make visible immediately */
    transition: opacity 1s ease-in-out, visibility 0s linear 0s; /* Show visibility immediately */
    z-index: 2; /* Bring active item to front */
}

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
    max-width: 90%; /* Limit paragraph width within the item */
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word; /* Ensure long words break */
    overflow-wrap: break-word; /* Modern alternative for word-wrap */
}

.testimonial-item h4 {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    margin-top: 0;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* --- Instagram Feed (Placeholder) --- */
.instagram-feed {
    background-color: var(--tertiary-color);
}

.instagram-feed h2 {
    margin-bottom: 1rem;
}

.instagram-feed p a {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: underline;
}

.instagram-feed p a:hover {
    color: var(--secondary-color);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed);
}

.instagram-item:hover {
    transform: scale(1.03);
}

.instagram-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* --- About Us Page --- */
.about-intro {
    background-color: var(--tertiary-color);
}

.about-content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision-mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.vision-item, .mission-item {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
}

.vision-item h3, .mission-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Staff & Interior Carousel */
.staff-interior-carousel {
    background-color: var(--background-light);
}

.image-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    height: 500px; /* Fixed height for carousel items */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Placeholder background */
}

.carousel-item img, .carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color var(--transition-speed);
    z-index: 5;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.carousel-indicators .indicator.active {
    background-color: var(--secondary-color);
}


/* --- Services Page --- */
.service-category {
    background-color: var(--tertiary-color);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-category h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.service-category h2 .service-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.category-description {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-light);
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-category .service-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition-speed);
}

.service-category .service-item:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-category .service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-category .service-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-category .service-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* --- Gallery Page --- */
.gallery-section {
    background-color: var(--tertiary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 300px; /* Uniform height for gallery items */
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--tertiary-color);
    padding: 15px;
    transform: translateY(100%);
    transition: transform var(--transition-speed);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    margin: 0;
}


/* --- Booking Form Page --- */
.booking-form-section {
    background-color: var(--background-light);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--tertiary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #fefefe;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 218, 221, 0.5); /* Primary color with transparency */
}

.booking-form small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.booking-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.thank-you-message {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: #d4edda; /* Light green for success */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb;
    text-align: center;
    font-weight: 600;
}

/* --- Contact Page --- */
.contact-info-section {
    background-color: var(--tertiary-color);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-details h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.contact-details p {
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.contact-details p i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 3px; /* Align icon better with text */
}

.contact-details p a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-details p a:hover {
    color: var(--secondary-color);
}

.social-contact-icons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.social-contact-icons a {
    font-size: 1.8rem;
    color: var(--text-dark);
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.social-contact-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-map {
    flex: 2;
    min-width: 300px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-map h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.contact-map iframe {
    border-radius: 8px;
    margin-bottom: 10px;
}

.contact-map small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 10px;
}

.contact-form-section {
    background-color: var(--primary-color); /* Matches bg-light-pink */
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--tertiary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #fefefe;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 218, 221, 0.5);
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}


/* --- Blog Page (Placeholder) --- */
.blog-posts {
    background-color: var(--tertiary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card .card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card .post-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog-card .read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: color var(--transition-speed);
}

.blog-card .read-more:hover {
    color: var(--secondary-color);
}


/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-speed);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Scroll-to-top button --- */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 120px; /* Position above WhatsApp button */
    right: 40px;
    z-index: 999;
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

#scrollToTopBtn:hover {
    background-color: #c7a134;
    transform: translateY(-3px);
}

/* --- Footer --- */
footer {
    background-color: #222;
    color: var(--tertiary-color);
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-column p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-column i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}


---

## Media Queries for Responsiveness

```css
/* Tablets and small desktops */
@media (max-width: 992px) {
    .navbar .logo img {
        height: 50px;
    }
    .nav-links li {
        margin-left: 20px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .nav-links .book-now-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    /* Hero Section adjustments for smaller screens */
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Adjust video background for tablets if needed, or ensure it crops well */
    .video-background video {
        /* If you have a specific video optimized for smaller screens, you could use a <picture> element in HTML
           or load a different video source via JavaScript. For CSS, ensure it covers. */
        object-position: center top; /* Focus on the top part of the video */
    }

    /* Page Hero adjustments for tablets */
    .page-hero-content h1 {
        font-size: 3rem;
    }
    .page-hero {
        background-attachment: scroll; /* Disable parallax on tablets for performance/simplicity */
    }
    /* If you have a specific, cropped header image for tablet view: */
    /* .about-hero {
        background-image: url('../assets/images/salon-interior-bg-tablet.jpg');
    } */


    .service-grid, .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .carousel-item {
        height: 400px;
    }

    .contact-grid {
        flex-direction: column; /* Stack columns */
    }
    .contact-details, .contact-map {
        min-width: unset;
        width: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .navbar .logo img {
        height: 45px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 80px; /* Adjust based on header height */
        height: calc(100vh - 80px); /* Full height minus header */
        background-color: var(--tertiary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 990;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0; /* Hide initially for animation */
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .nav-links .book-now-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .burger {
        display: flex;
    }

    /* Hero Section adjustments for mobile phones */
    .hero-section {
        height: 70vh; /* Make hero section shorter on mobile */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        padding: 0 10px; /* Add horizontal padding to prevent text overflow */
    }
    .hero-content .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    /* Specific adjustment for video background on mobile if needed */
    .video-background video {
        /* If you have a portrait mode video for mobile, specify it in your HTML <source> tags
           or swap it via JavaScript. Otherwise, ensure object-fit: cover is sufficient. */
        object-position: center center; /* Ensure video is centered */
    }

    /* Page Hero adjustments for mobile phones */
    .page-hero {
        height: 30vh;
        margin-top: 70px;
        background-attachment: scroll; /* Disable parallax on mobile */
        /* If you have specific background images for mobile: */
        /* .about-hero {
            background-image: url('../assets/images/salon-interior-bg-mobile.jpg');
        } */
    }
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    /* General text and spacing adjustments for mobile */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    .lead { font-size: 1.1rem; }

    /* Tables */
    table {
        display: block; /* Make table scrollable */
        overflow-x: auto; /* Enable horizontal scrolling */
        white-space: nowrap; /* Prevent text wrapping within cells */
    }
    th, td {
        min-width: 150px; /* Ensure a minimum width for columns */
        white-space: normal; /* Allow text to wrap within the min-width */
    }

    .about-content-grid {
        flex-direction: column;
    }
    .about-text, .about-image {
        min-width: unset;
        width: 100%;
    }

    .vision-mission-grid {
        flex-direction: column;
    }
    .vision-item, .mission-item {
        min-width: unset;
        width: 100%;
    }

    .carousel-item {
        height: 300px;
    }
    /* Hide carousel buttons on very small screens if they are too intrusive */
    .prev-btn, .next-btn {
        display: none;
    }
    /* Adjust testimonial item width for better fit within mobile carousel */
    .testimonial-carousel {
        padding: 0 20px; /* Reduce padding for smaller screens */
    }
    .testimonial-item {
        left: 20px;
        width: calc(100% - 40px);
    }
    .testimonial-item p {
        font-size: 1rem;
    }


    /* Image grids adjustments */
    .service-grid, .instagram-grid, .gallery-grid, .blog-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px; /* Adjust gap */
    }
    .service-item img, .instagram-item img, .gallery-item img, .blog-card img {
        height: 200px; /* Standardize height for all grid images on mobile */
    }

    /* Form adjustments */
    .booking-form, .contact-form {
        padding: 20px; /* Reduce padding */
    }


    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    #scrollToTopBtn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 90px;
        right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .footer-column p, .footer-column ul li, .social-icons {
        justify-content: center; /* Center content in columns */
    }
    .social-icons {
        margin: 15px auto 0; /* Center social icons */
    }
}

/* Very Small Mobile Devices (e.g., iPhone 5/SE) */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-content .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .navbar .logo img {
        height: 40px;
    }

    .nav-links {
        width: 80%; /* Make mobile menu wider on very small screens */
    }

    .section-padding {
        padding: 30px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .testimonial-item p {
        font-size: 0.9rem;
    }

    .whatsapp-float, #scrollToTopBtn {
        bottom: 15px;
        right: 15px;
    }
    #scrollToTopBtn {
        bottom: 75px;
    }
}


/* Animations for mobile nav links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
