/* Reset Styles */

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* Prevent horizontal overflow */
}
/* Universal Box-Sizing */
*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Top Bar */
.top-bar {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(80, 80, 80, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    z-index: 1000;
}

.top-bar a {
    color: #fff;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #f39c12;
}

/* Top Bar Logo and Name */
.top-bar-logo {
    display: flex;
    align-items: center;
}

.top-bar-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.top-bar-logo .shop-name {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 1px;
}

.navigation-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-links ul li {
    margin-left: 20px;
}

.navigation-links ul li a {
    text-decoration: none;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu i {
    font-size: 24px;
    color: #fff;
}

/* Video Background */
.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; 
    min-height: 100%;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Centered Logo */
.center-logo {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.7));
}

/* Centered Content */
.centered-content {
    text-align: left;
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 2;
    transform: translateY(-50%);
    color: #fff; /* Ensure all text is white */
}

.centered-content h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    color: #fff; /* Ensure the heading is white */
}

.centered-content .since-text {
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    color: #fff; /* Ensure the since text is white */
}

.quotes-container {
    font-size: 1.5em;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word; /* Ensures text wraps */
}

#quote {
    display: inline; /* Allows wrapping naturally */
    overflow: hidden;
    word-wrap: break-word; /* Ensures long words break */
    min-width: 0;
    max-width: 100%;
    color: #fff;
    font-weight: bold;
}

/* Blinking Caret */
.caret {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.75);
    animation: blink-caret 0.75s step-end infinite;
}

/* Responsive Font Size */
@media (max-width: 768px) {
    .quotes-container {
        font-size: 1.2em;
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .quotes-container {
        font-size: 1em;
        max-width: 90%;
    }
}

/* Blinking Caret Animation */
@keyframes blink-caret {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}


/* Shop Gallery Section */
.shop-gallery {
    padding: 50px 20px;
    background-color: #f8f3e9; /* Very light gold background */
    text-align: center;
    animation: fadeInUp 2s ease forwards;
}

/* Section Title */
.shop-gallery h2 {
    font-size: 2.2em;
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 items per row */
    gap: 20px;
    padding: 20px;
}

/* Gallery Item Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    height: 280px; /* All images will have the same height */
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures all images fit the same aspect ratio */
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 15px;
    filter: brightness(0.9);
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.95;
    filter: brightness(1);
}

/* Text Overlay */
.gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-family: 'Georgia', serif;
    font-size: 1em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(15px);
}

.gallery-item:hover .gallery-text {
    opacity: 1;
    transform: translateY(0);
}

/* Text Styling */
.gallery-text h3 {
    font-size: 1.4em;
    color: #f39c12;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.gallery-text p {
    font-size: 1em;
    color: #f5f5f5;
    line-height: 1.5;
}

/* Keyframe Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 15px;
        justify-content: center;
    }

    .gallery-item {
        height: 220px;
    }

    /* Navigation Menu */
    .navigation-links ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: rgba(80, 80, 80, 0.8); /* Semi-transparent background */
        backdrop-filter: blur(10px);
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 10px;
    }

    .navigation-links ul.show {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: #222;
    }
}

/* Adjusting for Small Mobile Devices */
@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr); /* Ensures max 2 items per row */
        gap: 12px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr); /* Ensures 1 item per row on extra small screens */
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
    }
}



/* Ensure no empty space for 5 images */
/* .gallery-container {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
} */


/* Highest Standards Section */
.highest-standards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('assets/jewellery_mock.jpg') center/cover no-repeat;
    color: #fff; /* White text for contrast */
    padding: 3rem;
    text-align: left;
    flex-wrap: wrap;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.highest-standards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    backdrop-filter: blur(1px);
    z-index: 0;
    border-radius: 15px;
}

.standards-content {
    flex: 1;
    margin-right: 2rem;
    max-width: 50%;
    z-index: 1;
}

.standards-content h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #fff; /* Gold text for premium feel */
}

.standards-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #f1f1f1;
    max-width: 600px;
    line-height: 1.8;
    margin: 1rem 0 0;
}

.standards-icons {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    z-index: 1;
}

.icon-item {
    max-width: 180px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}

.icon-item:hover {
    transform: scale(1.1);
}

.icon-item p {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.icon-item i,
.standards-icons img {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .highest-standards {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .standards-content {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .standards-icons {
        justify-content: center;
        gap: 1.5rem;
    }
}


/* Featured Product Section */
.featured-product {
    text-align: center;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #f8f3e9; /* Very light gold background */
    border-radius: 10px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Title */
.featured-product h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
    letter-spacing: 1px;
}

/* Featured Product Grid */
.featured-images-staggered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #f8f3e9;
    border-radius: 10px;
}

/* Image Item */
.featured-images-staggered .image-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 280px; /* All images are the same height */
    position: relative;
}

/* Image Styling */
.featured-images-staggered .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures all images have the same aspect ratio */
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.featured-images-staggered .image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* Overlay Effect for Better Aesthetics */
.featured-images-staggered .image-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 15px;
}

