* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f0e6;

    color: #42453f;


}

h1, h2, .category p {
    font-family: 'Cormorant Garamond', serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    position: relative;
    background-color: #f4e8e9;
    display: flex;
    justify-content: flex-start;
    padding: 0px 25px;
    border-bottom: 2px solid #b27071;
    align-items: center;
}

/* Logo size */
.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.logo-container {
    display: flex;
    align-items: center;
}
.logo-link {
    display: flex;
    align-items: center;
}

/* Navigation styling */
.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
}

.nav-links a {
    font-size: 25px;
    text-decoration: none;
    color: #42453f;
    font-weight: 500; /*thickness*/
    transition: transform 0.2s, opacity 0.2s; /* Hover zoom effect */
}

/* Styles current active page link */
.nav-links a.active {
    position: relative;
    color: #2b2b2b; /* darker than normal #42453f */
    font-weight: 700; /* makes it bold */
}

/*Pseudo-element to decorate underline*/
.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b27071; /* accent color */
    border-radius: 2px;
}

.nav-links a:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.nav-links li {
    padding: 0 15px;
    border-right: 1px solid #cf9697;   /* vertical line */
    display: flex;
    align-items: center;
}

.nav-links li:last-child {
    border-right: none;            /* no line after last item */
}

.menu-container {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.navbar.dropdown {
    position: fixed;

    top: 82px;     /* distance from top */
    right: 21px;   /* align with button */

    width: 220px;

    border: 2px solid #b27071;
    background-color: rgba(244, 232, 233, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* TOP HAMBURGER (normal menu) */
.navbar.active:not(.dropdown) {
    position: absolute;
    top: 100%;
    right: 0;
}

/* triangle-connector */
.navbar.dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    width: 0;
    right: 13px;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #b27071;
}

.navbar.dropdown.active {
    display: block !important;
}

.navbar.dropdown .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.navbar.dropdown .nav-links li {
    padding: 10px 0;
    border: none;
}

.menu-float {
    font-size: 22px;
    display: none;
    position: fixed;
    top: 25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f4e8e9;
    border: 2.5px solid #b27071;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.language-switcher {
    margin-left: 20px; /* PUSH FLAGS TO THE FAR RIGHT */
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;

}

/* main visible flag */
#current-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
}

.language-dropdown {
    position: absolute;
    top: 120%;
    right: -20%;
    left: auto;

    background: white;
    padding: 6px;
    border-radius: 6px;

    display: flex;          /* always flex, never none */
    flex-direction: column;
    gap: 5px;

    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* flags inside dropdown */
.language-dropdown img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    cursor: pointer;
}

.language-dropdown img:hover {
    opacity: 0.6;

}

/* active language style */
.language-dropdown img.active {
    opacity: 0.3;
}

/* ===== HERO IMAGE ===== */

.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;

    border-bottom: 2px solid #b27071;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
}

.slide.active {
    opacity: 1;
}

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

.slide-text {
    position: absolute;
    bottom: 150px;
    left: 80px;
    color: white;
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 5px rgba(0,0,0,0.6);
    letter-spacing: 3px;
    z-index: 5;
}

/* ARROWS */
.arrow {
    z-index: 4;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0,0,0,0.15);
    color: white;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 10px;   /* rounded corners */
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.work {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}


.categories {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* allows stacking */
}

.category {
    width: 100%;
    max-width: 400px;
    text-decoration: none;
    color: inherit;
}

.category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 8px;
    border: 2px solid #ab916c;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.category p {
    font-size: 30px;
    margin-top: 10px;
    letter-spacing: 1px;
    font-family: 'Quicksand','Comfortaa', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.category:hover img {
    transform: scale(1.05);
    opacity: 0.8;
    cursor: pointer;
}

.category:hover p {
    opacity: 0.6;
}


/* ===== FOOTER ===== */

.footer {
    background-color: #e3e3e3;
    padding: 60px 40px 40px 40px;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    /* border-top: 2.5px solid #9e9192; */
}

.footer-top {
    display: flex;
    align-items: center;
}

.facebook-name {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Manrope', sans-serif;
}

.social-item a {
    text-decoration: none;
    color: #42453f;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* space between icon and text */
}

.social-item {
    margin: 6px 0;
}

/* icon size */
.social-item i {
    font-size: 20px;
}

/* hover effect */
.social-item a:hover {
    opacity: 0.6;
}

/* CENTER */
.footer-logo {
    text-align: center;
    width: 220px;
}

