/*
Theme Name: Isha Malviyaa Theme
Author: Your Name
Description: A custom theme for Isha Malviyaa, based on a static HTML template.
Version: 1.0
*/
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Header */
.top-bar {
    background-color: #343a40;
    color: #fff;
}

.navbar-brand img {
    max-width: 150px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    text-align: center;
}

/* About Us Section */
.about-us h2 {
    font-weight: 700;
    color: #343a40;
}
.contact-info {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #eef4fa;
}
p{
    text-align: justify;
}
/* Sections */
section {
    padding: 60px 0;
}
section:nth-child(odd) {
    background-color: #e5e6e7;
}
section:nth-child(even) {
    background-color: #f9f3f3;
}
section h2 {
    font-weight: 700;
    color: #343a40;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-header button{
    font-size: 1.1rem;
    text-align: left;
    width: 100%;
    font-weight: 600;
    color: #000000;
}
.card-header:focus{
    box-shadow: none;
}
.btn:focus {
    outline: 0;
    box-shadow: none;
}
.booking p{
    text-align: center;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.card-title {
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.btn-primary:hover {
    background-color: #d63384;
    border-color: #d63384;
}

/* Footer */
footer {
    background-color: #343a40;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 15px;
}

.social-links a:hover {
    color: #e83e8c;
}
/* =====================================================
   WordPress Default Content Styles
   ===================================================== */

/* Base Content Styles */
.entry-content,
.comment-content,
.page-content,
.post-content,
.content-area {
    line-height: 1.8;
    color: #333;
}

/* Headings */
.entry-content h1,
.page-content h1 {
    font-size: 1.90rem;
    font-weight: 600;
	text-align:center;
}

.entry-content h2,
.page-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
	text-align:center;
}

.entry-content h3,
.page-content h3 {
    font-size: 1.70rem;
    font-weight: 500;
}

.entry-content h4,
.page-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

.entry-content h5,
.page-content h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

.entry-content h6,
.page-content h6 {
    font-size: 1.1rem;
    font-weight: 500;
}

/* First heading margin adjustment */
.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
    margin-top: 0;
}

/* Paragraphs */
.entry-content p,
.page-content p {
    margin-bottom: 1.1em;
}

/* =====================================================
   LIST STYLES - UL, OL, LI
   ===================================================== */

/* Unordered Lists */
.entry-content ul,
.comment-content ul,
.page-content ul {
    margin: 0 0 1.5em 1.5em;
    padding: 0;
    list-style: disc;
}

.entry-content ul ul,
.comment-content ul ul,
.page-content ul ul {
    margin: 0 0 0 1.5em;
    list-style: circle;
}

.entry-content ul ul ul,
.comment-content ul ul ul,
.page-content ul ul ul {
    list-style: square;
}

/* Ordered Lists */
.entry-content ol,
.comment-content ol,
.page-content ol {
    margin: 0 0 1.5em 1.5em;
    padding: 0;
    list-style: decimal;
}

.entry-content ol ol,
.comment-content ol ol,
.page-content ol ol {
    margin: 0 0 0 1.5em;
    list-style: lower-alpha;
}

.entry-content ol ol ol,
.comment-content ol ol ol,
.page-content ol ol ol {
    list-style: lower-roman;
}

/* List Items */
.entry-content li,
.comment-content li,
.page-content li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.entry-content li:last-child,
.comment-content li:last-child,
.page-content li:last-child {
    margin-bottom: 0;
}

/* Nested Lists */
.entry-content li > ul,
.entry-content li > ol,
.comment-content li > ul,
.comment-content li > ol,
.page-content li > ul,
.page-content li > ol {
    margin-top: 0.5em;
    margin-bottom: 0;
}
.navbar-light .navbar-nav .nav-link
 {
    color: rgba(0, 0, 0, 1);
}
/* =====================================================
   STYLIZED LISTS WITH ICONS
   ===================================================== */

/* Checkmark List */
.checklist {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.checklist li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 0.75em;
}

.checklist li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Arrow List */
.arrow-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.arrow-list li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 0.75em;
}

.arrow-list li:before {
    content: "→";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Star List */
.star-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.star-list li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 0.75em;
}

.star-list li:before {
    content: "★";
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Circle List */
.circle-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.circle-list li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 0.75em;
}

