/* Professional IIJS Bharat Styles */

:root {
    --primary: #B8860B;
    --primary-dark: #8B6914;
    --gold: #FFD700;
    --gold-light: #FFF8DC;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --gray: #6C757D;
    --gray-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.text-gold { color: var(--gold) !important; }


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(184, 134, 11, 0.3)), 
                url('../images/indian-artistry/Asset 1@4x.png') center/cover;
    position: relative;
}

.hero-overlay {
    display: flex;
    align-items: center;
    position: relative;
}

.hero-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* Section Styling */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    margin: 2rem auto;
    border-radius: 2px;
}

.section-divider.white {
    background: linear-gradient(135deg, var(--gold), white);
}

/* Theme Section */
.theme-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), transparent);
}

.theme-content {
    padding: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.theme-stats {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Art Forms */
.art-form-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.art-form-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.art-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.art-form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.art-form-icon.silver {
    background: linear-gradient(135deg, #C0C0C0, #E5E5E5);
    color: var(--dark);
}

.art-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.art-form-location {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.art-form-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.art-form-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.art-form-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--gold-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary);
}

.tag.silver {
    background: #F5F5F5;
    color: var(--dark);
    border-color: #C0C0C0;
}

.art-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-rows: 1fr auto;
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Design Section */
.design-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 6rem 0;
    color: white;
}

.design-section .section-title {
    color: white;
}

.design-content {
    padding: 2rem 0;
}

.design-lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.design-text {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8;
}

.design-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.design-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.motifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.motif-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.motif-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.motif-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motif-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.motif-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* CTA Section */
.cta-section {
    background: var(--gray-light);
    padding: 6rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-actions {
    margin-bottom: 3rem;
}

.cta-actions .btn {
    margin: 0 1rem 1rem 0;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-item {
    padding: 1rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
}

.info-item h5 {
    font-weight: 600;
    color: var(--dark);
    margin: 1rem 0 0.5rem;
}

.info-item p {
    color: var(--gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: 2.2rem; }
    .cta-title { font-size: 2.2rem; }
    
    .art-form-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .art-form-title { font-size: 1.5rem; }
    .motifs-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-actions .btn { margin: 0.5rem; }
    
    .gallery-main img { height: 200px; }
    .gallery-thumbs img { height: 80px; }
}

/* Utilities */
html { scroll-behavior: smooth; }

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.text-primary { color: var(--primary) !important; }
.bg-light { background: var(--gray-light) !important; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}