/* RIGHT */
.footer-social {
    flex: 1;
    text-align: center;
    padding-right: 40px;
}


.footer-contact {
    flex: 1;
    text-align: center;
    padding-left: 40px;
}

.footer-social h3,
.footer-contact h3 {
    font-size: 26px;
    color: #b27071;
    margin-bottom: 12px;
}

.footer-social p,
.footer-contact p,
.phone-line {
    margin: 10px 0;
}

.footer .social-item i,
.contact-social i {
    color: #676965;
}

.phone-line {
    margin: 0;
}

.phone-label {
    display: inline-block;
    width: 85px; /* space reserved for "Phone:" */
    font-family: 'Manrope', sans-serif;
    font-weight: 380;
}

.phone-number {
    display: inline-block;
}


.footer-logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    font-size: 13px;
    font-family: 'Comfortaa', sans-serif;
}

/* HAMBURGER HIDDEN BY DEFAULT */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001; /* keeps it above the dropdown edge */
}

/* PRICING PAGE */
.prices-page {
    padding: 30px 40px;
    background-color: #f5f0e6;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.pricing-intro h1 {
    font-size: 42px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 15px;
}

.pricing-intro p {
    font-size: 18px;
    font-family: 'Quicksand','Comfortaa', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    color: #42453f;
}

.pricing-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pricing-card {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.08);
    
}

.pricing-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.pricing-card-text {
    padding: 10px 25px 25px 25px;
}

.pricing-card-text h2 {
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 10px;
    color: #42453f;
}

.pricing-card-text h3 {
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 15px;
    color: #42453f;
}

.pricing-card-text p {
    font-size: 17px;
    font-family: 'Quicksand','Comfortaa', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #42453f;
    margin-bottom: 8px;
}

.footer a,
.contact-info a {
    color: #b27071;
    text-decoration: none;
}

.footer a:hover,
.contact-info a:hover {
    opacity: 0.7;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.services-list li {
    margin-bottom: 6px;
    font-size: 16px;
    position: relative;
    padding-left: 18px;
}

.services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b27071; /* accent color */
}

.form-status {
    min-height: 24px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    color: #42453f;
    background-color: #f7f1f1;
    border: 1px solid #b27071;
}

.form-status.error {
    color: #8a2f2f;
    background-color: #fff0f0;
    border: 1px solid #c77979;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing-offers {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.offer-card {
    width: 520px;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}

.offer-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s;
}

.offer-card p {
    margin-top: 10px;
    font-family: 'Quicksand','Comfortaa', sans-serif;
    font-weight: 500;
}

.offer-card:hover img {
    opacity: 0.85;
}

.offer-card-title h1, .home-offers h2 {
    font-size: 42px;
    font-family: 'Manrope', sans-serif;
    text-align: center;
    margin-bottom: 50px;
    color: #42453f;
}

.home-offers {
    background-color: #fdf9f9;
    border-top: 2px solid #b27071;
    border-bottom: 2px solid #b27071;
    padding: 55px 30px;
}

.home-offers h2 {
    width: fit-content;
    margin: 0 auto 40px;
    padding-bottom: 12px;
    border-bottom: 3px solid #b27071;
}

.home-offers .pricing-offers {
    margin-bottom: 0;
}

.home-offers .offer-card {
    border: 1px solid #cf9697;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox.active {
    display: flex;
    background-color: rgba(0,0,0,0.85);
}

.lightbox-content {
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
    max-width: 1300px;
    width: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: inline-flex;
    max-height: 90vh;    /* never taller than 90% of screen */
    align-items: center;
}

.lightbox-content img {
    width: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 0;
    height: 100%;

}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(66, 69, 63, 0.85);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s, transform 0.2s;
}

.lightbox-close:hover {
    background-color: #b27071;
    transform: scale(1.08);
}

.lightbox-info {
    padding: 30px;
    overflow-y: auto;    /* scroll appears only when text overflows */
    flex: 1;             /* takes remaining width */
}

.lightbox-info h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: #42453f;
}

.lightbox-info p,ul {
    font-family: 'Quicksand','Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #42453f;
    line-height: 1.7;
    margin-bottom: 12px;
}

.lightbox-contact p{
    line-height: 1;
}

.lightbox-contact a {
    color: #b27071;
    text-decoration: none;
}

.lightbox-contact a:hover {
    opacity: 0.7;
}

.offer-note {
    margin-top: 20px;    
}

.lightbox-info li {
    margin-bottom: 6px;
}

