/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f2f3;
    color: #333;
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    display: block;
}

/* Colour Palette */
:root {
    --primary: #ac2f72;
    --primary-light: #ea7dbc;
    --dark: #333;
    --light: #fff;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}
.logo {
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}
.logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-links li a:hover {
    color: var(--primary-light);
}

/* Mobile Nav */
.mobile-only {
    display: none;
}
#menuToggle {
    position: relative;
}
#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -6px;
    right: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
#menuToggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}
#menuToggle input:checked ~ span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#menuToggle input:checked ~ span:nth-child(2) {
    opacity: 0;
}
#menuToggle input:checked ~ span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
#mobileMenu {
    position: absolute;
    right: 0;
    top: 40px;
    background-color: var(--primary);
    width: 200px;
    list-style: none;
    padding: 1rem;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    border-radius: 0 0 4px 4px;
}
#mobileMenu li {
    margin-bottom: 1rem;
}
#mobileMenu li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
}
#menuToggle input:checked ~ #mobileMenu {
    transform: translateX(0);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    transition: background-image 1s ease-in-out;
    margin-top: 60px; /* offset for fixed nav */
}
.hero-content {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2rem 3rem;
    border-radius: 12px;
    max-width: 600px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.hero-content h1 span {
    font-weight: 700;
}
.hero-content h1 em {
    font-style: italic;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
}
.btn:hover {
    background-color: var(--primary-light);
}
.btn:active {
    box-shadow: 0 0 10px rgba(172, 47, 114, 0.5);
}
.cta-btn {
    margin-top: 2rem;
}
.service-btn {
    margin-right: 0.5rem;
}
.call-btn {
    background-color: var(--primary-light);
}
.call-btn:hover {
    background-color: var(--primary);
}
.promo-btn {
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.promo-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}
.more-btn {
    background-color: var(--primary);
    color: var(--light);
    padding: 0.8rem 2rem;
}
.more-btn:hover {
    background-color: var(--primary-light);
}

.insta-btn {
    background-color: #0095f6; /* Instagram blue */
    color: var(--light);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}
.insta-btn:hover {
    background-color: #007acc;
}

.contact-btn {
    margin-top: 1.5rem;
}

/* ===== TAGLINE ===== */
.tagline-section {
    background-color: var(--light);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
}

/* ===== SERVICES GRID ===== */
.services-section {
    padding: 4rem 1rem;
    background-color: #fdfdfd;
    text-align: center;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    position: relative;
    width: 250px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.service-info {
    padding: 1rem;
    text-align: center;
}
.service-info h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}
.service-info .price {
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 0.3rem;
}
.rating {
    color: #f5c518;
    font-size: 0.9rem;
}
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(172, 47, 114, 0.9);
    color: var(--light);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}
.service-overlay p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}
.service-overlay .btn {
    margin: 0.2rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.more-services {
    margin-top: 2rem;
}

/* ===== PROMO SECTION ===== */
.promo-section {
    position: relative;
    height: 350px;
    background-image: url('grooming.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4rem;
}
.promo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.promo-overlay {
    position: relative;
    max-width: 600px;
    color: var(--light);
}
.promo-overlay small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f0f0f0;
}
.promo-overlay h2 {
    font-size: 2.2rem;
    margin: 0.5rem 0 1rem;
}
.promo-overlay h2 span {
    color: var(--primary-light);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--light);
    padding: 4rem 1rem;
    text-align: center;
    line-height: 1.6;
}
.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    background-color: #fdfdfd;
    padding: 4rem 1rem;
    text-align: center;
}
.founder-container {
    max-width: 1000px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.founder-photo {
    flex: 1 1 300px;
    border-radius: 8px;
    height: 300px;
    object-fit: cover;
}
.founder-bio {
    flex: 1 1 400px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    background-color: #f4f2f3;
    padding: 4rem 1rem;
}
.experience-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.experience-text {
    flex: 1 1 400px;
    color: var(--dark);
}
.experience-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.experience-text h2 span {
    color: var(--primary-light);
}
.experience-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.view-work-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.view-work-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}
.experience-image {
    flex: 1 1 400px;
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 8px;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 4rem 1rem;
    background-color: var(--light);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.gallery-img:hover {
    transform: scale(1.05);
}
.instagram-follow {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.insta-handle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background-color: #fdfdfd;
    padding: 4rem 1rem;
    text-align: center;
}
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1 1 250px;
    font-style: italic;
}
.testimonial span {
    display: block;
    margin-top: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #f4f2f3;
    padding: 4rem 1rem;
    text-align: center;
}
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.contact-info {
    flex: 1 1 300px;
    text-align: left;
}
.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.contact-info a {
    color: var(--dark);
    text-decoration: none;
}

a.contact-btn{
    color:#fff;
}

.contact-info a:hover {
    color: var(--primary);
}
.contact-info h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
}
.open-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-image {
    flex: 1 1 300px;
    text-align: center;
}
.contact-image img {
    border-radius: 8px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background-color: var(--light);
    padding: 4rem 1rem;
    text-align: center;
}
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 3rem 1rem 2rem;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}
.footer-column {
    flex: 1 1 200px;
}
.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}
.footer-column p, .footer-column a {
    font-size: 0.9rem;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--primary-light);
}
.footer-column i {
    margin-right: 5px;
}
.footer-bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #eee;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}
#modalCaption {
    margin: 1rem auto;
    display: block;
    max-width: 80%;
    color: var(--light);
    text-align: center;
    font-size: 1rem;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
    padding: 8rem 1rem 4rem;
    background-image: url('shop.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--light);
    position: relative;
}
.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.services-hero h1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-top: 0;
    color: var(--light);
}
.full-services-section {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
.services-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.services-intro strong {
    font-weight: 600;
    color: var(--primary);
}
.service-category {
    margin-bottom: 3rem;
}
.service-category h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
}
.service-category ul {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}
.service-category li {
    margin-bottom: 0.6rem;
}
.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        padding: 1.5rem 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .cta-btn {
        margin-top: 1rem;
    }
    .service-card {
        width: 100%;
        max-width: 300px;
    }
    .promo-section {
        padding-left: 2rem;
        height: auto;
        padding: 3rem 1rem;
    }
    .promo-overlay h2 {
        font-size: 1.8rem;
    }
    .founder-container {
        flex-direction: column;
        align-items: center;
    }
    .experience-container {
        flex-direction: column-reverse;
    }
    .experience-image {
        width: 100%;
        height: 200px;
    }
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-info {
        text-align: center;
    }
    .contact-image img {
        height: 200px;
    }
    .instagram-follow {
        flex-direction: column;
        gap: 1rem;
    }
}


