/* assets/css/style.css */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
    --color-maroon-dark: #3B050B;
    --color-maroon-primary: #5E0B15;
    --color-maroon-light: #902935;
    --color-gold-accent: #C5A059;
    --color-gold-bright: #D4AF37;
    --color-gold-light: #E8D4B0;
    --color-cream-bg: #FAF6F0;
    --color-cream-card: #F5EFE6;
    --color-white: #FFFFFF;
    --color-text-dark: #2A2A2A;
    --color-text-light: #F5EFE6;
    --color-text-muted: #666666;
    
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 15px rgba(197, 160, 89, 0.3);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-maroon-dark);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-maroon-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-accent);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-bright);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.gold-text { color: var(--color-gold-accent); }
.white-text { color: var(--color-white); }

/* Main Page Layout */
.section-cream {
    background-color: var(--color-cream-bg);
    padding: 80px 0;
    position: relative;
}

.section-maroon {
    background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-maroon-primary) 100%);
    color: var(--color-text-light);
    padding: 80px 0;
    position: relative;
}

/* Mandala Decoration Backgrounds */
.section-maroon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23C5A059' stroke-width='0.15' stroke-dasharray='1 1' opacity='0.15'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23C5A059' stroke-width='0.1' opacity='0.12'/%3E%3Cpath d='M50,5 L50,95 M5,50 L95,50 M18.2,18.2 L81.8,81.8 M18.2,81.8 L81.8,18.2' stroke='%23C5A059' stroke-width='0.08' opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.section-cream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M9 24c0-8.28 6.72-15 15-15 8.28 0 15 6.72 15 15 0 8.28-6.72 15-15 15-8.28 0-15-6.72-15-15zm30 0c0-6.627-5.373-12-12-12-6.627 0-12 5.373-12 12 0 6.627 5.373 12 12 12 6.627 0 12-5.373 12-12zm-22.5 0c0-4.142 3.358-7.5 7.5-7.5 4.142 0 7.5 3.358 7.5 7.5 0 4.142-3.358 7.5-7.5 7.5-4.142 0-7.5-3.358-7.5-7.5zm11.25 0c0-2.071 1.679-3.75 3.75-3.75 2.071 0 3.75 1.679 3.75 3.75 0 2.071-1.679 3.75-3.75 3.75-2.071 0-3.75-1.679-3.75-3.75z' fill='%23C5A059' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.section-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold-accent);
}

.section-title.maroon-title {
    color: var(--color-maroon-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-weight: 400;
}

.section-subtitle.light-subtitle {
    color: var(--color-gold-light);
}

/* Header & Navigation */
header {
    background-color: rgba(59, 5, 11, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--color-gold-accent);
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-gold-accent);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold-accent);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    background: radial-gradient(circle, var(--color-maroon-primary) 0%, var(--color-maroon-dark) 100%);
    text-align: center;
    color: var(--color-white);
    border-bottom: 2px solid var(--color-gold-accent);
}

.hero-logo {
    height: 80px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold-accent);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-artiste-name {
    font-size: 3.5rem;
    color: var(--color-gold-bright);
    margin: 15px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-relation {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    max-width: 800px;
    margin: 40px auto 20px auto;
    padding: 15px 0;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.4);
}

.hero-meta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-accent);
    margin-bottom: 5px;
}

.hero-meta-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-gold-accent);
    border-radius: var(--radius-md);
    width: 70px;
    padding: 10px 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.countdown-num {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold-bright);
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

/* RSVP Section - Appears First/Highly Prominent */
.rsvp-section {
    padding-top: 40px;
    position: relative;
    z-index: 10;
}

.rsvp-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gold-accent);
    max-width: 600px;
    margin: -60px auto 0 auto; /* Pull up onto the hero section */
    padding: 40px;
    position: relative;
    z-index: 20;
}

.rsvp-card h2 {
    font-size: 1.8rem;
    color: var(--color-maroon-primary);
    text-align: center;
    margin-bottom: 10px;
}

.rsvp-card p {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-maroon-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-gold-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.radio-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-maroon-primary);
}

