* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background-color: #fafaf8;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --dark: #1a1a1a;
    --light: #fafaf8;
    --cream: #f5f1eb;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #2B2420 ;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-link {
    color: #fff !important;
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile navbar toggle icon white */
.navbar-toggler {
    border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon {
    filter: invert(1);
}


/* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
            display: flex;
            align-items: center;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            color: #8B0000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 16px;
            color: #666666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #8B0000;
            color: #FFFFFF;
        }

        .btn-primary:hover {
            background: #8B0000;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(45, 90, 78, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: #8B0000;
            border: 2px solid #8B0000;
        }

        .btn-secondary:hover {
            background: #8B0000;
            color: #FFFFFF;
        }

        .hero-image {
            position: relative;
            height: 570px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            width: 115%;
            height: 115%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .floating-icon {
            position: absolute;
            font-size: 40px;
            color: #D4AF37;
            opacity: 0.8;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 420px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
       
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* ===== SECTIONS ===== */
.about-image {
    width: 90%;
    height: 550px;
    object-fit: cover;
}


section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #B8860B;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 0 2rem 0;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
}


.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-body {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-category {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.3rem;
    color: var(--dark-gold);
    font-weight: 700;
    margin-top: 0.5rem;
}

@media (max-width:768px) {

  .product-card {
      margin-bottom: 18px;
  }

  .featured-collection {
      padding: 40px 0;
  }

  .product-image-wrapper {
      aspect-ratio: 4/5;
  }
}

/* ===========================
   Locate Our Store Section
=========================== */

.locate-store {
    background-color: var(--cream);
}

.store-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
     height: 350px;
}

.store-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.store-content {
    padding-left: 30px;
}

.store-description {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.store-details {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.store-details li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--dark);
}

.store-details i {
    color: var(--gold);
    margin-right: 10px;
}

/* Responsive */

@media (max-width: 991px) {
    .store-content {
        padding-left: 0;
        text-align: center;
    }
}

/* ===== STORE GALLERY SECTION ===== */
.store-gallery-section {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1eb 100%);
    padding: 80px 0;
}

.store-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.store-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 380px;
}

.store-image-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.store-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.store-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-image-card:hover .store-image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 175, 55, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.store-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

/* RESPONSIVE - TABLET */
@media (max-width: 1200px) {
    .store-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .store-image-card {
        height: 320px;
    }

    .overlay-text {
        font-size: 1.3rem;
    }
}

/* RESPONSIVE - TABLET (MEDIUM) */
@media (max-width: 991px) {
    .store-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .store-image-card {
        height: 300px;
    }

    .overlay-text {
        font-size: 1.2rem;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .store-gallery-section {
        padding: 50px 0;
    }

    .store-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-image-card {
        height: 280px;
    }

    .overlay-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* RESPONSIVE - SMALL MOBILE */
@media (max-width: 576px) {
    .store-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .store-image-card {
        height: 240px;
    }

    .overlay-text {
        font-size: 1rem;
    }

    .store-gallery-section {
        padding: 40px 0;
    }
}

/* ===============================
   Our Memories Section
================================ */

.memories-section {
    padding: 80px 0;
    background: #faf9f7;
}

.memories-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.memory-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.memory-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* ===============================
   Responsive Design
================================ */

@media (max-width: 992px) {
    .memories-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .memories-gallery {
        grid-template-columns: 1fr;
    }

    .memory-item img {
        height: 220px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #2B2420 ;
    color: #ccc;
    padding: 60px 0 0;
}

/* BRAND */
.footer-logo {
    max-width: 180px;
    margin-bottom: 12px;
}

.footer-caption {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* TITLES */
.footer-title {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

/* QUICK LINKS HORIZONTAL */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.footer-nav a {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--gold);
}

/* SOCIAL */
.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom .divider {
    margin: 0 8px;
    color: #555;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .footer-brand {
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-social {
        text-align: left;
    }

    .footer-social .social-icons {
        justify-content: flex-start;
    }
}


/* ===== FORM ===== */
.form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.was-validated .form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

/* ===== VALUES SECTION ===== */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== COLLECTION PAGE ===== */
.filter-section {
    background-color: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.filter-btn {
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    border: 2px solid #ddd;
    background: transparent;
    color: var(--dark);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.filter-btn:hover {
    border-color: var(--gold);
}

.sort-select {
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 0.5rem;
    color: var(--dark);
    background-color: white;
    cursor: pointer;
}

.search-box input {
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 0.7rem 1rem;
    width: 100%;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    width: 100%;
    padding: 25px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-radius: 0;
    border: none;
    margin-top: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 0;
    border: none;
    margin-top: 1rem;
}

/* ===== MAP ===== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background-color: var(--cream);
    padding: 1rem 0;
    border-radius: 0;
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item a {
    color: var(--dark);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* ===== UTILITIES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* .... */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 16px;
    }
}

/* Remove dot / underline / extra decoration */
.footer-social .social-icons,
.footer-social .social-icons a {
    list-style: none;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Make sure icons are clean */
.footer-social .social-icon {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Optional: clean focus outline */
.footer-social .social-icon:focus {
    outline: none;
}

/* ===== MOBILE HEADING CENTERING (SAFE) ===== */
@media (max-width: 768px) {
    /* Only affects "Celebrate Tradition..." and "Where Tradition..." sections */
    .about-intro-section .section-title,
    .about-intro-reversed-section .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the dividers */
    .about-intro-section .divider,
    .about-intro-reversed-section .divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the paragraph text */
    .about-intro-section .about-intro,
    .about-intro-section > p,
    .about-intro-reversed-section .about-intro,
    .about-intro-reversed-section > p {
        text-align: center;
    }
}

/* ===== MOBILE OUR STORY HEADING CENTERING ===== */
@media (max-width: 768px) {
    .our-story-section .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .our-story-section .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .our-story-section > .container > .row > .col-lg-6:last-child {
        text-align: center;
    }

    .our-story-section > .container > .row > .col-lg-6:last-child p {
        text-align: center;
    }
}

/* ===== MOBILE NAVBAR UNDERLINE ADJUSTMENT ===== */
@media (max-width: 991px) {
    
   .nav-link:hover::after,
   .nav-link.active::after {
   width: 20% !important;
   }

}

/* Our Memories Section Heading Center Fix */
.memories-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.memories-section .section-title {
    display: inline-block;
}

.memories-section .section-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
}
