/* FONT IMPORTATION FROM GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root {
  /* PRIMARY COLORS (Background + Surface) */
  --color-bg-primary: #f9f7f5;      /* Whisper Cream soft off-white */ /* neutral background */
  --color-bg-secondary: #f9f7f5;    /* Mauve Whisper gentle warm tone */ /* secondary panels */ 
  --color-bg-alt: #eae5e1;          /* Gray Whisper soft grey */ /* alternative surface */ 

  /* ACCENT COLORS */
  --color-accent-light: #bab1a2;    /* soft blush tint */ /* subtle section accent */ 
  --color-accent-medium: #dac8c4;   /* Petal Whisper muted rose */ /* gentle accent */ 
  --color-accent-dark: #e4d1cd;     /* Lavender Whisper muted violet */ /* strong accent */ 

  /* TEXT COLORS */
  --color-text-primary: #333333;    /* deep charcoal for headings */ /* high contrast readable text */
  --color-text-secondary: #555555;  /* softer text */
  --color-text-muted: #777777;      /* muted supporting text */

  /* UI ELEMENTS */
  --color-button-bg: #272c35;       /* Petal Whisper */ /* primary CTA button */
  --color-button-hover: #353427d8;
  --color-button-text: #FFFFFF;     /* white text on buttons */
  --color-border: #E0E0E0;          /* light neutral border */
  --color-input-bg: #f5f2f0;        /* form input backgrounds */
  --color-input-text: #333333; 
  --color-border-clr: #ece9e6;

  /* BRAND COLORS */
  --color-brand-bg: #f1f0ee;
  --color-brand-panel: #f3f3f3e1;
  --color-brand-dark: #111111;
  --color-brand-gold: #E0E0E0;
  --color-brand-muted: #5c5c5c;
  --color-brand-gray: #b1a99f;
  --color-brand-alt: #cececed0;     

  /* SHADOWS */
  --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Logo optimization */
.logo-box img {
    display: block;
    width: 50px;
    height: 50px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-text-muted);
}

/* GENERAL ELEMENT DESIGN */
.active {
    color: var(--color-text-primary);
}

.padding {
    padding: 1rem 3rem;
}

/* HEADER SECTION DESIGN */
.navigation-section {
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.navigation-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s ease-in-out;
}

.navigation-div.show-bg {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-bg-alt);
}

.navigation-menu-bar nav ul {
    display: flex;
    gap: 2rem;
    font-size: 1.14rem;
    font-weight: 600;
}
.navigation-menu-bar nav ul a li {
    transition: .2s ease-in-out;
}
.navigation-menu-bar nav ul a li:hover {
    color: var(--color-text-secondary);
}

.book-button a button {
    border: 0;
    color: var(--color-button-text);
    background-color: var(--color-button-bg);
    font-size: .9rem;
    padding: .8rem 1.5rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.book-button a button:hover {
    background-color: var(--color-button-hover);
}

/* hide mobile hamburger by default; shown via media query */
.showmenu {
    display: none;
}

.showmenu button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    margin-left: auto;
}

.showmenu button:focus-visible {
    outline: 2px solid var(--color-accent-medium);
}

.showmenu svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .showmenu {
        display: block;
    }
    .showmenu svg {
        width: 28px;
        height: 28px;
    }
}

/* MOBILE SECTION NAVIGATION DESIGN */

