/*
* Skizzers Hair Design - Main Stylesheet V1.0
* Theme: Earthy Brown (#d7b295), Dark Brown (#3e2c1b), Medium Brown (#97795e)
* Fonts: Victorian Title (Custom), Cambria (Body)
* Author: Gemini (Adapted from Vivid Vibes)
* Version: 1.0
*/

/* =====================
    FONTS
===================== */
@font-face {
    font-family: 'VictorianTitle';
    src: url('../fonts/vic.otf'); /* Adjust path if needed */
    font-weight: normal;
    font-style: normal;
}

/* =====================
    GLOBAL STYLES & VARIABLES
===================== */
:root {
    --primary-bg: #d7b295; /* Light earthy brown */
    --secondary-bg: #97795e; /* Medium brown (for post-wave sections) */
    --button-bg: #3e2c1b; /* Dark brown */
    --button-hover-bg: #5a412a; /* Slightly lighter dark brown for hover */
    --text-dark: #3e2c1b; /* Dark brown */
    --text-light: #ffffff; /* White for contrast on dark elements */
    --text-medium: #5c4e41; /* A slightly lighter brown for some body text */
    --gold-star: #b59410; /* Muted gold for stars */
    --white: #ffffff;
    --shadow-light: rgba(62, 44, 27, 0.1); /* Shadow based on dark brown */
    --shadow-medium: rgba(62, 44, 27, 0.18);
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 25px;
    --transition-fast: all 0.2s ease-in-out;
    --transition-medium: all 0.4s ease-in-out;
    --transition-slow: all 0.8s ease;
    --font-primary: Cambria, Georgia, serif; /* Cambria with fallbacks */
    --font-title: 'VictorianTitle', serif; /* Custom Victorian font */
    --page-max-width: 850px; /* Max width for centered content on desktop */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-medium);
    background-color: var(--primary-bg); /* Background applied to body */
    overflow-x: hidden;
    line-height: 1.7; /* Slightly increased line height for readability */
}

/* Centered Page Wrapper with Shadow */
.page-wrapper {
    max-width: var(--page-max-width);
    margin: 0 auto;
    background-color: var(--primary-bg); /* Inner background */
    box-shadow: 0 5px 25px var(--shadow-medium); /* Shadow on the wrapper */
    position: relative; /* Needed for potential absolute elements inside */
    overflow: hidden; /* Prevents horizontal scroll from shadow/content */
}


.container {
    width: 100%;
    /* max-width removed here, handled by page-wrapper */
    margin: 0 auto;
    padding: 0 25px; /* Slightly more padding */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--button-bg); /* Links use the dark brown */
    transition: var(--transition-fast);
}

a:hover {
    color: var(--button-hover-bg);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: normal; /* Reset default bold */
    margin-bottom: 1rem;
}

/* Section Headings using Victorian Font */
h2.section-heading {
    font-family: var(--font-title);
    text-align: center;
    font-size: 2.8rem; /* Larger title font */
    margin-bottom: 1.5rem; /* Adjusted margin */
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0; /* Remove padding/underline from global h2 */
    font-weight: normal;
    line-height: 1.2;
}

h2.section-heading::after {
    content: none; /* Remove the underline from the original style */
}

h3 { /* Sub-headings like "Meet Darnell", "Visit Us" etc. */
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: normal;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-medium);
}


.text-center {
    text-align: center;
}

/* =====================
    BUTTON STYLES
===================== */
.btn {
    display: inline-block;
    padding: 10px 25px; /* Slightly adjusted padding */
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-medium);
    font-weight: 600; /* Keep buttons slightly bold */
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    font-family: var(--font-primary); /* Ensure buttons use body font */
}

.book-btn {
    background-color: var(--button-bg);
    color: var(--text-light); /* White text on dark button */
    box-shadow: 0 4px 10px var(--shadow-light);

}

.book-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-medium);
}

.btn-text { /* For "View All Reviews" */
    color: var(--button-bg);
    font-weight: 600;
    display: inline-block;
    margin: 1.5rem 0 0.5rem; /* Adjusted margin */
    position: relative;
    padding-bottom: 3px;
    font-size: 1rem;
    border-bottom: 2px solid transparent; /* Prepare for hover effect */
}


.btn-text:hover {
    color: var(--button-hover-bg);
    border-bottom-color: var(--button-hover-bg);
}

.directions-btn {
    background-color: var(--button-bg);
    color: var(--text-light);
    margin-top: 1rem; /* Adjusted margin */
    box-shadow: 0 4px 10px var(--shadow-light);
}
.directions-btn i {
    margin-right: 8px;
}

