body.contact-page {
    position: relative;
    min-height: 100vh;
    background-color: transparent; /* base fallback */
    overflow-x: hidden;
    font-family: 'Questrial', sans-serif;
}

body.contact-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 80%; /* Adjust the width to 80% */
    height: 80vh;
    margin: 0 auto; /* Center align the slideshow horizontally */
    overflow: hidden;
}

/* Hide the images by default */
.mySlides {
    display: none;
    position: absolute;
    width: 100%; /* Image will span the full container width */
    height: 100%;
    animation: fade 1.5s ease-in-out;
}

.mySlides img {
    width: 100%; /* Image adapts to the container */
    height: 100%;
    object-fit: cover;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1;}
}



/* ========== Font Face ========== */
@font-face {
    font-family: 'Gleam & Grace Collection';
    src: url('../font/cakedingbats-webfont.eot');
    src: url('../font/cakedingbats-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/cakedingbats-webfont.woff2') format('woff2'),
    url('../font/cakedingbats-webfont.woff') format('woff'),
    url('../font/cakedingbats-webfont.ttf') format('truetype'),
    url('../font/cakedingbats-webfont.svg#cake_dingbatsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* ========== Global ========== */
body {
    background: url('https://images.pexels.com/photos/265906/pexels-photo-265906.jpeg?cs=srgb&dl=black-and-white-close-up-diamond-265906.jpg&fm=jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 0;
    font-family: 'Questrial', sans-serif;
    color: #d4c9be;
    position: relative;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}

main {
    margin-top: 0; /* Remove any top margin */
}
/* ========== Hero Header ========== */
.hero-header {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 1;
    min-height:50vh;
    padding: 20px;
    box-sizing: border-box;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

/* Headings & Text Styling */
.hero-header h1 {
    font-size: 5rem;
    font-family: 'Questrial', sans-serif;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-in-out;
}

.hero-header p.lead {
    font-size: 1.5rem;
    color: #f8f9fa;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-header .welcome-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #e6e6e6;
    font-family: 'Questrial', sans-serif;
    letter-spacing: 2px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-header .subheading {
    font-family: 'Questrial', sans-serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.4rem;
    color: #f8f9fa;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.hero-header hr {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Call-to-Action Button (Enhanced) */
.text-center.mb-5 {
    padding-top: 30px; /* Adds top padding */
}

.hero-header .btn {
    font-size: 1.25rem;
    padding: 12px 32px;
    font-weight: 600;
    background: black;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-header .btn:hover {
    background: #fff8dc;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ========== Section Headings ========== */
.section-heading{
    font-family: 'Questrial', sans-serif;
    font-size: 4rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 5px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    display: block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* ========== Product Gallery ========== */
.product-gallery {
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border:2px solid white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 22%;
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: 250px;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}

.product-card p {
    margin-top: 8px;
    font-weight: bold;
    font-size: 1.9rem;
    color: white;
    text-align: center;
}

.card-text {
    font-family: 'Questrial', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
    text-align: center;
    text-transform: capitalize;
}



/* ========== About Us Section ========== */
.about-section {
    position: relative;
    padding: 80px 30px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

.about-section h2 {
    font-size: 4.5rem;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding-bottom: 0.5rem;
    font-family: 'Questrial', sans-serif;
    color: white;
}

.about-section p {
    font-size: 1.5rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    font-family: 'Questrial', sans-serif;
}


/* ========== Animations ========== */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hero-header {
        height: auto;
        padding: 80px 20px 60px;
    }

    .hero-header h1 {
        font-size: 2.8rem;
    }

    .hero-header p.lead {
        font-size: 1.2rem;
    }

    .hero-header .btn {
        font-size: 1rem;
        padding: 10px 24px;
    }

    .product-card img {
        height: 140px;
    }

    .product-gallery {
        flex-direction: column;
        align-items: center;
    }
}

/* Increase font sizes */
.hero-header h1 {
    font-size: 5rem; /* Increased from 4.5rem */
}

.hero-header p.lead {
    font-size: 1.8rem; /* Increased from 1.5rem */
}

.hero-header .welcome-text {
    font-size: 1.4rem; /* Increased from 1.2rem */
}

.section-heading {
    font-size: 5rem; /* Increased from 4.5rem */
}

.product-card p {
    font-size: 2.1rem; /* Increased from 1.9rem */
}

.about-section h2 {
    font-size: 5rem; /* Increased from 4.5rem */
}

.about-section p {
    font-size: 1.7rem; /* Increased from 1.5rem */
}

/* Remove the gap between navbar and header */
.hero-header {
    padding-top: 0; /* Remove top padding */
    margin-top: 0; /* Remove top margin */
}

/* Button styling updates for luxury look */
.hero-header .btn {
    background-color: #3a3a3a; /* Gray background */
    border: 2px solid #d4c9be; /* Subtle border */
    border-radius: 8px; /* Slightly rounded corners instead of 50px */
    color: #ffffff; /* White text */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-header .btn:hover {
    background-color: #4a4a4a; /* Slightly lighter gray on hover */
    color: #d4c9be; /* Gold/beige text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


body {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

main {
    flex: 1; /* Take up available space */
}