.pricing-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 30px;
    background-color: #f2e9e9;
    border-radius: 12px;
    border: 2px solid #b27071;
    margin-bottom: 40px;
}

.pricing-cta h2 {
    font-size: 32px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 15px;
    color: #42453f;
}

.pricing-cta p {
    font-size: 17px;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #42453f;
}

.home-offers .pricing-cta {
    margin-top: 45px;
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b27071;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cta-button:hover {
    opacity: 0.8;
}


/* ABOUT PAGE */
.about-page {
    padding: 80px 40px;
    background-color: #f5f0e6;
}


.about-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;      /* centers the container on the page */
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.about-photo {
    width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;      /* prevents the photo from shrinking */
}

.about-text {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    align-self: center;
}

.about-text-2 {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

}

.about-text h1{
    font-size: 42px;
    color: #45453f;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    text-align: left;
    border-bottom: 2px solid #b27071;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;    /* adds space between lines, makes text easier to read */
    color: #42453f;
    font-family: 'Quicksand','Comfortaa', sans-serif;
    font-weight: 500;
}


.about-photo-2 {
    width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;      /* prevents the photo from shrinking */
    align-self: center;
}


.about-text-2 h1{
    font-size: 42px;
    color: #45453f;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    text-align: left;
    border-bottom: 2px solid #b27071;
}

.about-text-2 p {
    font-size: 18px;
    line-height: 1.7;    /* adds space between lines, makes text easier to read */
    color: #42453f;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-weight: 500;
}

.about-text-2 h2 {
    font-size: 26px;
    font-family: 'Manrope', sans-serif;
    color: #45453f;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text-2 ul {
    padding-left: 20px;
    line-height: 1.7;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

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

.about-text-2 a {
    color: #b27071;
    text-decoration: none;
}

.about-text-2 a:hover {
    opacity: 0.7;
}

.store-slide {
    cursor: pointer;
}

.store-images {
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-shrink: 0;
    align-self: center;
}

.store-main-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.store-extra-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.store-arrow {
    display: none;
}

/* CONTACT PAGE */
.contact-page {
    padding: 40px 40px;
    text-align: center;
}

/* Parent flex for left + right columns */
.contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch; /* top-align columns */
    justify-content: center; /* center columns horizontally */
    flex-wrap: wrap;         /* allows stacking on small screens */
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;  /* stack title + inner container vertically */
    gap: 20px;
    align-items: center;     /* center inner content horizontally in left side */
    background-color: #fff;        /* ADD */
    border-radius: 12px;           /* ADD */
    padding: 25px;                 /* ADD */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);  /* ADD */
}

.contact-title {
    text-align: center;      /* center the title inside left side */
    margin-bottom: 10px; 
    font-family: 'Manrope', sans-serif;
    border-bottom: 2px solid #b27071
}

.contact-left-inner {
    display: flex;      /* info + map side by side */
    flex-wrap: wrap;    /* allows stacking on small screens */
    align-items: center;
}

.contact-info {
    max-width: 400px;
    text-align: left;
    flex: 1;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
}

.contact-info h3 {
    font-family: 'Manrope', sans-serif;
    color: #b27071;                /* ADD - accent color for section headings */
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.contact-social a {
    text-decoration: none;
    color: #42453f;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-social a:hover {
    opacity: 0.6;
}

.contact-social i {
    font-size: 20px;
}

.contact-map {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
    height: 380px;
    margin-top: 15px;
    margin-left: 10px;
    align-items: center;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
    min-width: 300px;
    background-color: #fff;        /* ADD */
    border-radius: 12px;           /* ADD */
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);  /* ADD */
    text-align: left;              /* ADD */
    display: flex;              /* ADD */
    flex-direction: column;     /* ADD */
    align-items: center; 
}

.contact-right h1 {
    font-family: 'Manrope', sans-serif;
    border-bottom: 2px solid #b27071;
    display: inline-block;
    margin-bottom: 5px
}

.contact-form-intro {
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    text-align: center;
}

/* FORM STYLE */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px; 
    width: 100%;
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    background-color: #fff9f9;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    flex: 1;
}

.contact-form button {
    padding: 12px;
    background-color: #b27071;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px; 
}

.contact-form button:hover {
    opacity: 0.8;
}

/* WORK PAGE */
.work-page {
    padding: 30px 80px;
    background-color: #f5f0e6;
    min-height: 80vh;
}

.work-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 1400px;
    margin: 0 auto;
}

.work-container > h1 {
    display: flex;
    justify-content: center;
}