.featured-images-staggered .image-item:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-images-staggered {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-images-staggered .image-item {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .featured-images-staggered {
        grid-template-columns: 1fr;
    }

    .featured-images-staggered .image-item {
        height: 220px;
    }
}

/* Ensure no empty space for 5 images */
.featured-images-staggered {
    grid-template-columns: repeat(3, 1fr);
}

.featured-images-staggered .image-item:nth-child(5) {
    grid-column: span 2;
}

.fashionable-jewellery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f8f3e9; /* Very light gold background */
    border-top: 1px solid #f8f3e9;
    border-bottom: 1px solid #f8f3e9;
    flex-wrap: wrap;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}

.fashionable-jewellery .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow-y: hidden;
    flex-wrap: wrap;
}

.fashionable-jewellery .text-content {
    flex: 1;
    padding-right: 20px;
    max-width: 600px;
}

.fashionable-jewellery .text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.fashionable-jewellery .text-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #666;
    line-height: 1.8; /* Increased for better readability */
    letter-spacing: 0.5px; /* Subtle spacing for elegance */
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    background: linear-gradient(90deg, #444, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Gradient text */
    padding: 10px 0;
    border-left: 4px solid #b8860b; /* Gold accent border */
    padding-left: 15px;
}

.fashionable-jewellery .video-content {
    flex: 1;
    overflow: hidden;
    max-width: 600px;
}

.fashionable-jewellery video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .fashionable-jewellery {
        flex-direction: column;
        padding: 30px 10px;
    }

    .fashionable-jewellery .content {
        display: flex;
        flex-direction: column;
    }

    .fashionable-jewellery .video-content {
        order: 1; /* Move video to the top */
        max-width: 100%;
    }

    .fashionable-jewellery .text-content {
        order: 2; /* Text content below the video */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .fashionable-jewellery .text-content h2 {
        order: 3;
        font-size: 2em;
        margin-top: 20px;
    }

    .fashionable-jewellery .text-content p {
        order: 4;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .fashionable-jewellery .text-content h2 {
        font-size: 1.5em;
    }

    .fashionable-jewellery .text-content p {
        font-size: 0.9em;
    }
}



/* About Us Section */
.about-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f8f3e9; /* Very light gold background */
    flex-wrap: wrap;
}

.about-us .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    overflow-y: hidden;
}

.about-us .image-content {
    flex: 1;
    max-width: 500px; /* Keeps the image smaller on larger screens */
    padding-right: 20px;
}

.about-us .image-content img {
    width: 70%;
    height: 70%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us .text-content {
    flex: 1;
    max-width: 600px;
    transition: color 0.3s ease;
}

.about-us .text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.about-us .text-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #444, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 0;
    border-left: 4px solid #b8860b;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 30px 10px;
    }

    .about-us .content {
        display: flex;
        flex-direction: column;
    }

    .about-us .image-content {
        order: 1; /* Image on top */
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .about-us .image-content img {
        width: 90%; /* Make the image more responsive */
        height: auto;
    }

    .about-us .text-content {
        order: 2; /* Text content below the image */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-us .text-content h2 {
        order: 3;
        font-size: 2em;
        margin-top: 20px;
    }

    .about-us .text-content p {
        order: 4;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .about-us .text-content h2 {
        font-size: 1.5em;
    }

    .about-us .text-content p {
        font-size: 0.9em;
    }
}


/* Our Stores Section */
.our-stores {
    padding: 50px 20px;
    background-color: #f8f3e9;
    text-align: center;
    transition: background-color 0.3s ease;
}

.our-stores:hover {
    background-color: #f8f3e9;
}

.our-stores .content {
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: hidden;
}

.our-stores h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
}

.our-stores .store-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.our-stores .store-item {
    flex: 1 1 200px;
    max-width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-stores .store-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.our-stores .store-item i {
    font-size: 3em;
    color: #ff6f61;
    margin-bottom: 20px;
}

.our-stores .store-item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.our-stores .store-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .our-stores .store-info {
        flex-direction: column;
        align-items: center;
    }

    .our-stores .store-item {
        max-width: 100%;
    }
}

@keyframes hover-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.store-item:hover {
    animation: hover-animation 0.5s ease-in-out;
}

/* Footer Styling */

/* General Footer Styling */
footer {
    background-color: rgb(33, 37, 42);
    color: #fff;
    padding: 50px 30px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    text-align: center;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

/* Footer Left Section */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #dcdcdc;
}

.footer-left a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.footer-left a:hover {
    text-decoration: underline;
}

/* Footer Links Section */
.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-links div {
    min-width: 200px;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 2px solid #f39c12;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #dcdcdc;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #dcdcdc;
}

/* Social Media Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 8px;
    font-size: 20px;
    color: #f39c12;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-links {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links div {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-links div {
        width: 100%;
    }
}




.content {
    height: 100%;
    overflow-y: scroll;
}


body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}