:root {
    --primary-color: #51B316;
    --secondary-color: #2B463C;
    --accent-color: #688F4E;
    --light-accent: #B1D182;
    --text-color: #2B463C;
    --light-text: #688F4E;
    --background-color: #ffffff;
    --light-background: #F4F1E9;
    --border-color: #e0e0e0;
    --success-color: #51B316;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

/* Email fallback */
.email-fallback {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.email-text {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

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

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

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

/* Navigation styles moved to shared/nav-styles.css */

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #F4F1E9 0%, #B1D182 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

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

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Courses Section */
.courses {
    background-color: var(--light-background);
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Featured card with image */
.card-featured {
    border: 2px solid var(--primary-color);
}

.course-image {
    position: relative;
    margin: -30px -30px 20px -30px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-background) 0%, #f8f9fa 100%);
}

.course-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.card:hover .course-image img {
    transform: scale(1.03);
}

/* Badge overlay on image */
.course-image .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.card-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-available {
    background-color: var(--success-color);
    color: white;
}

.badge-coming-soon {
    background-color: #e0e0e0;
    color: #666666;
}

.card h3 {
    margin-bottom: 15px;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    margin-bottom: 10px;
}

.features i {
    color: var(--success-color);
    margin-right: 10px;
}

.card .btn {
    width: 100%;
}

.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.card-buttons .btn {
    flex-grow: 1;
}

.platform-note {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
}

/* Consulting Section */
.consulting {
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
}

.consulting::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--light-accent) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.consulting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.consulting-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.consulting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-container i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.consulting-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.consulting-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.consulting-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.consulting-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.consulting-cta .btn {
    padding: 14px 30px;
    font-size: 1.05rem;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(81, 179, 22, 0.3);
}

/* About Section */
.about {
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--light-accent) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.profile-image {
    flex: 0 0 auto;
}

.profile-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.profile-info .title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-accent);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.experience-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-card .icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.experience-card .icon-container i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.experience-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.experience-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

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

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.newsletter {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    margin-top: 30px;
}

.newsletter h4 {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .consulting-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .experience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Mobile navigation styles moved to shared/nav-styles.css */
    
    .consulting-cards {
        grid-template-columns: 1fr;
    }
    
    .consulting-cta {
        padding: 25px 20px;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .profile-image img {
        width: 150px;
        height: 150px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .course-cards {
        grid-template-columns: 1fr;
    }
    
    /* Mobile optimization for course images */
    .course-image img {
        height: 140px;
    }
    
    .course-image .card-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Mobile navigation styles moved to shared/nav-styles.css */

/* Previous Work Section */
.previous-work {
    background-color: var(--background-color);
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-card {
    display: block;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    color: var(--text-color);
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.work-image {
    height: 200px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.work-content {
    padding: 20px;
}

.work-content h3 {
    margin-bottom: 10px;
    transition: var(--transition);
}

.work-card:hover .work-content h3 {
    color: var(--primary-color);
}

.work-content p {
    color: var(--light-text);
    margin-bottom: 15px;
}

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

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.work-card:hover .read-more i {
    transform: translateX(5px);
}

/* Project Page Styles */
.project-header {
    padding: 150px 0 50px;
    background: linear-gradient(135deg, #F4F1E9 0%, #B1D182 100%);
    text-align: center;
}

.project-header h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.project-meta-item {
    display: flex;
    align-items: center;
}

.project-meta-item i {
    margin-right: 8px;
}

.project-content {
    padding: 60px 0;
}

.project-content .container {
    max-width: 800px;
}

.project-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-previous, .nav-next {
    display: flex;
    align-items: center;
}

.nav-previous i {
    margin-right: 10px;
}

.nav-next i {
    margin-left: 10px;
}

@media (max-width: 992px) {
    .project-header {
        padding: 100px 0 30px;
    }
    
    .project-content .container {
        max-width: 600px;
    }
    
    .project-image {
        margin: 20px 0;
    }
    
    .project-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-previous, .nav-next {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .project-header h1 {
        font-size: 2rem;
    }
    
    .project-content .container {
        max-width: 400px;
    }
    
    .project-image {
        margin: 15px 0;
    }
}

@media (max-width: 576px) {
    .project-header h1 {
        font-size: 2rem;
    }
    
    .project-content .container {
        padding: 0 15px;
    }
    
    .project-image {
        margin: 20px 0;
    }
}

/* Image Gallery Styles */
.image-gallery {
    margin: 30px 0;
}

.gallery-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.gallery-item {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.gallery-highlight {
    margin-top: 15px;
    text-align: center;
}

.gallery-highlight img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.gallery-highlight figcaption {
    margin-top: 10px;
    font-style: italic;
    color: var(--light-text);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-item {
        margin-bottom: 10px;
    }
}
