html, body {
    height: 100%;
}




body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Georgia, serif;
    background: #ffffff;
    color: #000000;
}

/* Main content area */
main {
    flex: 1;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: Papyrus, fantasy;
    color: #000000;
}

/* Header */
header {
    background: #ffe4ec;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f8bfd0;
}

/* Site title link */
.site-title {
    text-decoration: none;
    color: #000000;
    font-family: Papyrus, fantasy;
}

.site-title:hover {
    opacity: 0.8;
}

/* Navigation */
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}



/* Features */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 20px;
}

.features div {
    width: 30%;
    min-width: 250px;
    background: #fff0f5;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #f8bfd0;
}



/* Product Pages */
.product-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.featured-image {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    margin: 20px 0;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ffe4ec;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #f8bfd0;
}

.back-button:hover {
    background: #ffd6e5;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 25px;
    background: #ffe4ec;
    color: #000;
    margin-top: auto;
    box-sizing: border-box;
}


/* ===== PORTFOLIO GALLERY ===== */

.portfolio-showcase {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 16px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;   /* Makes all images perfect squares */
    object-fit: cover;
    display: block;
}



/* Title ribbon inside image */

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: rgba(255, 228, 236, 0.92);
    backdrop-filter: blur(4px);

    padding: 15px;
    text-align: center;
}

.image-overlay h3 {
    margin: 0;
    color: #000;
    font-family: Papyrus, fantasy;
    font-size: 1.4rem;
    font-weight: normal;
}

/* Mobile */



/* Centre all homepage content */

main {
    text-align: center;
}

/* Introduction */
.intro {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

/* Services */
.features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.features div {
    width: 300px;
    background: #fff0f5;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f8bfd0;
    text-align: center;
}

/* Reviews */
.reviews {
    background: #fff0f5;
    text-align: center;
    padding: 25px 20px;
    margin-top: 30px;
}

.reviews h2 {
    font-size: 2.5rem
}

.review-carousel {
     position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 220px;
    overflow: hidden;
}

.review {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;

    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.review.active {
    opacity: 1;
    transform: translateX(0);
}

.review.exit-left {
    opacity: 0;
    transform: translateX(-100%);
}

.review.exit-right {
    opacity: 0;
    transform: translateX(100%);
}

.review.enter-left {
    opacity: 0;
    transform: translateX(-100%);
}

.review.enter-right {
    opacity: 0;
    transform: translateX(100%);
}

.review blockquote {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    font-style: italic;
    margin: 0 auto;
}

.carousel-buttons {
    margin-top: 15px;
}

.carousel-buttons button {
    background: #ffe4ec;
    border: 1px solid #f8bfd0;
    padding: 10px 18px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 5px;
}

.carousel-buttons button:hover {
    background: #ffd6e5;
}

.stars {
    color: #e6b800;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 3px rgba(0,0,0,0.1);
}

/* Centre headings */
h1, h2, h3 {
    text-align: center;
}

/* Centre footer */
footer {
    text-align: center;
}

header {
    position: relative;
    background: #ffe4ec;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f8bfd0;
}

.branding {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}

.site-title {
    text-decoration: none;
    color: #000;
    font-family: Papyrus, fantasy;
    font-size: 4rem;
    font-weight: normal;
}

.branding-logo {
    position: absolute;
    right: 3%;
    top: 45%;
    transform: translateY(-50%);
    width: 320px;
    height: auto;
}

.site-title:hover {
    opacity: 0.8;
}


@media (max-width: 768px) {

    .site-title {
        font-size: 2rem;
        display: block;
        line-height: 1.1;
    }
  
  @media (max-width: 768px) {

    .branding-logo {
        display: none;
    }
}
  

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin: 5px;
    }
}

/* Featured designs on homepage */
.featured-work {
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
}

.featured-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.featured-gallery img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.featured-gallery img:hover {
    transform: translateY(-8px);
}

.design-card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

.portfolio-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #ffe4ec;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #f8bfd0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.portfolio-button:hover {
    background: #ffd6e5;
    transform: translateY(-2px);
}

.featured-work {
    background: #fff8fa;
    padding: 60px 20px;
    border-radius: 20px;
}

.featured-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.process-section {
    background: linear-gradient(135deg, #fff8fa, #ffeef4);
    padding: 80px 20px;
    margin: 80px auto;
    border-radius: 25px;
    max-width: 1300px;
}

.process-title {
    font-size: 4rem;
    margin-bottom: 10px;
}

.process-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: white;
    width: 250px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;

    background: #ffe4ec;
    border: 3px solid #f8bfd0;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.5rem;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.intro h2 {
    font-size: 3rem;
    margin-bottom: 10 px;
}