.directions-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-medium);
}


/* =====================
    HEADER & NAVIGATION
===================== */
.header {
    padding: 12px 0;
    background-color: var(--primary-bg);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%; /* Needs to span viewport for sticky */
    z-index: 1000;
    /* Apply shadow within the wrapper */

     /* Ensure header is edge-to-edge within the wrapper */
     max-width: var(--page-max-width);
     margin: 0 auto; /* Center header content */
}


.header.scrolled {
    padding: 8px 0;
    background-color: rgba(215, 178, 149, 0.95); /* Semi-transparent primary bg */
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* No logo container in navbar */

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 20px; /* Adjusted gap */
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600; /* Make nav links slightly bolder */
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase; /* Optional: Uppercase nav links */
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px; /* Position underline slightly below */
    left: 0;
    background-color: var(--button-bg);
    transition: width 0.3s ease;
}

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

.nav-icon {
    font-size: 1.5rem; /* Adjusted icon size */
    color: var(--text-dark);
    transition: var(--transition-fast);
}
.nav-icon:first-child { margin-right: 5px;} /* Space after first icon */

.nav-icon:hover {
    color: var(--button-bg);
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
    position: absolute; /* Position relative to header container */
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark); /* Dark bars */
    margin: 5px 0;
    transition: var(--transition-medium);
    border-radius: 2px;
}
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; /* Span full width of the wrapper */
    background-color: var(--primary-bg);
    box-shadow: 0 5px 10px var(--shadow-light);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(62, 44, 27, 0.1); /* Subtle top border */
}
.mobile-menu.active { display: block; }
.mobile-nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}
.mobile-nav-link:hover {
    background-color: rgba(62, 44, 27, 0.05); /* Very light brown hover */
    color: var(--button-bg);
}
.mobile-menu .book-btn { /* Style Book Now button in mobile menu */
    margin: 15px auto 5px;
    display: inline-block;
    width: auto;
}

/* =====================
    LOGO BANNER
===================== */
.logo-banner {
    padding: 10px 0 20px; /* Adjust padding as needed */
    background-color: var(--primary-bg);
}
.logo-main {
    display: block;
    margin: 0 auto;
    max-width: 100%; /* Ensure it fits within container */
    width: 600px; /* Adjust based on logo aspect ratio */
    height: auto;
}


/* =====================
    HERO SECTION (SWIPER)
===================== */
.hero {
    padding: 0; /* No padding needed as container handles it */
    background-color: var(--primary-bg);
    position: relative;
    /* No overflow hidden here, let plants overlay */
}
.hero-container {
    position: relative; /* Context for pagination and overlay */
}

.hero-swiper{
    box-shadow:0 0 15px #6a482cbd;
}

.hero-swiper {
    width: 100%;
    /* Height calculated based on 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
    max-height: calc(var(--page-max-width) * 9 / 16); /* Max height based on max width */
    min-height: 300px; /* Minimum height */
    margin: 0 auto; /* Center the swiper */
    position: relative; /* Needed for pagination */
}

.hero-swiper .swiper-slide {
    overflow: hidden;
    background-color: #eee; /* Placeholder bg color */
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pagination at the TOP */
.hero-swiper .swiper-pagination {
    position: absolute;
    top: 15px !important; /* Position at the top */
    bottom: auto !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Above slides */
    display:none;
}

.hero-pagination .swiper-pagination-bullet {
    background-color: var(--text-light); /* White bullets */
    opacity: 0.6;
    width: 9px;
    height: 9px;
    transition: var(--transition-fast);
    margin: 0 5px !important; /* Spacing for horizontal bullets */
}
.hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--text-light);
    opacity: 1;
    transform: scale(1.1);
}


/* Plant Overlay */
.plant-overlay-container {
    position: relative; /* Sits after swiper in flow */
    width: 100%;
    margin-top: -110px; /* Pull up over the swiper bottom edge - ADJUST AS NEEDED */
    z-index: 5; /* Above swiper, below pagination */
    pointer-events: none; /* Allow clicks/swipes through */
    line-height: 0; /* Prevent extra space */
}
.plant-overlay {
    display: block;
    width: 101%;
    height: auto;
}

/* =====================
    TAGLINE SECTION
===================== */
.tagline {
    padding: 10px 0 10px;
    background-color: var(--primary-bg);
    text-align: center;
}
.tagline-text {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 700px; /* Limit width of tagline */
    margin: 0 auto;
    font-weight: normal;
}

