/* Style variables for Mrs Lady B Website */
:root {
    --transition-speed: 0.3s;
    --border-radius: 12px;
    
    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Dark Theme Colors (Default) */
html[data-theme="dark"] {
    --bg-color: #08090d;
    --text-primary: #f5f6fa;
    --text-secondary: #a0a5c0;
    
    --header-bg: rgba(12, 14, 21, 0.75);
    --card-bg: rgba(20, 22, 33, 0.6);
    --card-hover-bg: rgba(26, 29, 44, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover-color: rgba(255, 255, 255, 0.18);
    
    --accent-gold: #e5b838;
    --accent-gold-hover: #d2a527;
    --accent-gold-glow: rgba(229, 184, 56, 0.15);
    
    --accent-violet: #a55eea;
    --accent-violet-glow: rgba(165, 94, 234, 0.25);
    
    --input-bg: rgba(12, 14, 21, 0.6);
    --input-focus-border: #e5b838;
    
    --shadow-color: rgba(0, 0, 0, 0.5);
    --alert-success-bg: rgba(46, 204, 113, 0.15);
    --alert-success-border: rgba(46, 204, 113, 0.4);
}

/* Light Theme Colors */
html[data-theme="light"] {
    --bg-color: #f7f8fc;
    --text-primary: #12151e;
    --text-secondary: #5a6078;
    
    --header-bg: rgba(247, 248, 252, 0.8);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-hover-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover-color: rgba(0, 0, 0, 0.18);
    
    --accent-gold: #c59828;
    --accent-gold-hover: #a57e1c;
    --accent-gold-glow: rgba(197, 152, 40, 0.1);
    
    --accent-violet: #883cf5;
    --accent-violet-glow: rgba(136, 60, 245, 0.15);
    
    --input-bg: #ffffff;
    --input-focus-border: #c59828;
    
    --shadow-color: rgba(0, 0, 0, 0.05);
    --alert-success-bg: rgba(46, 204, 113, 0.1);
    --alert-success-border: rgba(46, 204, 113, 0.6);
}

/* General Reset & Layout Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

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

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5em;
}

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

/* Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-speed) ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo-link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-prefix {
    color: var(--text-primary);
}

.logo-suffix {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    transition: all var(--transition-speed) ease;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold-glow);
}

/* Toggle icon display based on theme attribute */
html[data-theme="dark"] .theme-toggle-btn .moon-icon {
    display: none;
}
html[data-theme="light"] .theme-toggle-btn .sun-icon {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
}

/* Main Content Area */
.main-content {
    margin-top: 85px; /* Offset fixed header */
    min-height: calc(100vh - 85px - 280px);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #cca32a);
    color: #08090d;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-gold-glow);
}

.btn-secondary {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    background-color: var(--card-hover-bg);
}

.btn-youtube {
    background-color: #ff0000;
    color: #ffffff;
}

.btn-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.2);
}

.btn-card-watch {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-card-watch:hover {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* CSS Grid layout utility */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.align-items-center {
    align-items: center;
}

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

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 15px auto;
    border-radius: 2px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Base */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
    background-color: var(--card-hover-bg);
}

/* HOME PAGE STYLING */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 85px);
    text-align: center;
}

.hero-bg-glows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background-color: var(--accent-gold);
    top: 10%;
    left: -10%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background-color: var(--accent-violet);
    bottom: -10%;
    right: -10%;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease forwards;
}

.text-accent {
    color: var(--text-primary);
}

.text-glow {
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--accent-gold-glow);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards;
}

.hero-actions-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-indicator span {
    margin-bottom: 8px;
}

.bounce {
    animation: bounce 2s infinite;
}

/* Category Focus section */
.category-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-footer-action {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    color: var(--text-primary);
}

/* Spotlight Section */
.spotlight-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.spotlight-text p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    background-color: var(--accent-violet-glow);
    color: var(--accent-violet);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.youtube-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-frame-wrapper {
    position: relative;
    padding: 10px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--border-color), rgba(255, 255, 255, 0.02));
    box-shadow: 0 10px 40px var(--shadow-color);
}

.media-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 13, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    z-index: 5;
    padding: 20px;
    text-align: center;
}

.play-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    transition: all var(--transition-speed) ease;
    filter: drop-shadow(0 0 10px var(--accent-gold-glow));
}

.video-info h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.video-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.media-frame:hover .video-placeholder-overlay {
    background: rgba(8, 9, 13, 0.4);
}

