/* Base Styles */
:root {
    --primary-color: #2c5282;
    --primary-dark: #1a365d;
    --primary-light: #4299e1;
    --secondary-color: #38b2ac;
    --accent-color: #ecc94b;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --white: #ffffff;
    --off-white: #f7fafc;
    --light-gray: #e2e8f0;
    --border-color: #cbd5e0;
    --success: #48bb78;
    --error: #f56565;
    --warning: #ed8936;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --transition-fast: 0.15s ease-in-out;
    --transition: 0.3s ease-in-out;
    --container-max-width: 1200px;
    --container-padding: 2rem;
    --header-height: 80px;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.container {
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-tertiary {
    background-color: var(--light-gray);
    color: var(--text-dark);
}

.btn-tertiary:hover {
    background-color: var(--border-color);
    color: var(--text-dark);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 1rem;
    border-radius: var(--radius-sm);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--off-white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Interview Section */
.featured-interview {
    padding: 5rem 0;
}

.interview-container {
    display: flex;
    gap: 3rem;
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.interview-image {
    flex: 1;
    max-width: 40%;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-content {
    flex: 2;
    padding: 3rem;
}

.interview-content h2 {
    margin-bottom: 1rem;
}

.interview-content h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

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

.interview-text p:last-child {
    margin-bottom: 0;
}

/* Blog Posts Section */
.blog-posts {
    padding: 5rem 0;
    background-color: var(--white);
}

.blog-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

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

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.read-more:hover:after {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: var(--light-gray);
    font-size: 1.25rem;
}

.cta-section .btn {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.cta-section .btn:hover {
    background-color: var(--white);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background-color: var(--off-white);
    text-align: center;
}

.page-header h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-header p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.25rem;
}

/* About Page */
.about-intro {
    padding: 5rem 0;
}

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 2;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-card h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.3rem;
}

.team-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.team-card .social-links a {
    margin: 0 0.5rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.team-card .social-links a:hover {
    color: var(--primary-color);
}

.achievements {
    padding: 5rem 0;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
}

.achievement-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.achievement-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: var(--radius-md);
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.registration-info {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.contact-form-container {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 82, 130, 0.2);
}

.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.contact-form .checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 15% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: modalFade 0.3s ease-in-out;
}

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

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
}

.thank-you-message svg {
    margin: 0 auto 1.5rem;
    color: var(--success);
}

.thank-you-message h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.close-btn {
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}

.footer-logo p:first-of-type {
    font-weight: 700;
    color: var(--white);
}

.footer-links h4,
.footer-posts h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul,
.footer-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-posts li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-posts a {
    color: var(--text-lighter);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-posts a:hover {
    color: var(--white);
}

.footer-contact a {
    color: var(--text-lighter);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    color: var(--text-lighter);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-legal p {
    margin-bottom: 1rem;
}

.footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal li {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.footer-legal a {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1.5rem var(--container-padding);
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero .container,
    .about-intro .container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content,
    .hero-image,
    .about-content,
    .about-image {
        flex: none;
        width: 100%;
    }
    
    .interview-container {
        flex-direction: column;
    }
    
    .interview-image {
        max-width: none;
        height: 300px;
    }
    
    .interview-content {
        padding: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .page-header h2 {
        font-size: 2.5rem;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: var(--white);
        transition: height var(--transition);
        box-shadow: var(--shadow-sm);
    }
    
    nav.active {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    nav li {
        margin: 0;
    }
    
    nav a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h2 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-header h2 {
        font-size: 2.25rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
}