.work-title {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    margin-bottom: 25px;
    color: #42453f;
    padding-bottom: 15px;
    border-bottom: 2px solid #b27071;
    display: inline-block;
    margin-top: 0;
}

.work-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #b27071;
    background: transparent;
    border-radius: 30px;
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 530;
    color: #b27071;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #b27071;
    color: white;
}


.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.work-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.work-item img,
.work-item video {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.work-item:hover img,
.work-item:hover video {
    opacity: 0.85;
}

/* PLAY ICON ON VIDEOS */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: none;
}


/* GALLERY LIGHTBOX */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

#gallery-lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
}

.gallery-lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.gallery-lightbox-close:hover {
    opacity: 0.7;
}

.gallery-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1;
    transition: background 0.2s;
}

.gallery-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }


/* MOBILE VERSION */
@media (max-width: 768px) {
    .logo {
        max-width: 180px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar {
        border: 2px solid #b27071;
        display: none;
        position: fixed;
        width: 220px;             /* small box */
        background-color: rgba(244, 232, 233, 0.9); /* semi transparent */
        backdrop-filter: blur(6px); /* nice glass effect */
        border-radius: 12px;
        padding: 15px 0;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }


    .navbar.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;   /* CENTER items */
        gap: 10px;
    }

    .nav-links li {
        padding: 10px 0;
        border: none;
    }

    .slide-text {
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;    /* prevents it from being too wide */
    }

    .pricing-page {
        padding: 40px 20px;
    }

    .pricing-cta {
        padding: 30px 20px;
    }

    .pricing-cta h2 {
        font-size: 24px;
    }

    .offer-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .work-grid {
        columns: 2;
        gap: 10px;
    }

    .work-page {
        padding: 40px 20px;
    }


    .footer-top {
        flex-direction: column;   /* stack items vertically */
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        order: -1; /* moves logo to the top */
        margin: 0 auto;
    }

    .footer-logo img {
        max-width: 140px; 
    }


    .footer-social,
    .footer-contact {
        padding: 0; /* remove side padding */
        margin-bottom: 20px;
    }

    .lightbox-content {
        flex-direction: column;   /* stacks image above text */
        max-height: 90vh;
        overflow-y: auto;
    }

    .lightbox-content img {
        width: 100%;              /* full width on mobile */
        height: auto;        /* auto height shows the full image */
        object-fit: contain; /* shows full image on mobile */        
        border-radius: 12px 12px 0 0;  /* rounds only top corners on mobile */
    }

    .lightbox-info {
        overflow-y: visible;      /* let the whole box scroll instead */
    }
}
@media (max-width: 950px) {
        .about-page {
            padding: 40px 20px;  /* less padding on mobile */
        }

        .about-container {
            gap: 20px;           /* less gap between elements */
            margin-bottom: 20px; /* less space between the two containers */
            flex-direction: column;
        }

        .about-photo {
            width: 100%;         /* full width on mobile */
            height: 300px;       /* shorter height so text is visible below */
            max-width: 450px;
            flex-shrink: 1;      /* allow it to shrink */
            margin: 0 auto;
        }

        .about-photo-2 {
            width: 100%;         /* full width on mobile */
            height: 450px;
            max-width: 450px;
            margin-top: 0;       /* remove the desktop margin */
            flex-shrink: 1;
            order: -1;
            margin: 0 auto;
        }
        .store-images {
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
            order: -1;
        }

        .store-main-photo {
            height: auto;
            max-width: none;
            margin: 0;
        }

        .store-extra-photo {
            height: auto;
        }

        .store-mobile-slideshow {
            position: relative;
            height: 420px;
            max-height: 70vh;
            overflow: hidden;
            background-color: #fff;
            border-radius: 8px;
        }

        .store-mobile-slideshow .store-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .store-mobile-slideshow .store-slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .store-mobile-slideshow .store-arrow {
            display: block;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            border: none;
            background: rgba(0,0,0,0.25);
            color: white;
            font-size: 24px;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 8px;
        }

        .store-prev {
            left: 10px;
        }

        .store-next {
            right: 10px;
        }

        .about-text h1,
        .about-text-2 h1 {
            font-size: 30px;     /* smaller heading on mobile */
        }

        .about-text p,
        .about-text-2 p,
        .about-text-2 ul {
            font-size: 16px;     /* slightly smaller text on mobile */
        }
    
        
}
@media (max-width: 480px) {
    .work-grid {
        columns: 1;
    }
}