.circle-list li:before {
    content: "●";
    color: #17a2b8;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Numbered List with Styling */
.numbered-list {
    list-style: none;
    counter-reset: item;
    margin-left: 0;
    padding-left: 0;
}

.numbered-list li {
    counter-increment: item;
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 1em;
}

.numbered-list li:before {
    content: counter(item);
    background: #007bff;
    color: white;
    font-weight: bold;
    width: 1.8em;
    height: 1.8em;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9em;
}

/* =====================================================
   OTHER CONTENT ELEMENTS
   ===================================================== */

/* Blockquotes */
.entry-content blockquote,
.page-content blockquote {
    margin: 1.5em 0;
    padding: 1.5em 2em;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    font-style: italic;
    color: #666;
}

.entry-content blockquote p:last-child,
.page-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content blockquote cite,
.page-content blockquote cite {
    display: block;
    margin-top: 1em;
    font-style: normal;
    font-weight: bold;
    color: #333;
}

/* Images */
.entry-content img,
.page-content img {
    max-width: 100%;
    height: auto;
}

.entry-content .alignleft {
    float: left;
    margin: 0.5em 1.5em 1em 0;
}

.entry-content .alignright {
    float: right;
    margin: 0.5em 0 1em 1.5em;
}

.entry-content .aligncenter {
    display: block;
    margin: 1.5em auto;
}

.entry-content .wp-caption {
    max-width: 100%;
    background: #f8f9fa;
    padding: 0.5em;
    text-align: center;
}

.entry-content .wp-caption-text {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #666;
}

/* Tables */
.entry-content table,
.page-content table {
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: collapse;
}

.entry-content th,
.page-content th {
    background: #f8f9fa;
    padding: 0.75em;
    border: 1px solid #dee2e6;
    text-align: left;
    font-weight: 600;
}

.entry-content td,
.page-content td {
    padding: 0.75em;
    border: 1px solid #dee2e6;
}

/* Code */
.entry-content code,
.page-content code {
    background: #f8f9fa;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
    color: #e83e8c;
}

.entry-content pre {
    background: #f8f9fa;
    padding: 1.5em;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: #333;
}

/* =====================================================
   GUTENBERG EDITOR SUPPORT
   ===================================================== */

/* For Gutenberg editor compatibility */
.wp-block-list {
    margin: 0 0 1.5em 1.5em;
    padding: 0;
}

.wp-block-list li {
    margin-bottom: 0.5em;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 768px) {
    .entry-content h1 {
        font-size: 2rem;
    }
    
    .entry-content h2 {
        font-size: 1.75rem;
    }
    
    .entry-content h3 {
        font-size: 1.5rem;
    }
    
    .entry-content ul,
    .entry-content ol {
        margin-left: 1em;
    }
    
    .entry-content ul ul,
    .entry-content ol ol {
        margin-left: 1em;
    }
    
    .entry-content .alignleft,
    .entry-content .alignright {
        float: none;
        margin: 1em auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .entry-content h1 {
        font-size: 1.75rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .entry-content ul,
    .entry-content ol {
        margin-left: 0.75em;
    }
}
.faq p{
    margin-bottom:0;
}

/* Section background + spacing */
.dream-girls {
    position: relative;
    overflow: hidden;
}

/* Heading style */
.dream-girls h2 {
    font-weight: 700;
    font-size: 32px;
    color: #d63384;
    letter-spacing: 1px;
    position: relative;
}

.dream-girls h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #d63384;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Card styling */
.dream-girls .col-sm-3 {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image styling */
.dream-girls img {
    border: 4px solid #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Name styling */
.dream-girls h5 {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

/* Hover Effects */
.dream-girls .col-sm-3:hover {
    transform: translateY(-10px) scale(1.05);
}

.dream-girls .col-sm-3:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.dream-girls .col-sm-3:hover h5 {
    color: #d63384;
}

/* Link styling */
.dream-girls a {
    text-decoration: none;
    display: block;
}

/* Glow effect */
.dream-girls .col-sm-3:hover img {
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.5);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .dream-girls h2 {
        font-size: 24px;
    }

    .dream-girls h5 {
        font-size: 14px;
    }
}
/* Wrapper */
.banner-item {
    position: relative;
}

/* Image */
.banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    text-align: center;
    width: 100%;
    padding: 20px;
}

/* Optional dark overlay */
.banner-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* Text */
.banner-title {
    position: relative;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-img {
        height: 250px;
    }

    .banner-title {
        font-size: 24px;
    }
}

/* Section spacing */


/* Heading */

/* Card Button Style */
.area-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border: 1px solid #eee;

    transition: all 0.3s ease;
}

/* Hover Effect */
.area-card:hover {
    background: linear-gradient(135deg, #ff4d6d, #ff85a2);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Active click feel */
.area-card:active {
    transform: scale(0.95);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .area-card {
        font-size: 14px;
        padding: 10px;
    }
}
a{
	text-decoration:none;
}
a:hover{
	text-decoration:none;
}