/* style.css - Dynamic Speaker & Life Coach Portfolio Styling */
:root {
    /* Color Palette - High Energy, Confidence, and Professionalism (Dark Theme) */
    --color-bg: #0F1218;
    /* Deep Space Black */
    --color-bg-alt: #161A23;
    /* Slightly lighter dark background */

    --color-text: #E2E8F0;
    /* Crisp Light Gray for body */
    --color-text-muted: #94A3B8;
    --color-text-dark: #0F1218;

    --color-primary: #FF3D00;
    /* Energetic Electric Orange */
    --color-primary-hover: #E63500;

    --color-secondary: #00B4D8;
    /* Trustworthy vibrant blue */

    --color-border: #2D3748;
    --color-border-light: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Layout & Spacing */
    --container-width: 1240px;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(255, 61, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: min(var(--container-width), 90vw);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    z-index: 1000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.section-padding {
    padding: 6rem 0;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.mt-5 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

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

.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-accent {
    background: linear-gradient(135deg, var(--color-primary), #D12A00);
    color: white;
}

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

.text-muted {
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff !important;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary) !important;
    box-shadow: var(--shadow-glow);
}

.btn-outline-dynamic {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.btn-outline-dynamic:hover {
    background-color: #fff;
    color: var(--color-dark);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Typography Scale */
.section-subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
    transform: translateY(-50%);
}

.text-center .section-subtitle {
    padding-left: 0;
}

.text-center .section-subtitle::before {
    display: none;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(15, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s;
}

.navbar.scrolled .nav-content {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-name {
    font-weight: 700;
    color: #fff;
}

.logo-surname {
    font-weight: 300;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, #1a1e29 0%, var(--color-bg) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 61, 0, 0.1);
    border-left: 3px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: 2px;
}

.hero-description {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.small-title {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.brand-logos {
    display: flex;
    gap: 2rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.brand-logos i:hover {
    color: #fff;
}

.hero-image-content {
    position: relative;
}

.image-frame {
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    z-index: -1;
}

.hero-image {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    border-radius: 4px;
}

.play-btn-wrapper {
    position: absolute;
    bottom: 30px;
    left: -40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 18, 24, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.play-video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s;
}

.play-video-btn:hover {
    transform: scale(1.1);
}

.play-btn-wrapper span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Stats Banner */
.stats-banner {
    background: var(--color-bg-alt);
    padding: 3rem 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: 4px;
    filter: grayscale(20%);
    transition: var(--transition-normal);
}

.about-main-img:hover {
    filter: grayscale(0%);
    box-shadow: var(--shadow-glow);
}

.quote-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-bg);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    width: 80%;
    box-shadow: var(--shadow-lg);
}

.quote-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-card p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: #fff;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.about-highlights i {
    font-size: 1.3rem;
}

/* Speaking Topics */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.topic-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.topic-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.topic-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.5s;
}

.topic-card:hover .topic-img-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

.topic-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    border: 4px solid var(--color-bg);
}

.topic-content {
    padding: 3rem 2rem 2rem;
}

.topic-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.topic-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.topic-takeaways {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.topic-takeaways li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #fff;
}

.topic-takeaways i {
    color: var(--color-primary);
    margin-top: 5px;
}

/* Contact Section */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
}

.contact-info {
    padding: 4rem;
    background: var(--color-bg);
    border-right: 1px solid var(--color-border-light);
}

.contact-info h3 {
    font-size: 2rem;
    color: #fff;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-method .icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.contact-method .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.contact-method strong {
    font-size: 1.1rem;
    color: #fff;
}

.social-links-large {
    display: flex;
    gap: 1.5rem;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links-large a:hover {
    background: var(--color-primary);
    color: #fff;
}

.contact-form-wrapper {
    padding: 4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    padding: 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: transparent;
}

textarea.form-control {
    resize: vertical;
}

/* Testimonial */
.testimonials h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: var(--color-bg);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links-container {
    display: flex;
    justify-content: flex-end;
    gap: 5rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transition: var(--transition-slow);
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        margin-top: 40px;
    }

    .hero-text-content {
        margin: 0 auto;
    }

    .hero-actions,
    .brand-logos {
        justify-content: center;
    }

    .play-btn-wrapper {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .quote-card {
        right: 0;
        width: 90%;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
    }

    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links-container {
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0F1218;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: var(--transition-normal);
        z-index: -1;
    }

    .nav-links.show {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-toggle {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
}