@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgb(233 30 99);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 20px;
}
.pricing-card {
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card ul li {
    font-size: 15px;
}
/* Carousel */
.carousel-container {
    padding: 20px 0;
}

#girlsCarousel {
    display: flex;
    gap: 24px;
}

.carousel-card {
    min-width: 260px;
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.carousel-card:hover {
    transform: scale(1.05);
}

.carousel-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
    padding: 20px 15px 15px;
}

@keyframes autoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Arrow Buttons */
button[onclick^="prev"], button[onclick^="next"] {
    backdrop-filter: blur(8px);
}
.tag-card {
    transition: all 0.3s ease;
}

.tag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(233, 30, 99, 0.2);
}
/* FAQ Accordion */
.faq-item {
    background: #111827;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #d1d5db;
}

.faq-answer.open {
    padding-bottom: 24px;
    max-height: 300px;
}

.faq-question:hover {
    background: #1f2937;
}
.review-card {
    transition: all 0.4s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(233, 30, 99, 0.15);
}
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    padding-left: 4px;
}
/* Girl Profile Card - Compact Height */
.girl-card {
    min-height: 320px;           /* ← Yeh main change hai */
    transition: all 0.3s ease;
}

.girl-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
}

.girl-card img {
    height: 100%;
    object-fit: cover;
}

/* Right side content adjustment */
.girl-card .content-side {
    padding: 20px;
}

/* Mobile pe aur compact */
@media (max-width: 768px) {
    .girl-card {
        min-height: 280px;
    }
    .girl-card img {
        height: 400px;
    }
}
/* ====================== TIGHT CONTENT SECTION CSS ====================== */

.content-section {
    padding-top: 60px;     /* Upar padding */
    padding-bottom: 60px;  /* Neeche padding */
    background: #0a0a0a;
}

.content-container {
    max-width: 1000px;     /* Column width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;    /* Left gap */
    padding-right: 12px;   /* Right gap */
}

.content-inner {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16.5px;
    line-height: 1.75;
    color: #d1d5db;
}

/* Heading */
.content-section h2 {
    margin-bottom: 40px;
}

/* Paragraph spacing */
.content-inner p {
    margin-bottom: 28px;
}

/* Optional: Agar border kam karna hai */
.content-section {
    border: none;
}

/* Agar aap aur tight karna chahein toh yeh classes use karo */
.tight-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.tight-content .content-container {
    padding-left: 10px;
    padding-right: 10px;
}

.tight-content .content-inner {
    padding-left: 5px;
    padding-right: 5px;
}