/* =====================
    ABOUT SECTION
===================== */
.about {
    background-color: var(--primary-bg);
    padding: 50px 0;
    position: relative;
}
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px; /* Increased gap */
}
.about-image {
    flex: 1 1 200px; /* Allow image to take space */
    max-width: 300px; /* Max width for the image */
    margin: 0 auto; /* Center if it wraps */
    text-align: center;
}
.darnell-img { /* Specific styling for Darnell's image */
    width: 100%;
    height: auto;
    /* NO border-radius, border, or box-shadow */
}
.about-text {
    flex: 1 1 400px; /* Allow text to take more space */
    max-width: 500px;
    margin: 0 auto; /* Center if it wraps */
}
.about-text h3 { /* Style "Meet Darnell" */
    margin-bottom: 1rem;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-medium);
}
.signature {
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-align: right;
    margin-top: 1rem;
}
.signature a {
    font-weight: 600;
    color: var(--text-dark);
}
.signature a:hover {
    color: var(--button-hover-bg);
}

/* =====================
    REVIEWS SECTION
===================== */
.reviews {
    padding: 10px 0;
    background-color: var(--primary-bg);
}
.reviews-container {
    position: relative;
}
.separator-img {
    display: block;
    margin: -4rem auto 2.5rem; /* Adjust spacing around separator */
    max-width: 40rem; /* Control separator size */
    height: auto;
    opacity: 0.8;
}

.review-swiper {
    width: 100%;
    padding: 10px 0 50px; /* Padding top/bottom */
    overflow: hidden;
}
.review-card {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%; /* Ensure cards are same height in a row */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(62, 44, 27, 0.1); /* Subtle border */
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}
.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-bg);
}
.reviewer-name {
    font-family: var(--font-primary); /* Use body font for names */
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.stars {
    color: var(--gold-star);
    margin-bottom: 15px;
    font-size: 1rem;
}
.review-text {
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
    flex-grow: 1; /* Allows text to fill space */
    margin-bottom: 0;
}
.review-pagination .swiper-pagination-bullet {
    background-color: var(--button-bg); /* Dark bullets */
    opacity: 0.4;
    width: 9px;
    height: 9px;
}
.review-pagination .swiper-pagination-bullet-active {
    background-color: var(--button-bg);
    opacity: 1;
}

/* =====================
    WAVY DIVIDER
===================== */
.wave-divider {
    position: relative;
    bottom: -1px; /* Prevent tiny gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px; /* Adjust height if needed */
}
.wave-fill {
    fill: var(--secondary-bg); /* Fill with the secondary background color */
}

/* =====================
    HOURS SECTION
===================== */
.hours {
    padding: 30px 0;
    background-color: var(--secondary-bg); /* Use secondary bg */
    color: var(--text-light); /* Light text on darker bg */
}
.hours .section-heading {
    color: var(--text-light); /* Light title */
}
.hours-list {
    max-width: 400px; /* Limit width of hours list */
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.08); /* Subtle background for list */
    padding: 25px 30px;
    border-radius: var(--border-radius-medium);
    text-align: center;
}
.hours-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.hours-list li {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list li span { /* Day name */
    font-weight: 600;
    margin-right: 10px;
}
.hours-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 1.5rem;
    color: var(--text-light);
}


/* =====================
    CONTACT SECTION
===================== */
.contact {
    padding: 10px 0;
    background-color: var(--secondary-bg); /* Use secondary bg */
    color: var(--text-light); /* Light text */
}
.contact .section-heading {
    color: var(--text-light); /* Light title */
}

/* Two Column Layout for Image and Info */
.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center; /* Vertically align items */
    margin-bottom: 40px; /* Space before map */
}
.contact-image {
    flex: 1 1 300px; /* Allow image to take space, basis 300px */
    max-width: 400px;
    margin: 0 auto; /* Center if wraps */
}
.contact-image img {
    border-radius: var(--border-radius-medium);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    flex: 1 1 350px; /* Allow info to take slightly more space */
    max-width: 450px;
     margin: 0 auto; /* Center if wraps */
}
.contact-info h3 {
    color: var(--text-light);
    font-size: 1.8rem; /* Reuse h3 style */
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); /* Lighter border */
    display: inline-block;
}
.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light); /* Ensure text is light */
}
.contact-info p i {
    margin-right: 12px;
    color: var(--text-light); /* Light icons */
    opacity: 0.8;
    width: 20px;
    text-align: center;
}
.contact-info p a {
    color: var(--white); /* White links */
    font-weight: 600;
}
.contact-info p a:hover {
    text-decoration: underline;
    color: var(--white);
}

