/* ============================================================
   GLOBAL RESET & TYPOGRAPHY
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #201b12;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    background: transparent;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1030;
}

#mainNav .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

#mainNav .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

#mainNav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4a373;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    width: 60%;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #fff;
}

/* Navbar scrolled state */
#mainNav.navbar-scrolled {
    background: rgba(32, 27, 18, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

#mainNav.navbar-scrolled .navbar-brand {
    color: #fff;
}

#mainNav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 10px;
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background: rgba(32, 27, 18, 0.97);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 16px;
        margin-top: 10px;
    }
    #mainNav .navbar-nav .nav-link {
        text-align: center;
        padding: 10px;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 163, 115, 0.25);
    backdrop-filter: blur(6px);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a373;
    border: 1px solid rgba(212, 163, 115, 0.3);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.btn-hero {
    background: #d4a373;
    color: #201b12;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 60px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 163, 115, 0.35);
    border: none;
}

.btn-hero:hover {
    background: #e8c9a0;
    color: #201b12;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 163, 115, 0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-text {
        font-size: 1rem;
    }
    .btn-hero {
        padding: 12px 32px;
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.welcome-section {
    background: linear-gradient(135deg, #2c241b 0%, #201b12 100%);
    padding: 80px 0;
}

.welcome-section .section-title {
    color: #d4a373;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

#aboutCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#aboutCarousel .carousel-inner {
    border-radius: 20px;
}

#aboutCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

#aboutCarousel .carousel-indicators button.active {
    background: #d4a373;
    transform: scale(1.2);
}

#aboutCarousel .carousel-control-prev-icon,
#aboutCarousel .carousel-control-next-icon {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

/* ============================================================
   LATEST WORK (Swiper Coverflow)
   ============================================================ */
.latest-work {
    background: linear-gradient(180deg, #201b12 0%, #2c241b 100%);
    padding: 80px 0 100px;
}

.coverflow-swiper {
    padding: 40px 0 60px;
    width: 100%;
}

.coverflow-swiper .swiper-slide {
    width: 320px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.coverflow-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coverflow-swiper .swiper-slide:hover img {
    transform: scale(1.08);
}

.coverflow-swiper .swiper-button-next,
.coverflow-swiper .swiper-button-prev {
    color: #d4a373;
    background: rgba(32, 27, 18, 0.7);
    backdrop-filter: blur(6px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.coverflow-swiper .swiper-button-next:hover,
.coverflow-swiper .swiper-button-prev:hover {
    background: #d4a373;
    color: #201b12;
}

.coverflow-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.coverflow-swiper .swiper-pagination-bullet-active {
    background: #d4a373;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-overlay .lightbox-content img {
    width: 60%;
    height: 100%;
    object-fit: contain;
}

.lightbox-overlay .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.lightbox-overlay .lightbox-close:hover {
    transform: rotate(90deg);
    color: #d4a373;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: linear-gradient(135deg, #201b12 0%, #3a2f24 100%);
    padding: 80px 0;
}

.service-card {
    position: relative;
    height: 380px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.service-card .service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 15, 10, 0.85) 0%, rgba(0, 0, 0, 0.2) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(0deg, rgba(32, 27, 18, 0.92) 0%, rgba(0, 0, 0, 0.3) 80%);
}

.service-card .service-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-overlay h3 {
    transform: translateY(0);
}

.service-card .service-card-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    transform: translateY(10px);
    transition: transform 0.5s ease 0.05s;
    margin: 0;
}

.service-card:hover .service-card-overlay p {
    transform: translateY(0);
}

/* ============================================================
   PRODUCTS (Home & Shop)
   ============================================================ */
.products {
    background: linear-gradient(135deg, #201b12 0%, #2c241b 100%);
    padding: 80px 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 163, 115, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.product-card .product-img-wrap {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 1 / 1;
}

.product-card .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-card .product-body {
    padding: 18px 16px;
    text-align: center;
}

.product-card .product-body h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #f0e6d8;
    letter-spacing: 0.3px;
    margin: 0;
}

.btn-show-more {
    background: transparent;
    color: #d4a373;
    border: 2px solid #d4a373;
    padding: 12px 42px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.btn-show-more:hover {
    background: #d4a373;
    color: #201b12;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 163, 115, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, #1a1610 0%, #201b12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 30px;
}

.footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4a373;
    margin-bottom: 10px;
}

.footer .footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-right: 8px;
}

.footer .footer-social a:hover {
    background: #d4a373;
    color: #201b12;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
}

.footer .footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer .footer-links li a:hover {
    color: #d4a373;
    padding-left: 6px;
}

.footer .footer-social-links li {
    margin-bottom: 10px;
}

.footer .footer-social-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer .footer-social-links li a:hover {
    color: #d4a373;
    padding-left: 6px;
}

.footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 30px 0 20px;
}

.footer .footer-bottom {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .service-card {
        height: 280px;
    }
    .service-card .service-card-overlay h3 {
        font-size: 1.4rem;
    }
    .coverflow-swiper .swiper-slide {
        height: 280px;
        width: 220px;
    }
    .footer .footer-brand {
        font-size: 1.6rem;
    }
}