.btn-submit {
    width: 100%;
    background-color: var(--color-maroon-primary);
    color: var(--color-white);
    border: 1px solid var(--color-gold-accent);
    padding: 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
    background-color: var(--color-maroon-dark);
    color: var(--color-gold-accent);
    box-shadow: var(--shadow-gold);
}

#rsvp-success {
    display: none;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: #28A745;
    margin-bottom: 15px;
}

.btn-download-pass {
    display: inline-block;
    margin-top: 15px;
    background-color: var(--color-gold-accent);
    color: var(--color-maroon-dark);
    padding: 10px 20px;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.btn-download-pass:hover {
    background-color: var(--color-gold-bright);
}

/* About Artiste Section */
.profile-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.profile-image-container {
    position: relative;
    border: 3px solid var(--color-gold-accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-slow);
}

.profile-image-container:hover img {
    transform: scale(1.05);
}

.profile-text-content h3 {
    font-size: 1.8rem;
    color: var(--color-maroon-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.profile-text-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-gold-accent);
}

.profile-text-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

/* Lineage & Gurus Section */
.lineage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.lineage-card {
    background-color: var(--color-cream-card);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.lineage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-accent);
}

.lineage-img-wrapper {
    height: 240px;
    overflow: hidden;
    border-bottom: 2px solid var(--color-gold-accent);
}

.lineage-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.lineage-card:hover .lineage-img-wrapper img {
    transform: scale(1.05);
}

.lineage-info {
    padding: 20px;
    text-align: center;
}

.lineage-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-maroon-primary);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 5px;
}

.lineage-name {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--color-maroon-dark);
}

.lineage-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Parents / Chief Guests Segment */
.chief-guests-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed rgba(197, 160, 89, 0.4);
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 30px auto 0 auto;
}

.guest-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-white);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.guest-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold-accent);
}

.guest-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-maroon-primary);
}

.guest-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Program & Repertoire Section */
.repertoire-table-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-gold-accent);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.repertoire-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 2px solid var(--color-gold-accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--color-gold-bright);
    letter-spacing: 1px;
    font-weight: 700;
}

.repertoire-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    font-size: 1rem;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.repertoire-row:hover {
    background-color: rgba(197, 160, 89, 0.1);
    transform: scale(1.01);
}

.repertoire-dance {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.repertoire-dance::before {
    content: '✦';
    color: var(--color-gold-accent);
}

.repertoire-info-icon {
    font-size: 0.75rem;
    background: var(--color-gold-accent);
    color: var(--color-maroon-dark);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-weight: 700;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 50px auto 0 auto;
    padding-top: 30px;
    border-top: 1px dashed rgba(197, 160, 89, 0.4);
}

.credit-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.credit-role {
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

.credit-name {
    font-weight: 500;
    text-align: right;
}

/* Picture Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(197, 160, 89, 0.3);
    aspect-ratio: 4 / 5;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(59, 5, 11, 0.9) 0%, rgba(59, 5, 11, 0.2) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--color-gold-accent);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border: 3px solid var(--color-gold-accent);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
}

/* Video Section (YouTube & Instagram) */
.video-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background-color: var(--color-cream-card);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container.ratio-vertical {
    padding-bottom: 177.78%; /* 9:16 Aspect Ratio (Shorts/Reels) */
    max-width: 320px;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-maroon-primary);
    margin-bottom: 5px;
}

.video-platform {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Blessings Wall */
.blessings-wall-container {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 800px;
    margin: 40px auto 0 auto;
    overflow: hidden;
    position: relative;
}

.blessings-marquee {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.blessing-item {
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid var(--color-gold-accent);
    padding: 15px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blessing-text {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.blessing-author {
    font-size: 0.8rem;
    color: var(--color-gold-accent);
    text-align: right;
    font-weight: 600;
}

/* Repertoire Modal description */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 2500;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--color-maroon-dark);
    border: 2px solid var(--color-gold-accent);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    color: var(--color-text-light);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--color-gold-accent);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--color-gold-bright);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    padding-bottom: 8px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-gold-light);
    margin-bottom: 15px;
}

