/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === BASE STYLES === */
body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

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

/* === HEADINGS === */
h1, h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
}

/* === HEADER & NAV === */
header {
    background: #5D8E7B;
    color: #fff;
    width: 100%;
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 80px;          /* visually large */
    width: auto;
}

.logo span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D9A557;
    white-space: nowrap;
}

/* Nav links */
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #D9A557;
    text-decoration: none;
    font-weight: 600;
}

.nav ul li a:hover {
    opacity: 0.85;
}

/* Burger button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #D9A557;
    border-radius: 2px;
}


/* === HERO === */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    animation: heroSlideshow 18s infinite;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    z-index: -1;
}

@keyframes heroSlideshow {
    0%, 16% { background-image: url('Photos/PPS-1.jpg'); background-position: center 20%; }
    20%, 36% { background-image: url('Photos/PPS-2.jpg'); background-position: center 55%; }
    40%, 56% { background-image: url('Photos/PPS-3.jpg'); background-position: center 20%; }
    60%, 76% { background-image: url('Photos/PPS-4.jpg'); background-position: center 40%; }
    80%, 96% { background-image: url('Photos/PPS-5.jpg'); background-position: center 30%; }
    100% { background-image: url('Photos/PPS-1.jpg'); background-position: center 20%; }
}

.hero h1,
.page-hero h1 {
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* === BUTTONS === */
.btn {
    background: #5D8E7B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Lora', serif;
}

.btn:hover {
    opacity: 0.9;
}

/* === SECTIONS === */
section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
}

section h2 {
    font-weight: 700;
}

/* === CARDS & SERVICES === */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    align-items: stretch; /* key line */
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    text-align: center;
}

.card h3,
.review-card h3,
.value-card h3 {
    font-weight: 600;
}

/* === ABOUT PAGE === */
.page-hero {
    padding: 70px 40px;
    text-align: center;
    background: #edfdf2;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #5D8E7B;
    margin-bottom: 15px;
}

.page-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
}

.about-content {
    max-width: 1100px;
    margin: auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #5D8E7B;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-text ul {
    margin-top: 20px;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
}

.about-image {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    background-image: url('Photos/PPS-About.jpg');
    background-size: cover;
    background-position: center 65%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.values {
    background: #ffffff;
    padding: 80px 40px;
}

.values-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.value-card h3 {
    margin-bottom: 10px;
    color: #5D8E7B;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }
}

/* === REVIEWS PAGE === */
.reviews {
    max-width: 1200px;
    margin: auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #D9A557;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: #5D8E7B;
}

.review-meta {
    font-size: 0.85rem;
    opacity: 0.7;
}

.fb-reviews-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #5D8E7B;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

.fb-reviews-btn:hover {
    opacity: 0.9;
}

/* === GALLERY PAGE === */
.gallery {
    max-width: 1400px;
    margin: auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox::after {
    content: "✕";
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery img {
        height: 220px;
    }
}

/* === FOOTER === */
footer {
    background: #1a202c;
    color: #fff;
    padding: 30px 40px;
    text-align: center;
    margin-top: 60px;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

/* === CONTACT PAGE === */

.contact-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-grid .card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
}

.contact-grid h2 {
    color: #5D8E7B;
    margin-bottom: 15px;
}

.contact-grid p,
.contact-grid a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Social box */
.social-box {
    margin-top: 30px;
    padding: 30px;
    border-radius: 16px;
    background: #edfdf2;
    text-align: center;
}

.social-box h3 {
    color: #5D8E7B;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;          /* ← ADD */
}

.social-links a {
    padding: 12px 26px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;          /* ← ADD */
}

.social-links .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-links .facebook {
    background: #1877f2;
}

/* Contact form */
form label {
    font-weight: 600;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px;
    margin: 8px 0 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-family: 'Lora', serif;
}

form button {
    background: #5D8E7B;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form button:hover {
    opacity: 0.9;
}

/* Feedback messages */
.success {
    color: #5D8E7B;
    margin-bottom: 15px;
    font-weight: 600;
}

.error {
    color: #c53030;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Floating contact buttons */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
    max-width: calc(100vw - 32px);         /* ← ADD */
}

.floating-contact a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;     /* ← fixes underline */
    line-height: 1;            /* ← prevents icon offset */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: floatBounce 3s infinite;
}

.floating-contact .whatsapp {
    background: #25d366;
}

.floating-contact .messenger {
    background: #1877f2;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Contact responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Meet George */
/* Meet Georgie section */
.meet-georgie {
    background: #f9f9f9;
    padding: 80px 40px;
}

.meet-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.georgie-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Text */
.georgie-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #2f855a;
}

.georgie-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 900px) {
    .meet-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .georgie-text h2 {
        margin-top: 30px;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #D9A557; /* same colour as title */
    border-radius: 2px;
}


@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #5f8f7b;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links a {
        color: #D9A557;
        font-size: 18px;
    }
}

/* === MOBILE NAVIGATION === */
@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #5f8f7b;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
    }

    .logo span {
        font-size: 1.15rem;   /* smaller text on mobile */
    }

    .nav ul.active {
        display: flex;
    }

    .nav ul li {
        padding: 12px 0;
    }

    .nav ul li a {
        font-size: 18px;
        color: #D9A557;
    }

    /* Prevent logo overflow */
    .logo img {
        height: 64px;
    }
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* === CONTACT BUTTONS === */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
    margin: 2rem auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* WhatsApp */
.contact-btn.whatsapp {
    background-color: #25D366;
}

/* Messenger */
.contact-btn.messenger {
    background-color: #0084FF;
}

.sub-title {
    text-align: center;
    color: #6A9575;
}

/* === FLOATING CHAT BUTTONS === */
.floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.chat-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* WhatsApp */
.chat-btn.whatsapp {
    background-color: #25D366;
}

/* Messenger */
.chat-btn.messenger {
    background-color: #0084FF;
}

/* Mobile spacing safety */
@media (max-width: 480px) {
    .floating-chat {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {

    .contact-grid {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-grid .card {
        margin-left: auto;
        margin-right: auto;
    }

}

/* Mobile & tablet safety */
@media (max-width: 900px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }
}