@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Define theme colors and fonts at the root level */
:root {
    --font-primary: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-heading-brand: 'Alex Brush', serif;

    --color-text: #6B4E3D;
    /* Deep Taupe - calm for body text */
    --color-bg: #fefefe;
    /* Clean white background */

    --color-accent: #D8C3A5;
    /* Warm Sand - soft highlight color */
    --color-accent-dark: #A47551;
    /* Muted Tan - contrast background or hover */

    --color-gradient-start: #BF9B7A;
    /* Clay Gold - for button or gradient start */
    --color-gradient-end: #8C5E58;
    /* Rosewood - for gradient end or accents */

    --color-navbar: #F7EFE7;
    /* Creamy Beige - navbar and section backgrounds */
    --color-white: #ffffff;
    --color-overlay: rgba(0, 0, 0, 0.4);
}

a.btn-primary,
a.btn-outline,
.btn-primary,
.btn-outline {
    text-decoration: none;
}


/* Base styles */
body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #2a2a2a;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--color-gradient-start), var(--color-gradient-end));
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    color: var(--color-white);
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--color-gradient-end), var(--color-gradient-start));
    transform: scale(1.05);
}

:root {
    --color-navbar-bg: rgba(255, 255, 255, 0.8);
    --color-navbar-text: #AE8F65;
    --color-navbar-blur: blur(10px);
    --color-navbar-hover: #846745;
}

.custom-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    backdrop-filter: var(--color-navbar-blur);
    background-color: var(--color-navbar-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 100px;
}

.custom-navbar.shrink {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-navbar .brand {
    font-family: var(--font-heading-brand);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
}

.nav-links li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: var(--color-navbar-hover);
}

.nav-links .social-icons a {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-left: 0.8rem;
}

.nav-links .social-icons a:hover {
    color: var(--color-navbar-hover);
}

/* Toggle menu for small screens */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-navbar-text);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: none;

    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        padding: 2rem 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1100;
        opacity: 0;
        pointer-events: none;
        align-items: center;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        pointer-events: auto;
    }


    .nav-links li {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s !important;
        width: 100%;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links .social-icons {
        flex-direction: row;
        justify-content: center;
    }

    .menu-toggle {
        /* position: fixed; */
        top: 1.5rem;
        right: 1.5rem;
        width: 32px;
        height: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1101;
        padding: 0;
        margin-right: 0;
    }


    .menu-toggle .bar {
        height: 3px;
        width: 24px;
        background-color: var(--color-text);
        border-radius: 2px;
        transition: all 0.3s ease;
    }


    /* Animate to X when nav is active */
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

}

/* Sub-links default styles */
.sub-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Mobile View: show sub-links below the main link */
@media (max-width: 991px) {
    .services-group .sub-links {
        display: block;
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .services-group .sub-links li a {
        display: block;
        padding: 0.4rem 0;
        color: var(--color-text);
        font-size: 0.95rem;
    }
}

/* Desktop View: dropdown on hover */
@media (min-width: 992px) {
    .services-group {
        position: relative;
    }

    .services-group .sub-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--color-white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        min-width: 180px;
        padding: 0.5rem 1rem;
        z-index: 999;
        border-radius: 0.4rem;
    }

    .services-group:hover .sub-links {
        display: block;
    }

    .services-group .sub-links li {
        margin: 0.3rem 0;
    }

    .services-group .sub-links li a {
        color: var(--color-text);
        font-size: 0.95rem;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
    }

    .services-group .sub-links li a:hover {
        color: var(--color-accent-dark);
    }
}


.about-container-unstuck {
    margin-top: 70px;
}

.hero-bg-unstuck {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/new-5.jpg') center center/cover no-repeat;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero3-edited.jpg') center center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 0, 0, 0.5);
    /* Dark overlay for readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 2rem;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: #ddd;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-outline-light {
    padding: 0.6rem 1.4rem;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--color-gradient-end);
    border-color: var(--color-gradient-end);
    color: #fff;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-content {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
}


.external-links-section {
    background-color: #f8f4f0;
    /* soft background */
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.external-links-container {
    text-align: center;
}

.external-links-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.external-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.external-links a {
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.external-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--color-gradient-start);
    bottom: -4px;
    left: 0;
    transition: 0.3s ease;
}

.external-links a:hover {
    color: var(--color-gradient-start);
}

.external-links a:hover::after {
    width: 100%;
}

.stats-section {
    background-color: var(--color-bg);
    padding: 4rem 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1 1 200px;
    max-width: 220px;
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--color-gradient-start);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text);
}



