/* ======================================
   TANTRA KUTI BRAND COLORS
====================================== */

/* 1. Color Variables */
:root {
    --bg-main: #FFFFFF;
    --bg-secondary: #F7F5F0;
    --header-footer: #1C1C1C;
    --gold: #C9A24D;
    --gold-hover: #9E7C2F;

    --text-main: #1C1C1C;
    --text-sub: #3A3A3A;
    --text-para: #4A4A4A;
}

/* ======================================
   2. Body & Background
====================================== */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-para);
}

/* Secondary section background */
.section-light {
    background-color: var(--bg-secondary);
}

/* ======================================
   3. Typography
====================================== */


h1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 20px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-sub);
}

h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-sub);
}

p {
    font-size: 16px;
    color: var(--text-para);
    line-height: 1.7;
}

/* ======================================
   4. Header / Navbar
====================================== */
.navbar {
    background-color: #FFFFFF;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--text-main) !important;
}

.nav-link {
    color: var(--text-sub) !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* ======================================
   5. Footer
====================================== */
footer {
    background-color: #1C1C1C;
    color: #E0E0E0;   /* Light grey - clearly visible */
}

footer p {
    color: #CFCFCF;
}

footer li {
    color: #CFCFCF;
}

footer h5 {
    color: #FFFFFF;   /* Heading bright white */
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #C9A24D;   /* Gold hover */
}

/* ======================================
   6. Buttons
====================================== */

/* Primary Button */
.btn-primary-custom {
    background-color: #C9A24D;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary-custom:hover {
    background-color: #9E7C2F;
    color: #ffffff;
}

/* Secondary Button */
.btn-secondary-custom {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary-custom:hover {
    background-color: var(--gold);
    color: #FFFFFF;
}

/* ======================================
   7. Section Spacing
====================================== */
section {
    padding: 60px 0;
}

/* ======================================
   8. Card / Service Box
====================================== */
.service-box {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* ======================================
   9. Form / Iframe Area
====================================== */
iframe {
    border-radius: 8px;
}

/* ======================================
   10. Important Rule (No bright backgrounds)
====================================== */
/* Keep backgrounds white or ivory only */
/* image sections should carry emotional colors */

/* ======================================
   HERO SECTION
====================================== */

.hero-section {
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("image/baglamukhi.webp");

    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    min-height: 90vh;
    color: #ffffff;
    text-align: center;
}

.hero-section h1 {
    color: #ffffff !important;
    font-size: 44px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-section p {
    color: #f5e6c8 !important;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}
/* ===============================
   Services Page Professional Text
================================= */

/* All normal text same size */
.container p,
.container li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Main page title */
.container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 30px;
}

/* Service headings */
.container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1f2d3d;
    margin-top: 25px;
    margin-bottom: 8px;
}

/* List spacing */
.container ul {
    padding-left: 18px;
}

/* HR line soft */
.container hr {
    margin: 25px 0;
    opacity: 0.15;
}


.service-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Mobile Full Width Fix */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}