/* HERO SECTION DESIGN */
.hero-div {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.5)),
    url("img/ann\'s\ img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 5rem;
    padding-top: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-texts h3 {
    font-weight: 400;
    font-size: .8rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    letter-spacing: .2rem;
    animation: blinked 2s infinite alternate;
}

@keyframes blinked {
    0%, 100% {
        color: var(--color-text-primary);
    }
    50% {
        color: var(--color-text-muted);
    }
}

.hero-texts h1 {
    color: var(--color-text-primary);
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
}
.hero-texts h2 {
    font-weight: lighter;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
    animation: blinked 2s infinite alternate;
}
.hero-texts p {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.4rem;
    margin-bottom: 2rem;
}

.hero-button a button {
    border: 0;
    color: var(--color-button-text);
    background-color: var(--color-button-bg);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.hero-button a button:hover {
    background-color: var(--color-button-hover);
}

/* OUR STORY SECTION DESIGN */
.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.about-div {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.about-image {
    width: 50%;
}
.about-image img {
    width: 35rem;
    height: 25rem;
    border-radius: .5rem;
}
.about-text {
    width: 50%;
}

.text-head {
    font-size: .75rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    letter-spacing: .2rem;
}

.about-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.text {
    color: var(--color-text-muted);
    font-size: .95rem;
    line-height: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text a button {
    border: 0;
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-text-muted);
    cursor: pointer;
    color: var(--color-text-muted);
    transition: .2s ease-in-out;
}
.about-text a button:hover {
    color: var(--color-text-secondary);
    border-bottom-color: var(--color-text-secondary);
}

/* WHAT WE OFFER SECTION DESIGN */
.service-section {
    background-color: var(--color-bg-alt);
}
.service-div {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.intro-text {
    text-align: center;
}
.intro-text p {
    font-size: .85rem;
    color: var(--color-text-muted);
    margin-bottom: .9rem;
    letter-spacing: .2rem;
}
.intro-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
}

.content-div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-content {
    background-color: var(--color-bg-primary);
    width: 25%;
    height: 12rem;
    padding: 2rem;
    border-radius: .4rem;
}
.text-content h3 {
    color: var(--color-text-primary);
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    margin-bottom: .4rem;
}
.text-content p {
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.5rem;
}

.next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.next-btn a button {
    border: 1px solid var(--color-text-muted);
    background-color: transparent;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    transition: .2s ease-in-out;
    cursor: pointer;
}
.next-btn a button:hover {
    background-color: var(--color-button-bg);
    color: var(--color-button-text);
}

/* PRICING TAB SECTION DESIGN */
.container {
    padding: 5rem 0;
}
.pricing-section {
    background: linear-gradient(135deg, var(--color-brand-bg), var(--color-brand-alt));
    color: var(--color-brand-dark);
    
}
.pricing-section .container {
    max-width: 1140px;
    margin: 0 auto;
}
.pricing-notice {
    background: var(--color-brand-dark);
    color: var(--color-brand-gold);
    font-weight: 700;
    letter-spacing: .1rem;
    padding: .8rem 1rem;
    border-radius: .5rem;
    text-align: center;
    margin-bottom: 1.2rem;
}
.pricing-section h2 {
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
    color: #111;
}
.pricing-tabs {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.tab-btn {
    background: var(--color-brand-panel);
    border: 1px solid var(--color-brand-gray);
    border-radius: 999px;
    color: var(--color-brand-dark);
    padding: .7rem 1rem;
    cursor: pointer;
    transition: all .2s ease;
}
.tab-btn:focus-visible {
    outline: 2px solid var(--color-brand-gold);
    outline-offset: 2px;
}
.tab-btn.active,
.tab-btn:hover {
    background: #111;
    color: #dddddd;
    border-color: #5e5e5e;
}
.tab-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
    display: none;
}
.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.bundle-card {
    border: 1px solid #bdbdbdbe;
    padding: 1rem;
    border-radius: .8rem;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.bundle-card h4 {
    color: #111;
    font-size: 1.1rem;
    margin-bottom: .4rem;
}
.bundle-card .price {
    color: #494131;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
.service-table {
    display: grid;
    gap: .7rem;
    margin-bottom: 1.2rem;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: .6rem;
    align-items: center;
    background: #fff;
    border: 1px solid #dcd3c9;
    border-radius: .6rem;
    padding: .7rem 1rem;
}
.service-row span {
    color: #333;
    font-weight: 500;
}
.service-row button,
.btn-secondary,
.pricing-section .btn-secondary {
    border: none;
    border-radius: .5rem;
    padding: .6rem 1rem;
    background: #111;
    color: #ececec;
    cursor: pointer;
    font-weight: 700;
    transition: .2s ease;
}
.btn-secondary {
    margin-top: .5rem;
}
.service-row button:hover,
.btn-secondary:hover,
.pricing-section .btn-secondary:hover {
    background: #333;
}
.included {
    font-weight: 600;
    color: #444;
}
@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        row-gap: .5rem;
    }
    .service-row button {
        justify-self: start;
    }
}

/* GALLERY SECTION DESIGN */
.gallery-div {
    padding-top: 6rem;
    padding-bottom: 5rem;
}
.first-gallery-text {
    text-align: center;
}
.first-gallery-text p {
    color: var(--color-text-muted);
    font-size: .85rem;
    margin-bottom: 1rem;
    letter-spacing: .2rem;
}
.first-gallery-text h2 {
    color: var(--color-text-primary);
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.add-image {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}
.image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: .4rem;
    cursor: pointer;
    transition: transform .5s ease-in-out, box-shadow .3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    contain: layout style paint;
}

.image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.background {
    background-size: cover;
}
.background:hover {
    transform: scale(1.05);
}

/* TESTIMONIAL SECTION DESIGN */
.testimonial-section {
    background-color: var(--color-bg-alt);
    font-size: .85rem;
    padding-top: 6rem;
    padding-bottom: 5rem;
    margin-top: 5rem;
}

.testimonial-text {
    text-align: center;
}

.testimonial-text p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    letter-spacing: .2rem;
}
.testimonial-text h2 {
    color: var(--color-text-primary);
    font-size: 2.5rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 2rem;
}
.content-testy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-content {
    width: 33%;
    height: 14rem;
    background-color: var(--color-bg-primary);
    padding: 2rem;
    border-radius: .5rem;
}

.stars svg {
    color: var(--color-accent-medium);
    margin-bottom: .9rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.name {
    color: var(--color-text-primary);
    font-weight: 800;
}

/* FOOTER SECTION DESIGN */
footer {
    background-color: var(--color-button-bg);
}

.footer-div {
    padding-top: 4rem;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.gap-adding {
    width: 100%;
}

.description {
    grid-column: 1;
}

.quick-links {
    grid-column: 2;
}

.get-in-touch {
    grid-column: 3;
    grid-row: 1 / 3;
}

.description h2 {
    font-family: "Playfair Display", serif;
    color: var(--color-bg-secondary);
    margin-bottom: .9rem;
}

.description p {
    color: var(--color-accent-light);
    font-size: .9rem;
}

.links h2 {
    font-family: "Playfair Display", serif;
    color: var(--color-bg-secondary);
    margin-bottom: .9rem;
    font-size: 1.2rem;
}

.quick-links ul {
    line-height: 1.8rem;
}

.quick-links ul a li {
    color: var(--color-accent-light);
    font-size: .9rem;
}

.get-in-touch ul {
    line-height: 1.8rem;
}
.get-in-touch ul a li {
    color: var(--color-accent-light);
    font-size: .99rem;
}

.icons-class {
    display: flex;
    align-items: center;
    gap: .2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    margin-top: .7rem;
    gap: .5rem;
}
.instagram-icon svg,
.facebook-icon svg,
.tiktok-icon svg {
    color: var(--color-accent-light);
}

.quick-links ul a li:hover,
.get-in-touch ul a li:hover,
.instagram-icon svg:hover,
.facebook-icon svg:hover,
.tiktok-icon svg:hover {
    color: var(--color-border);
}

.div-soup {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-button-bg);
    padding-top: 2rem;
    padding-bottom: 0;
    grid-column: 1 / -1;
}
.straight-line {
    width: 93%;
    height: .01rem;
    background-color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}
.copyright {
    text-align: center;
    padding-bottom: 2rem;
    background-color: var(--color-button-bg);
    grid-column: 1 / -1;
}
.copyright p {
    color: var(--color-accent-light);
    font-size: .9rem;
}

/* =========== ABOUT PAGE DESIGN ============ */
/* HEADER SECTION DESIGN */
.about-section-head {
    padding-top: 10rem;
}
.about-div-head {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-text-page {
    text-align: center;
    width: 50%;
}

.about-text-page h2 {
    font-size: .9rem;
    color: var(--color-text-muted);
    letter-spacing: .2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.about-text-page h1 {
    font-family: "Playfair Display", serif;
    color: var(--color-text-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.about-text-page p {
    color: var(--color-text-muted);
}

/* OUR STORY SECTION DESIGN */
.our-story-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding-top: 3.5rem;
}
.image-story-page {
    width: 45%;
    height: 40rem;
    background-image: url("img/story.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: .5rem;
}
.our-story-text {
    width: 50%;
}

.our-story-text h3 {
    font-family: "Playfair Display", serif;
    color: var(--color-text-primary);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.3rem;
}
.our-story-text p {
    color: var(--color-text-muted);
}

/* MISSION AND VISION SECTION DESIGN */
.mission-vission-section {
    background-color: var(--color-bg-alt);
    margin-top: 6rem;
}

.mission-vision-div {
    padding-top: 7rem;
    padding-bottom: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mission-text {
    width: 50%;
}

.mission-text h3 {
    font-size: .87rem;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: .2rem;
    margin-bottom: 1rem;
}
.mission-text h1 {
    font-family: "Playfair Display", serif;
    color: var(--color-text-primary);
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.mission-text p {
    color: var(--color-text-muted);
    line-height: 1.5rem;
}

/* JUST IMAGE SECTION DESIGN */
.just-image-div {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.just-image {
    background-image: url("img/Ann\'s\ Story\ Image.jpg");
    width: 100%;
    height: 40rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: .5rem;
}

/* WHY CHOOSE US SECTION DESIGN */
.why-choose-div {
    padding-top: 5rem;
    padding-bottom: 9rem;
}
.why-choose-head {
    text-align: center;

}
.why-choose-head h3 {
    color: var(--color-text-muted);
    font-size: .85rem;
    font-weight: 300;
    letter-spacing: .2rem;
    margin-bottom: 1rem;
}
.why-choose-head h1 {
    font-family: "Playfair Display", serif;
    color: var(--color-text-primary);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.why-choose-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.why-choose {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.love-choose {
    background-color: var(--color-accent-dark);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: .8rem;
}
.love-choose svg {
    color: var(--color-text-primary);
}
.why-choose h2 {
    font-family: "Playfair Display", serif;
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: .8rem;
}
.why-choose p {
    color: var(--color-text-muted);
    font-size: .85rem;
    line-height: 1.5rem;
}

/* ============ SERVICES PAGE DESIGN ============ */
.our-service-section-page {
    margin-top: 4rem;
    margin-bottom: 7rem;
}
.our-service-div-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}
.inside-service-creation {
    width: 100%;
    height: auto;
    min-height: 26.8rem;
    background-color: var(--color-input-bg);
    padding: 2.5rem;
    border: 1px solid var(--color-border-clr);
    border-radius: .5rem;
    margin-top: 0;
}

.inside-service-creation h1 {
    font-family: "Playfair Display", serif;
    color: var(--color-text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.inside-service-creation p {
    color: var(--color-text-muted);
    line-height: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: .05rem;
}
.inside-service-creation h4 {
    color: var(--color-text-muted);
    font-weight: 300;
    font-size: .95rem;
    letter-spacing: .2rem;
    margin-bottom: .8rem;
}
.inside-service-creation ul {
    margin-left: 1rem;
    margin-bottom: 2rem;
}
.inside-service-creation ul li {
    list-style: disc;
    line-height: 1.5rem;
    color: var(--color-text-muted);
    letter-spacing: .05rem;
}
.inside-service-creation ul li::marker {
    color: var(--color-accent-medium);
}

.inside-service-creation a button {
    display: block;
    text-align: center;
    width: 100%;
    background-color: var(--color-button-bg);
    color: var(--color-bg-primary);
    border: 0;
    border-radius: 2.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: .2s ease;
}
.inside-service-creation a button:hover {
    background-color: var(--color-button-hover);
}

/* =========== GALLERY PAGE DESIGN ========== */
.img-gallery-div {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* =========== CONTACT PAGE DESIGN ========== */
.contact-info {
    display: flex;
    gap: 2rem;
}
.section-page-div {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* SCROLL ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ACCESSIBILITY */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-button-bg);
    color: var(--color-button-text);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent-medium);
    outline-offset: 2px;
}

/* High contrast focus for better visibility */
@media (prefers-contrast: high) {
    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 3px solid #000;
    }
}
#contactForm {
    width: 50%;
}
.info-design {
    color: var(--color-text-primary);
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.info-input-design {
    width: 95%;
    height: 3.5rem;
    padding: 1.5rem;
    border-radius: .5rem;
    border: 1px solid var(--color-bg-alt);
    color: var(--color-text-muted);
    background-color: var(--color-input-bg);
    font-size: 1rem;
}
.info-input-design:focus {
    outline: 1px solid var(--color-accent-medium);
    border: 1px solid var(--color-accent-medium);
}
.info-input-design::placeholder {
    color: var(--color-text-muted);
}

/* validation error highlight */
.input-error {
    border-color: red !important;
}

/* inline error message */
.error-text {
    color: red;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* button spinner */
.spinner {
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid var(--color-button-text);
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* status messages below button */
.form-status {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.form-status.success {
    color: green;
}
.form-status.error {
    color: red;
}

.text-area {
    height: 10rem;
    padding: 1rem;
}

.sendMessage button {
    display: block;
    width: 95%;
    padding: 1rem;
    border-radius: 1.5rem;
    background-color: var(--color-button-bg);
    border: 0;
    color: var(--color-bg-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s ease;
}
.sendMessage button:hover {
    background-color: var(--color-button-hover);
}

.plus-map {
    width: 45%;
}

.location-pace h2 {
    font-family: "Playfair Display", serif;
    color:  var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.location-text li {
    display: flex;
    align-items: center;
    gap: .2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    letter-spacing: .05rem;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color .2s ease;
}
.location-text li:hover {
    color: var(--color-text-primary);
}
.location-pace a button {
    color: var(--color-text-muted);
}

/* WhatsApp button styling */
.whatsapp-button {
    color: var(--color-text-primary);
    border: 1px solid var(--color-text-muted);
    border-radius: 1.5rem;
    background-color: transparent;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.whatsapp-button:hover {
    background-color: var(--color-button-bg);
    color: var(--color-button-text);
}

.map-embeded iframe {
    border-radius: 1rem;
    border: 1px solid var(--color-bg-alt);
    height: 25rem;
}

/* tablet breakpoint adjustments (~1024px) */
@media (max-width: 1024px) {
    .navigation-menu-bar nav ul {
        gap: 1rem;
    }
    .intro-text h2 {
        font-size: 2.4rem;
    }
    .first-gallery-text h2 {
        font-size: 2.2rem;
    }
    .testimonial-text h2 {
        font-size: 2.2rem;
    }
    .add-image {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* general adjustments */
    .padding {
        padding: 1rem 1rem;
    }

    /* navigation: hide desktop items and show hamburger */
    .navigation-menu-bar nav ul {
        display: none;
    }
    .showmenu {
        display: block;
        cursor: pointer;
    }
    .book-button a button {
        display: none;
    }

    /* header tweaks */
    .navigation-div {
        padding: .5rem 1rem;
    }

    /* about page heading width */
    .about-section-head {
        padding-top: 5rem;
    }
    .about-text-page {
        width: 100%;
    }

    .mission-vision-div {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .why-choose-div {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    /* logo and hero */
    .hero-div {
        padding-bottom: 3rem;
        padding-top: 6rem;
        height: auto;
    }
    .logo-box img {
        width: 50px;
        height: 50px;
    }

    /* hero text scaling */
    .hero-texts h1 { font-size: 2.5rem; }
    .hero-texts h2 { font-size: 1.2rem; }
    .hero-texts p { font-size: .9rem; }

    /* increase button touch targets for mobile */
    .hero-button a button,
    .about-text a button,
    .next-btn a button,
    .inside-service-creation a button,
    .sendMessage button {
        min-height: 44px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 2rem;
    }

    /* about section stacks */
    .about-div {
        flex-direction: column;
        text-align: center;
    }
    .about-image,
    .about-text {
        width: 100%;
    }
    .about-image img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    /* services grid to column */
    .service-div {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .content-div {
        flex-direction: column;
        gap: 1.5rem;
    }
    .text-content,
    .inside-service-creation {
        width: 100%;
    }
    .inside-service-creation ul{
        text-align: left;
    }

    /* gallery images full width */
    .gallery-div {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    .first-gallery-text h2 {
        font-size: 2rem;
    }
    .add-image {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .image {
        aspect-ratio: 3 / 4;
        border-radius: .3rem;
    }

    /* testimonials stack vertically */
    .testimonial-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .content-testy {
        flex-direction: column;
        gap: 2rem;
    }
    .testimonial-content {
        width: 100%;
        text-align: center;
    }

    /* footer links column */
    .footer-div {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .quick-links ul,
    .get-in-touch ul {
        display: flex;
        flex-direction: column;
        gap: .8rem;
    }
    .footer-div {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 1rem;
    }
    .description {
        grid-column: 1;
    }
    .quick-links {
        grid-column: 1;
    }
    .get-in-touch {
        grid-column: 1;
        grid-row: auto;
    }

    /* about page stacks */
    .our-story-page,
    .mission-vision-div,
    .why-choose-element,
    .our-service-div-page {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    .image-story-page,
    .our-story-text,
    .mission-text,
    .why-choose,
    .inside-service-creation {
        width: 100%;
    }

    /* mobile nav text size */
    .mobile-navigation nav ul a li {
        font-size: 1.4rem;
        padding: .75rem 0;
    }

    /* ======= GALLERY PAGE DESIGN ========= */
    

    /* contact page stack */
    #contactForm {
        width: 100%;
    }
    .contact-info {
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }
    .info-gathering, .plus-map {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-texts h1 { font-size: 2rem; }
    .hero-texts h2 { font-size: 1rem; }
    .intro-text h2 { font-size: 2rem; }
    .first-gallery-text h2 { font-size: 1.6rem; }
    .about-text h2 { font-size: 1.6rem; }
    .testimonial-text h2 { font-size: 1.8rem; }

    /* gallery stack single column */
    .add-image {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .image {
        aspect-ratio: 3 / 4;
    }
}

/* ---------- mobile navigation ---------- */
.mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1001; /* above header */
     display: none;  /* shown by JS when hamburger clicked */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 1rem;
}

.mobile-div {
    width: 90%;
    max-width: 400px;
    padding: 1rem 0 2rem 0;
}

.mobile {
    position: relative;
    text-align: center;
}

#xMark {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1002;
}

#xMark svg {
    width: 28px;
    height: 28px;
}

.navbar-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.navbar-menu nav ul a {
    text-decoration: none;
    display: block;
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    transition: color 0.2s;
}

.navbar-menu nav ul a:hover li,
.navbar-menu nav ul a li.active {
    color: var(--color-text-secondary); /* example accent colour */
}

.navbar-menu nav ul li {
    padding: 0.5rem 0;
}

.mobile-button {
    margin-top: 2rem;
}

.mobile-button a button {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-button-bg);
    color: var(--color-button-text);
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    width: 100%;
}

.mobile-button a button:hover {
    background: var(--color-button-hover);
}

/* show/hide helpers (toggle with JS) */
.mobile-navigation.show {
    display: flex;
}