/* ROOT THEME COLORS */
:root {
    --gold: #c89443;
    --dark: #4c4c4c;
    --light-bg: #fff8f2;
    --white: #ffffff;
}

/* RESET AND BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-padding {
    padding: 60px 0;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-gold:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* HEADER STYLING */
.main-header {
    background-color: var(--white);
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
}

.navbar-brand .logo {
    height: 45px;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    color: var(--dark);
}

.brand-name {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}


.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-toggler {
    border: none;
    outline: none;
}

/* HERO SECTION */
.hero {
    height: 50vh;
    background: linear-gradient(135deg, #fffdf9, #fdf7f0);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1em;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1em;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 100px;
    }
}

/* === ABOUT SECTION === */
.about-section {
    background-color: #fdf8f3;
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Satoshi', sans-serif;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: #c48a30;
    margin: 20px 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    font-family: 'Satoshi', sans-serif;
}

.about-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
    }
}

/* === Rajmani Collection Section === */
.rajmani-collection {
    background: #fff8f0;
    padding: 60px 0;
}

.product-showcase {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.product-showcase:hover {
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-showcase:hover .product-image img {
    transform: scale(1.08);
}

.product-details {
    padding: 15px 20px;
    background-color: #fff;
}

.product-details h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.product-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.btn-inquire {
    display: inline-block;
    padding: 8px 18px;
    background: #c48a30;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-inquire:hover {
    background: #a66f1e;
}

/* === WHY CHOOSE RAJMANI === */
.why-rajmani {
    background: #fff;
}

.feature-card {
    background: #fff8f0;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 2rem;
    color: #c48a30;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
}

/* === HOW TO ORDER SECTION === */
.how-to-order {
    background: #fff8f0;
    padding: 70px 0;
}

.order-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.order-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.order-icon {
    font-size: 2rem;
    color: #c48a30;
    margin-bottom: 15px;
}

.order-step-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.order-step-card p {
    font-size: 0.95rem;
    color: #555;
}

/* === TESTIMONIAL SECTION === */
.testimonial-section {
    background-color: #fff;
    padding: 70px 0;
}

.testimonial-card {
    background: #fff8f0;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-stars {
    color: #f7b500;
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.testimonial-author h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

/* === FOOTER STYLES === */
.boutique-footer {
    background-color: #111;
    color: #ccc;
    padding: 70px 0 40px;
    font-family: 'Satoshi', sans-serif;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-nav {
    padding-left: 0;
}

.footer-nav li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-nav a {
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #c48a30;
}

.footer-social a {
    color: #ccc;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #c48a30;
}

.footer-divider {
    border-top: 1px solid #333;
    margin-top: 50px;
}

.copyright-text {
    color: #777;
    font-size: 0.85rem;
    padding-top: 10px;
}

@media (max-width: 767px) {

    .footer-text,
    .footer-nav,
    .footer-heading,
    .footer-social {
        text-align: center;
    }

    .footer-social a {
        margin: 0 10px;
    }
}

/* === MINIMAL WHATSAPP FLOATING ICON === */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon:hover {
    background-color: #1ebc57;
    transform: scale(1.05);
}