.modal-meta span {
    background-color: rgba(197, 160, 89, 0.15);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* Contact / Footer Section */
.contact-section {
    background-color: var(--color-maroon-dark);
    border-top: 2px solid var(--color-gold-accent);
    color: var(--color-text-light);
    padding: 60px 0;
    text-align: center;
}

.contact-logo {
    height: 60px;
    margin-bottom: 25px;
}

.contact-details {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item h4 {
    color: var(--color-gold-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.05rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 1px solid var(--color-gold-accent);
    color: var(--color-gold-accent);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 10px;
}

.map-btn:hover {
    background-color: var(--color-gold-accent);
    color: var(--color-maroon-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--color-gold-light);
    width: 45px;
    height: 45px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--color-maroon-dark);
    background-color: var(--color-gold-accent);
    border-color: var(--color-gold-accent);
}

.footer-credits {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Floating Action CTA Bar for Mobile First */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(59, 5, 11, 0.95);
    border-top: 2px solid var(--color-gold-accent);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 65px;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

.cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(197, 160, 89, 0.2);
}

.cta-button i {
    font-size: 1.25rem;
    margin-bottom: 3px;
    color: var(--color-gold-accent);
}

.cta-button:last-child {
    border-right: none;
}

.cta-button.whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.cta-button.whatsapp i {
    color: var(--color-white);
}

.cta-button:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.cta-button.whatsapp:hover {
    background-color: #20BA5A;
}

/* Pad the body so the floating bar doesn't overlay bottom content */
body {
    padding-bottom: 65px;
}

/* Responsive / Media Queries */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lineage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
    }

    header {
        order: 1;
    }

    #rsvp {
        order: 2;
        padding-top: 30px;
    }

    .rsvp-card {
        margin: 20px 10px;
        padding: 25px;
    }

    .hero-section {
        order: 3;
        padding: 60px 0 40px 0;
    }

    #artiste { order: 4; }
    #gurus { order: 5; }
    #repertoire { order: 6; }
    #gallery { order: 7; }
    #blessings-wall { order: 8; }
    #venue { order: 9; }

    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none; /* In production, toggle with JS */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(59, 5, 11, 0.98);
        border-bottom: 2px solid var(--color-gold-accent);
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-artiste-name {
        font-size: 2.8rem;
    }
    
    .hero-meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .hero-meta-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        padding-bottom: 15px;
    }
    
    .lineage-grid {
        grid-template-columns: 1fr;
    }
    
    .guests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .repertoire-header {
        grid-template-columns: 1fr 1fr;
    }
    
    .repertoire-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .repertoire-taalam {
        display: none; /* Hide taalam column on mobile */
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
    }
}

/* 9. NEW ADDITIONS: TYPEWRITER, MUSIC FLOATER & THANK YOU OVERLAY */

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Music player floating trigger button */
.music-toggle {
    position: fixed;
    bottom: 85px; /* Sits above the sticky mobile footer */
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-maroon-primary);
    color: var(--color-gold-accent);
    border: 2px solid var(--color-gold-accent);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.music-toggle.playing {
    animation: rotateMusic 5s linear infinite;
    background-color: var(--color-gold-accent);
    color: var(--color-maroon-dark);
}

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

/* Confetti Thank You Popup Modal Overlay */
.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(59, 5, 11, 0.97);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.thank-you-content {
    background-color: var(--color-maroon-dark);
    border: 2px solid var(--color-gold-accent);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
    animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.thank-you-flower {
    font-size: 3.5rem;
    color: var(--color-gold-accent);
    margin-bottom: 25px;
    animation: spinFlower 8s linear infinite;
    display: inline-block;
}

.thank-you-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-bright);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.thank-you-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

@keyframes scaleUp {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

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

/* Gurus Combined Layout styles */
.guru-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.guru-image-container {
    background-color: var(--color-white);
    border: 2px solid var(--color-gold-accent);
    border-radius: var(--radius-lg);
    padding: 15px;
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin-left: auto;
}

.guru-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 30px 20px !important;
        width: 85% !important;
        max-width: 340px !important;
    }
    
    .thank-you-content h2 {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .thank-you-content p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .thank-you-flower {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }

    .guru-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guru-image-container {
        margin: 0 auto;
        order: 1;
    }
    
    .guru-text-content {
        order: 2;
        text-align: left;
    }
}
