/* --------------------------------------------
   Traditional Rajasthani Theme Styling
   For About Page - TheRajasthanTourPackages.com
----------------------------------------------*/

:root {
    --royal-red: #b92b27;
    --marigold: #ffb300;
    --desert-sand: #f9f3e8;
    --peacock-blue: #0c5c75;
    --text-dark: #333;
    --soft-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

/* General Page Styling */
body {
    background-color: #fffaf3;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

/* --- HERO SECTION --- */
.hero-overlay-content h1 {
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero-overlay-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* --- SECTION TITLES --- */
.about-section h2,
.choose-us-section h2,
.heritage-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-red);
    text-align: center;
    position: relative;
}

.about-section h2::after,
.choose-us-section h2::after,
.heritage-section h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: var(--marigold);
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

/* --- ABOUT TEXT --- */
.about-section p {
    line-height: 1.8;
    color: #555;
}

/* --- ABOUT IMAGE --- */
.about-section img {
    border: 5px solid var(--marigold);
    border-radius: 12px;
    box-shadow: var(--soft-shadow);
}

/* --- HERITAGE BOXES --- */
.heritage-section .p-4 {
    border: 2px solid #f1d8b2;
    transition: transform .3s ease, box-shadow .3s ease;
}

.heritage-section .p-4:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow);
    border-color: var(--marigold);
}

/* --- CHOOSE US CARDS --- */
.choose-us-section .shadow {
    border: 1px solid #f5d6ab;
    transition: all .3s ease;
    background: #fffdf9;
}

.choose-us-section .shadow:hover {
    transform: translateY(-7px);
    box-shadow: var(--soft-shadow);
    border-color: var(--marigold);
}

/* Icon Styling */
.choose-us-section img {
    filter: drop-shadow(0 3px 8px rgba(255,179,0,0.4));
}

/* --- CALL TO ACTION --- */
.cta-section {
    background: linear-gradient(90deg, var(--royal-red), var(--marigold));
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.cta-section a.btn {
    border-radius: 30px;
    padding: 10px 35px;
    letter-spacing: 1px;
}

/* --- RAJASTHANI ORNAMENTAL BORDER --- */
.traditional-border {
    position: relative;
    padding: 25px;
}

.traditional-border::before,
.traditional-border::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    background: url('../images/patterns/rajasthani-border.png') repeat-x;
    left: 0;
}

.traditional-border::before {
    top: -5px;
}

.traditional-border::after {
    bottom: -5px;
}

/* OPTIONAL: Mandala background */
.mandala-bg {
    background: url('../images/patterns/mandala.svg') center/250px repeat;
    opacity: 0.05;
}

/* Buttons */
.btn-warning {
    background-color: var(--marigold);
    border: none;
}

.btn-warning:hover {
    background-color: #e6a000;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .about-section img {
        margin-top: 20px;
    }
}
