/* ========================================
   TANTRA INC - ENHANCED SUBSIDIARY PAGES
   Classy, Organized, Professional Layouts
   ======================================== */

/* ========================================
   ENHANCED HERO SECTIONS
   ======================================== */
.hero-section {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--darker-green) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 127, 78, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(26, 127, 78, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-icon i {
    font-size: 36px;
    color: white;
}

.hero-section h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--bright-green), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 50px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat strong {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-yellow);
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.hero-stats .stat span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========================================
   ENHANCED SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(26, 127, 78, 0.3);
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   ENHANCED CARD DESIGNS
   ======================================== */
.film-card,
.show-card,
.album-card,
.event-card,
.service-card,
.project-card {
    background: rgba(26, 127, 78, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.film-card:hover,
.show-card:hover,
.album-card:hover,
.event-card:hover,
.service-card:hover,
.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 217, 61, 0.5);
}

.film-card::before,
.show-card::before,
.album-card::before,
.event-card::before,
.service-card::before,
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-green), var(--bright-yellow), var(--vibrant-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-card:hover::before,
.show-card:hover::before,
.album-card:hover::before,
.event-card:hover::before,
.service-card:hover::before,
.project-card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    overflow: hidden;
    padding-top: 140%;
    background: rgba(0, 0, 0, 0.3);
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.film-card:hover .card-image img,
.show-card:hover .card-image img,
.album-card:hover .card-image img,
.event-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ========================================
   ENHANCED GRIDS
   ======================================== */
.films-grid,
.shows-grid,
.albums-grid,
.events-grid,
.services-grid,
.projects-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.films-grid,
.shows-grid,
.albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.events-grid,
.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

/* ========================================
   ENHANCED BADGES & TAGS
   ======================================== */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.badge-award {
    background: linear-gradient(135deg, var(--bright-yellow), #ffeb3b);
    color: #333;
}

.badge-new {
    background: linear-gradient(135deg, var(--vibrant-red), #ff4757);
    color: white;
}

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

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.genre-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.genre-tag:hover {
    background: rgba(255, 217, 61, 0.2);
    border-color: var(--bright-yellow);
    color: var(--bright-yellow);
}

/* ========================================
   ENHANCED FEATURE CARDS
   ======================================== */
.features-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.features-grid.three-column {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.features-grid.four-column {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background: rgba(26, 127, 78, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(26, 127, 78, 0.25);
    border-color: rgba(255, 217, 61, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(26, 127, 78, 0.3);
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   ENHANCED BUTTONS
   ======================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
    color: white;
    box-shadow: 0 8px 25px rgba(26, 127, 78, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 127, 78, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--bright-yellow), #ffeb3b);
    color: #333;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 217, 61, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* ========================================
   ENHANCED SPACING & SECTIONS
   ======================================== */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(0, 0, 0, 0.15);
}

.about-section,
.capabilities-section,
.portfolio-section {
    padding: 120px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================================
   ENHANCED STATISTICS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 50px 0;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bright-yellow);
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.stat-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   ENHANCED CTA SECTIONS
   ======================================== */
.subsidiary-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--darker-green));
    position: relative;
    overflow: hidden;
}

.subsidiary-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(26, 127, 78, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 217, 61, 0.15) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .films-grid,
    .shows-grid,
    .albums-grid,
    .events-grid,
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid.three-column,
    .features-grid.four-column {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-icon i {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
}