/* Map Container - Below Columns */
.contact-map {
    /* Full width within container */
}
.map-container {
    position: relative;
    padding-bottom: 65%; /* Adjust aspect ratio for map */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 8px 20px var(--shadow-medium);
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =====================
    FOOTER
===================== */
.footer {
    background-color: var(--secondary-bg); /* Match contact section */
    padding: 40px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Lighter top border */
    color: var(--text-light); /* Light text in footer */
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separator before copyright */
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1; /* Allow links to take space */
    order: 0; /* Links first on mobile wrap */
}
.footer-link {
    color: var(--text-light);
    opacity: 0.9;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.footer-link:hover {
    opacity: 1;
    color: var(--white);
}
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    order: 1;
}
.social-link {
    font-size: 1.6rem;
    color: var(--text-light);
    opacity: 0.9;
}
.social-link:hover {
    opacity: 1;
    color: var(--white);
    transform: scale(1.1);
}
.copyright {
    text-align: center;
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.85rem;
    padding-top: 20px;
    margin-top: 0; /* Remove extra margin */
    border-top: none; /* Remove double border */
}
.copyright p {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    color: inherit;
}

/* =====================
    UTILITIES & ANIMATIONS
===================== */

/* Fade-in class (JS will add display: block/flex/etc.) */
.fade-in {
   opacity: 0;
   transition: opacity 0.8s ease-out;
   /* IMPORTANT: Let JS handle display property to avoid conflicts with flex/grid */
}

.fade-in.visible { /* Class added by JS after fade */
    opacity: 1;
}


/* =====================
    RESPONSIVE STYLES
===================== */

@media (max-width: 900px) {
     :root {
        --page-max-width: 100%; /* Remove max-width */
    }
    .page-wrapper {
        box-shadow: none; /* Remove shadow on smaller screens */
    }
     .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .header {
        padding: 20px 0;
        position: relative; /* Mobile header not sticky */
    }
    .header.scrolled {
        padding: 20px 0;
        background-color: var(--primary-bg);
        backdrop-filter: none;
    }
    .navbar { position: relative; justify-content: center; } /* Center the toggle */
    .nav-left, .nav-right { display: none; } /* Hide desktop nav */
    .mobile-nav-toggle { display: block; } /* Show mobile toggle */

    .logo-banner { padding: 0px 0 15px; }
    .logo-main { width: 80%; max-width: 400px; }

    .hero-swiper { min-height: 250px; }
    .plant-overlay-container { margin-top: -40px; } /* Adjust overlay */

    h2.section-heading { font-size: 2.4rem; margin-bottom: 1rem;}
    h3 { font-size: 1.6rem; }
    .tagline-text { font-size: 1.8rem; }

    .about, .reviews, .hours, .contact { padding: 10px 0; }
    .about-content { flex-direction: column; text-align: center; gap: 25px; }
    .about-image { max-width: 250px; }
    .signature { text-align: center; }

    .separator-img { max-width: 100%; margin: -3rem auto 2.5rem; }
    .review-card { padding: 20px; }
    .review-swiper { padding-bottom: 40px; }

    .hours-list { max-width: 90%; padding: 20px; }

    .contact-columns { flex-direction: column; gap: 30px; margin-bottom: 30px; }
    .contact-image, .contact-info { max-width: 100%; text-align: center;}
    .contact-info h3 { display: block; border-bottom: none; padding-bottom: 0; margin-bottom: 1rem; }
    .contact-info p { text-align: left; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto; max-width: 300px} /* Center text within info block */
    .contact-info p i { margin-right: 10px;}
    .directions-btn { margin: 1.5rem auto 0; display: inline-block; }

    .map-container { padding-bottom: 80%; } /* Adjust map aspect ratio */

    .footer-content { flex-direction: column; gap: 25px; text-align: center; padding-bottom: 20px; margin-bottom: 20px; }
    .footer-links { order: 1; gap: 20px; }
    .footer-social { order: 0; } /* Social icons first on mobile */
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 15px; }

    .logo-main { width: 90%; max-width: 300px; }
    .hero-swiper { min-height: 200px; }
    .plant-overlay-container { margin-top: -50px; }

    h2.section-heading { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    .tagline-text { font-size: 1.5rem; }

    .about-image { max-width: 200px; }
    .reviewer-img { width: 45px; height: 45px; }
    .reviewer-name { font-size: 1rem; }
    .review-text { font-size: 0.9rem; }

    .hours-list li { font-size: 1rem; padding: 6px 0; }

    .contact-info p { font-size: 1rem;}
     .btn { padding: 9px 20px; font-size: 0.9rem; }
    .directions-btn { font-size: 0.9rem;}
}