/* About */
.about-section {
    padding: 4rem 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)),
        url('../images/about-img.jpeg') center/cover no-repeat;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-image-wrapper {
    flex: 1 1 38%;
    display: flex;
    justify-content: center;
}

.about-image-border {
    padding: 2px;
    /* background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end)); */
    border-radius: 30px;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 80%;
    border-radius: 30px;
    object-fit: cover;
    border: 2px solid white;
}

.about-content {
    flex: 1 1 58%;
    max-width: 550px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent-dark);
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image-border {
        width: 500px;
        height: 700px;
        margin-bottom: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
}


@media (max-width: 526px) {
    .about-image-border {
        width: 300px;
        height: 500px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 426px) {
    .about-image-border {
        width: 250px;
        height: 350px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 330px) {
    .about-image-border {
        width: 250px;
        height: 350px;
        margin-bottom: 1.5rem;
    }
}

.story-section {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.story-content h3 {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: var(--color-accent-dark);
    font-family: var(--font-heading);
}

.story-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.story-content ul li {
    margin-bottom: 0.6rem;
    list-style: disc;
}

.story-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #f9f6ff;
    border-left: 4px solid var(--color-accent);
    color: var(--color-accent-dark);
}



/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--color-accent-dark);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}


/* Testimonials */
.testimonials-section {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.85)),
        url('../images/testimonials.png') center/cover no-repeat;
    padding: 5rem 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 1.5rem;
    padding: 2rem 2rem 2.5rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(92, 77, 125, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(92, 77, 125, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(92, 77, 125, 0.12);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-name {
    background-color: var(--color-accent);
    color: white;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    display: inline-block;
}

.quote-icon {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}


.image-tag-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.image-tags-section {
    padding: 4rem 0;
}

.tag-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    background: var(--color-white);
}

.tag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    text-align: left;
}

.tag-overlay p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.4;
}

.tag-mini-caption {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--color-accent-dark);
    margin-top: 0.4rem;
    display: block;
}

.cta-minimal {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-accent);
    padding: 2rem 1.2rem;
    border-radius: 14px;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.cta-minimal .cta-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.cta-minimal .cta-sub {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.4rem;
}

.cta-minimal .btn-primary {
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(to right, var(--color-gradient-start), var(--color-gradient-end));
    color: var(--color-white);
    border: none;
    transition: all 0.3s ease;
}

.cta-minimal .btn-primary:hover {
    transform: scale(1.04);
    background: linear-gradient(to right, var(--color-gradient-end), var(--color-gradient-start));
}


.custom-icon-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.custom-icon-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.custom-icon-list i {
    margin-right: 0.6rem;
    font-size: 1rem;
}

.icon-red {
    color: #c0392b;
    /* soft red */
}

.icon-green {
    color: #2ecc71;
    /* soft green */
}


.contact-section {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.85)),
        url('../images/contact-bg.jpg') center/cover no-repeat;
    padding: 5rem 2rem;
}

.contact-wrapper {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    font-family: var(--font-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(92, 77, 125, 0.1);
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-details a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    font-size: 1.4rem;
    margin: 0;
    color: #AE8F65;
}

.contact-section .social-icons a {
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-accent-dark);
}

.brochure-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.brochure-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.brochure-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 1.8rem;
    padding: 0 9px;
    height: auto;
    width: auto;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.site-footer {
    background: #AE8F65;
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: start;
}

.footer-brand h3 {
    font-family: var(--font-heading-brand);
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    color: var(--color-white);
}

.footer-brand p {
    max-width: 320px;
    color: #fdfdfd;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.2rem;
}

.footer-links ul li a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--color-gradient-start);
}

.social-icons a {
    color: #f8f8f8;
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-gradient-end);
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #f1f1f1;
}

.footer-bottom .dev-credit {
    margin-top: 0.3rem;
    font-style: italic;
    font-size: 0.7rem;
    /* Reduced from 0.9rem */
    opacity: 0.7;
    /* More subtle */
}

.footer-bottom .dev-credit a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
}

.footer-bottom .dev-credit a:hover {
    color: var(--color-gradient-start);
    text-decoration: underline;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--color-white);
    color: var(--color-accent-dark);
    border: 2px solid var(--color-accent);
    padding: 0.5rem 1.2rem;
    margin: 0.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gradient-start);
    color: white;
    border-color: var(--color-gradient-start);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.caption {
    display: block;
    padding: 0.5rem 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
}