:root {
    --burnt-sienna: #E76F51;
    --terracotta: #F4A261;
    --sand: #E9C46A;
    --sage: #2A9D8F;
    --deep-teal: #264653;
    --cream: #FAF7F0;
    --charcoal: #2D2D2A;
    --rust: #C44536;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
    animation: slideDown 0.8s ease-out;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-sienna);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--burnt-sienna);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(231, 111, 81, 0.08) 0%, transparent 70%);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    z-index: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-eyebrow {
    font-size: 0.9rem;
    color: var(--sage);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
    line-height: 1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero h1 span {
    display: block;
    color: var(--burnt-sienna);
    font-style: italic;
    font-size: 0.7em;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--sage);
    border-left: 4px solid var(--burnt-sienna);
    padding-left: 2rem;
    margin: 2rem 0;
    max-width: 500px;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--sand);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    height: 250px;
    background: var(--sage);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--burnt-sienna);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

.cta-button:hover {
    background: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.3);
}

/* Section Styling */
section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-eyebrow {
    font-size: 0.85rem;
    color: var(--sage);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-teal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

/* About Section */
.about {
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, var(--sand) 0%, transparent 100%);
    opacity: 0.15;
    transform: skewX(-10deg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight-stat {
    display: inline-block;
    background: linear-gradient(120deg, var(--sand) 0%, var(--terracotta) 100%);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: white;
    margin: 0 0.3rem;
}

/* Roles Grid */
.roles {
    background: linear-gradient(135deg, #264653 0%, #2A9D8F 100%);
    color: white;
}

.roles .section-title {
    color: white;
}

.roles .section-eyebrow {
    color: var(--sand);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.role-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.role-card:nth-child(1) { animation-delay: 0.1s; }
.role-card:nth-child(2) { animation-delay: 0.2s; }
.role-card:nth-child(3) { animation-delay: 0.3s; }
.role-card:nth-child(4) { animation-delay: 0.4s; }
.role-card:nth-child(5) { animation-delay: 0.5s; }
.role-card:nth-child(6) { animation-delay: 0.6s; }

.role-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--sand);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.role-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--sand);
}

.role-org {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.role-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Speaking Section */
.speaking {
    background: white;
}

.speaking-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.speaking-topics {
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border-left: 4px solid var(--burnt-sienna);
    padding: 2rem;
    border-radius: 8px;
}

.speaking-topics h3 {
    font-size: 2rem;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.speaking-topics ul {
    list-style: none;
}

.speaking-topics li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
    position: relative;
    padding-left: 2rem;
}

.speaking-topics li:last-child {
    border-bottom: none;
}

.speaking-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--burnt-sienna);
    font-size: 1.5rem;
    line-height: 1;
}

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

.speaking-cta h3 {
    font-size: 2.5rem;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.speaking-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Resources Section */
.resources {
    background: var(--cream);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--sage);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.8rem;
    color: var(--deep-teal);
    margin-bottom: 1rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    opacity: 0.8;
}

.download-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--burnt-sienna);
    border: 2px solid var(--burnt-sienna);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: var(--burnt-sienna);
    color: white;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--sage) 100%);
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact .section-eyebrow {
    color: var(--sand);
}

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

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-quote {
        margin-left: auto;
        margin-right: auto;
    }

    .speaking-content {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        justify-content: center;
        gap: 1.5rem;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    nav {
        padding: 1rem 5%;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.8rem;
    }

    .logo img {
        height: 35px;
    }
}
