/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.underline {
    height: 3px;
    width: 80px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-tertiary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#main-header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    position: relative;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
}

nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li .btn-primary {
    margin-left: 15px;
    vertical-align: middle;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    height: 44px;
    min-width: 120px;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
    vertical-align: middle;
}

.menu-toggle {
    display: none;
    font-size: 2.3rem;
    cursor: pointer;
    color: var(--primary-color);
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    position: relative;
    z-index: 2000;
    transition: background 0.2s, color 0.2s;
}
.menu-toggle:hover, .menu-toggle.open {
    color: var(--secondary-color);
    background: #f1f7fb;
}

@media screen and (max-width: 1040px) {
    nav ul li {
        margin-left: 18px;
    }
}

@media screen and (max-width: 900px) {
    .nav-contact-btn {
        min-width: 100px;
        font-size: 0.98rem;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Hero Section */
#hero {
    padding: 180px 0 100px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgb(52, 152, 219) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 90%;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 152, 219, 0.8) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 1;
}

.hero-image img:hover {
    transform: rotate(0);
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Achievements Timeline */
#achievements {
    padding: 100px 0;
    background-color: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid var(--light-color);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-date {
    position: absolute;
    top: 0;
    right: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: 40px;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
}

/* Media Features */
#media {
    padding: 100px 0;
    background-color: white;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.media-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 20px;
    transform: translateY(100px);
    transition: var(--transition);
}

.media-item:hover .media-overlay {
    transform: translateY(0);
}

.media-item:hover img {
    transform: scale(1.05);
}

.media-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.media-overlay p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Podcast Section */
#podcast {
    padding: 100px 0;
    background-color: var(--light-color);
}

.podcast-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.podcast-intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.podcast-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: var(--secondary-color);
}

.podcast-episodes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.episode {
    display: flex;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.episode:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.episode-image {
    flex: 0 0 200px;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-content {
    flex: 1;
    padding: 25px;
}

.episode-number {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.episode-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.episode-content p {
    margin-bottom: 20px;
}

.audio-player {
    width: 100%;
}

.audio-player audio {
    width: 100%;
}

.podcast-cta {
    text-align: center;
    margin-top: 30px;
}

/* Blog Section */
#blog {
    padding: 100px 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.blog-post {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.read-more {
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 30px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-nav h3,
.footer-legal h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 80px;
    }
    
    .timeline-dot {
        left: 22px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 22px;
    }
    
    .timeline-date {
        left: 0;
        right: auto;
        top: -30px;
        font-size: 1rem;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: 0;
    }
}

@media screen and (max-width: 768px) {
    #main-header .container {
        flex-direction: row;
    }
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(6px);
        box-shadow: 0 5px 24px rgba(44,62,80,0.08),0 0 0 1px #eaf1f7 inset;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        z-index: 1600;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
        transition: transform 0.33s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    }
    nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    nav ul {
        flex-direction: column;
        width: 100vw;
        max-width: 350px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    nav ul li {
        width: 100%;
        margin: 0 0 24px 0;
        padding: 0;
        text-align: center;
    }
    nav ul li a {
        display: block;
        font-size: 1.55rem;
        color: var(--primary-color);
        background: none;
        padding: 14px 0;
        width: 100%;
        border-radius: 4px;
        transition: background 0.2s, color 0.2s;
    }
    nav ul li a:hover,
    nav ul li a:focus {
        background: var(--light-color);
        color: var(--secondary-color);
        outline: none;
    }
    .nav-contact-btn {
        display: none;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 2000;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        padding: 12px;
        font-size: 1.8rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: all 0.3s ease;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle:hover {
        transform: translateY(-50%) scale(1.05);
        color: var(--secondary-color);
    }
    
    .episode {
        flex-direction: column;
    }
    
    .episode-image {
        flex: 0 0 200px;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}