.media-frame:hover .play-icon {
    transform: scale(1.1);
    color: #ffffff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.video-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Quote Banner */
.quote-banner {
    background: linear-gradient(135deg, #10121b, #06070a);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

html[data-theme="light"] .quote-banner {
    background: linear-gradient(135deg, #ffffff, #f0f1f5);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon-start {
    font-size: 40px;
    color: var(--accent-gold);
    opacity: 0.15;
    margin-bottom: 20px;
}

.quote-container blockquote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.quote-container cite {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-style: normal;
}

/* PORTFOLIO PAGE STYLING */

/* Page Header */
.page-header {
    padding: 60px 0 20px;
}

.page-header-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.page-header-title {
    font-size: 48px;
}

.page-header-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.filter-btn:hover, .filter-btn.active {
    color: var(--text-primary);
    border-color: var(--accent-gold);
    background-color: var(--card-hover-bg);
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

/* Project Cards */
.project-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.project-card:hover {
    border-color: var(--border-hover-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.project-card-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    background-color: #0b0c10;
    overflow: hidden;
}

.project-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-gold);
    color: #08090d;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 10;
}

.project-card-year {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(8, 9, 13, 0.8);
    color: #ffffff;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    border-radius: 20px;
    z-index: 10;
}

.project-graphic-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
    background: linear-gradient(135deg, #10121c, #06070a);
    position: relative;
    transition: transform var(--transition-speed) ease;
}

.project-card:hover .project-graphic-placeholder {
    transform: scale(1.03);
}

.project-film-icon {
    font-size: 48px;
    opacity: 0.15;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px var(--accent-gold-glow));
}

.project-duration-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.project-role {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-status {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-released {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.badge-in-post-production {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.project-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.project-card-actions {
    margin-top: auto;
}

/* Call To Action Block */
.cta-section {
    padding: 80px 20px;
    border-top: 1px solid var(--border-color);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-container p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

/* ABOUT PAGE STYLING */
.bio-image-wrapper {
    display: flex;
    justify-content: center;
}

.image-frame-container {
    position: relative;
    padding: 15px;
    width: 100%;
    max-width: 420px;
}

.bio-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    filter: grayscale(15%);
    transition: filter var(--transition-speed) ease;
}

.bio-image:hover {
    filter: grayscale(0%);
}

.image-frame-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid var(--accent-gold);
    pointer-events: none;
    z-index: 10;
}

.border-top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.border-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.bio-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bio-intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.bio-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Skills/Role meters */
.skills-indicator {
    margin-top: 30px;
}

.skill-bar {
    margin-bottom: 20px;
}

.skill-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.skill-progress-bg {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 3px;
}

/* Timeline Layout */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-badge {
    position: absolute;
    top: 5px;
    left: 21px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 0 10px var(--accent-gold-glow);
}

.timeline-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all var(--transition-speed) ease;
}

.timeline-card:hover {
    border-color: var(--accent-gold);
    background-color: var(--card-hover-bg);
}

.timeline-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* CONTACT PAGE STYLING */
.success-alert {
    background-color: var(--alert-success-bg);
    border: 1px solid var(--alert-success-border);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease forwards;
}

.alert-icon {
    font-size: 24px;
    color: #2ecc71;
}

.alert-content h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.alert-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-info-panel h2, .contact-form-panel h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-details-list {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.item-icon {
    width: 44px;
    height: 44px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.item-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.item-info p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-primary);
}

.social-panel-title {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.social-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-channel-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-speed) ease;
}

.social-channel-card i {
    font-size: 20px;
    width: 30px;
}

.channel-info {
    display: flex;
    flex-direction: column;
}

.channel-info span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.channel-info small {
    font-size: 11px;
    color: var(--text-secondary);
}

.social-channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.social-channel-card.yt:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.social-channel-card.ig:hover {
    border-color: #e1306c;
    color: #e1306c;
}

.social-channel-card.tt:hover {
    border-color: #010101;
    color: var(--text-primary);
}

.social-channel-card.fb:hover {
    border-color: #1877f2;
    color: #1877f2;
}

/* Contact Form controls */
.contact-form-panel {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--input-focus-border);
    box-shadow: 0 0 8px var(--accent-gold-glow);
}

/* FOOTER STYLING */
.main-footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--header-bg);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 15px;
    max-width: 320px;
}

.footer-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 15px;
    transition: all var(--transition-speed) ease;
}

.social-icon-link:hover {
    color: #ffffff;
}

.social-icon-link.yt:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.social-icon-link.ig:hover {
    background-color: #e1306c;
    border-color: #e1306c;
}

.social-icon-link.tt:hover {
    background-color: #000000;
    border-color: #000000;
}

.social-icon-link.fb:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Navigation toggle */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none; /* JS will toggle this class to active */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-badge {
        left: 1px;
    }
    
    .contact-form-panel {
        padding: 25px;
    }
    
    .social-channels-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}
