/* Reset and Base */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

.navbar {
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero {
    margin-top: 0 !important;
}

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

:root {
    --black: #000000;
    --white: #ffffff;
    --accent: #e74c3c;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --navy: #1a2332;
    --teal: #3a7ca5;
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section {
    margin: 0;
    padding: 0;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    transition: color 0.3s;
    z-index: 1001;
}

.navbar.scrolled .nav-logo {
    color: var(--black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.navbar.scrolled .nav-link {
    color: var(--black);
}

.nav-link:hover {
    color: var(--accent);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.navbar.scrolled .hamburger {
    background: var(--black);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding-top: 80px;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: var(--white) !important;
    }
    
    .nav-link:hover {
        color: var(--accent) !important;
    }
    
    /* Hamburger animation when active */
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Full Screen Sections */
.fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url('hero-background.jpg') center center/cover no-repeat;
    color: var(--white);
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    background: var(--navy);
    color: var(--white);
    margin: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 5px;
}

.section-header-white {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 5px;
}

.section-header-dark {
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 5px;
    text-align: center;
}

.about-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-personal {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
}

.about-cta {
    margin-top: 3rem;
}

.btn-outline-white {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

/* Colored Sections */
.colored-section {
    background: var(--teal);
    color: var(--white);
    padding: 100px 0;
    margin: 0;
}

.colored-section-alt {
    background: var(--accent);
    color: var(--white);
    padding: 100px 0;
    margin: 0;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--black);
}

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

/* Speaking Section */
.speaking {
    background: var(--light-gray);
    margin: 0;
}

.speaking-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.speaking-intro {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.topics-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 4rem;
}

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

.topic-minimal h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.topic-minimal p {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 300;
}

.speaking-cta {
    margin-top: 3rem;
}

.btn-primary-large {
    background: var(--accent);
    color: var(--white);
    padding: 20px 60px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 3px;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

/* Book Section */
.book-section {
    background: var(--white);
    position: relative;
}

.book-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.book-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.book-cover-wrapper {
    position: relative;
    perspective: 1000px;
}

.book-3d {
    position: relative;
    width: 350px;
    height: 500px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg);
    transition: transform 0.3s ease;
}

.book-3d:hover {
    transform: rotateY(0deg);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 
        0 5px 10px rgba(0,0,0,0.1),
        5px 5px 20px rgba(0,0,0,0.2),
        10px 10px 40px rgba(0,0,0,0.1);
}

/* Coming Soon Sticker */
.coming-soon-sticker {
    position: absolute;
    top: -15px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 4px solid var(--white);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-sticker span {
    color: var(--navy);
    font-weight: 900;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
    }
}

.book-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 90%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.book-content {
    max-width: 600px;
}

/* Book title */
.book-title {
    font-size: 4rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 5px;
    font-weight: 900;
}

/* Make NOW stand out in title */
.book-title .now-emphasis {
    color: var(--accent);
    font-style: italic;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.book-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

/* For NOW in the subtitle */
.book-subtitle .now-emphasis {
    color: var(--accent);
    font-weight: 700;
    font-style: normal;
}

.book-description {
    margin-bottom: 2rem;
}

.book-description .lead-text {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

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

/* For NOW in the body text */
.book-description .now-emphasis {
    color: var(--accent);
    font-weight: 700;
    font-style: italic;
}

.book-features {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature:last-child {
    margin-bottom: 0;
}

/* For NOW in features */
.feature .now-emphasis {
    color: var(--accent);
    font-weight: 700;
}

.feature-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 1rem;
    font-weight: bold;
}

.feature p {
    margin: 0;
    font-size: 1rem;
    color: var(--black);
}

.book-quote {
    font-size: 1.3rem;
    color: var(--navy);
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    background: var(--light-gray);
}

.book-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-book-primary {
    background: var(--accent);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-book-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Disabled button state */
.btn-book-primary.btn-disabled {
    background: var(--gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-book-primary.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-book-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-book-secondary:hover {
    background: var(--navy);
    color: white;
}

.book-speaking-tie {
    background: var(--navy);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.book-speaking-tie p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-book-speak {
    background: white;
    color: var(--navy);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-book-speak:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Testimonials */
.testimonials-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-minimal {
    text-align: center;
    padding: 20px;
}

.testimonial-minimal p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-minimal cite {
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('contact-background.jpg') center center/cover no-repeat;
    color: var(--white);
    margin: 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-form-minimal {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-grid input:nth-child(5),
.form-grid select {
    grid-column: span 2;
}

.contact-form-minimal input,
.contact-form-minimal select,
.contact-form-minimal textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: border-color 0.3s;
}

.contact-form-minimal input::placeholder,
.contact-form-minimal textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-form-minimal select {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-minimal select option {
    background: var(--black);
    color: var(--white);
}

.contact-form-minimal input:focus,
.contact-form-minimal select:focus,
.contact-form-minimal textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.submit-minimal {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 15px 50px;
    margin-top: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
}

.submit-minimal:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Footer */
.footer-minimal {
    background: var(--black);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-minimal p {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header,
    .section-header-white,
    .section-header-dark {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .book-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-3d {
        width: 280px;
        height: 400px;
    }
    
    .coming-soon-sticker {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -15px;
    }
    
    .coming-soon-sticker span {
        font-size: 0.75rem;
    }
    
    .book-title {
        font-size: 3rem;
    }
    
    .book-cta {
        justify-content: center;
    }
    
    .testimonials-minimal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-minimal {
        grid-column: span 1;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid input,
    .form-grid select {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .topics-grid-minimal {
        grid-template-columns: 1fr;
    }
}