/* ===== PINTEREST GALLERY ===== */

.product-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

.pinterest-gallery {
    column-count: 3;
    column-gap: 20px;
}

.pinterest-gallery img {
    width: 100%;
    margin-bottom: 20px;
    display: block;

    break-inside: avoid;

    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    transition: transform 0.3s ease;
}

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

@media (max-width: 900px) {
    .pinterest-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .pinterest-gallery {
        column-count: 1;
    }
}

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


.design-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    max-width: 1200px;
    margin: 40px auto;
}

.save-the-date-gallery img:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

.Menu-gallery img:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

.seating-gallery img:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

.Place-gallery img:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}


.design-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;

   
    display: block;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .design-gallery {
        grid-template-columns: 1fr;
    }
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

#close {
    position: absolute;
    top: 20px;
    right: 30px;

    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* Arrow buttons */

#prev,
#next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(255,255,255,0.15);
    border: none;
    color: white;

    font-size: 3rem;
    padding: 15px 20px;

    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

#prev:hover,
#next:hover {
    background: rgba(255,255,255,0.3);
}

#prev {
    left: 30px;
}

#next {
    right: 30px;
}

.design-gallery img {
    cursor: pointer;
}

/* ===== ABOUT PAGE ===== */

.about-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.about-page h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-tagline {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
}

.about-content {
    background: #fffcfd;
    padding: 50px;
    border-radius: 20px;

    border: 1px solid #fce3eb;

    line-height: 1.9;
    font-size: 1.1rem;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Photo underneath */

.about-photo {
    display: flex;
    justify-content: center;
    gap: 30px;

    margin-top: 50px;
    flex-wrap: wrap;
}

.about-photo img {
    width: 100%;
    max-width: 350px;

    height: auto;

    border-radius: 20px;

    border: 4px solid #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    display: block;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* CONTACT PAGE */

.site-content {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 60px 20px;
}

.contact-card {
    width: 100%;
    max-width: 650px;

    background: #fffdfd;

    padding: 50px;

    border-radius: 25px;

    border: 1px solid #f8dbe5;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);

    text-align: center;
}

.contact-card h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-intro {
    color: #777;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Labels */

.contact-card label {
    display: block;

    font-size: 1.2rem;
    font-weight: bold;

    margin-bottom: 8px;
}

/* Inputs */

.contact-card input,
.contact-card textarea {
    width: 100%;

    padding: 14px;

    border-radius: 10px;

    border: 1px solid #e4cbd3;

    font-size: 1rem;

    box-sizing: border-box;

    margin-bottom: 25px;
}

.contact-card input:focus,
.contact-card textarea:focus {
    outline: none;

    border-color: #f8bfd0;

    box-shadow: 0 0 0 3px rgba(248,191,208,0.2);
}

/* Captcha */

.captcha-box {
    display: inline-block;

    background: #fff0f5;

    border: 1px solid #f8bfd0;

    padding: 10px 20px;

    border-radius: 10px;

    font-size: 1.8rem;
    font-weight: bold;

    letter-spacing: 3px;

    margin: 10px 0;
}

.captcha-refresh {
    background: #ffe4ec;

    border: 1px solid #f8bfd0;

    padding: 8px 15px;

    border-radius: 8px;

    cursor: pointer;
}

.captcha-refresh:hover {
    background: #ffd6e5;
}

/* Submit button */

button[type="submit"] {
    background: #ffe4ec;

    border: 1px solid #f8bfd0;

    color: #000;

    padding: 14px 35px;

    border-radius: 30px;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background: #ffd6e5;

    transform: translateY(-2px);
}

.site-content {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
}


/* Social Media Section */

.social-section {
    margin-top: 40px;
    text-align: center;
}

.social-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;

    flex-wrap: wrap;

    margin-bottom: 30px;
}

.social-icons a {
    width: 70px;
    height: 70px;

    background: #fff0f5;

    border: 1px solid #f8bfd0;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: all 0.3s ease;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #ffe4ec;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.social-icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-icons img.rounded {
    border-radius: 8px;
}

.contact-number {
    text-align: center;

    font-family: Papyrus, fantasy;
    font-size: 1.8rem;

    color: #000;

    margin-top: 20px;

    letter-spacing: 1px;
}

.social-section p {
    text-align: center;
    font-family: Papyrus, fantasy;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 20px;
}

.contact-number {
    text-align: center;

    font-family: Papyrus, fantasy;
    font-size: 1.5rem;

    color: #000;

    margin-top: 20px;
}