/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo h2 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B4513;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #8B4513;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin-top: 70px;
    padding: 60px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    bottom: 0;
    background: linear-gradient(135deg, 
        #f4f1e8 0%, 
        #e8dcc6 25%, 
        #ddbea9 50%, 
        #cb997e 75%, 
        #a68a64 100%);
    z-index: -1;
    opacity: 0.8;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #CD853F, #DEB887);
    color: #333;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Course Preview Section */
.courses-preview {
    padding: 80px 0;
    background: #f8f8f8;
}

.courses-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

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

.course-info {
    padding: 25px;
}

.course-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.course-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-weight: bold;
    color: #8B4513;
    font-size: 1.2rem;
}

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

/* Community Section */
.community {
    padding: 80px 0;
    background: white;
}

.community h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.community-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.community-text h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.community-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Course Detail Cards */
.courses-detail {
    padding: 60px 0;
}

.course-category {
    margin-bottom: 80px;
}

.course-category h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
    border-bottom: 3px solid #8B4513;
    padding-bottom: 10px;
}

.course-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.course-detail-card:hover {
    transform: translateY(-3px);
}

.course-detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.course-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.course-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.duration,
.group-size {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B4513;
}

.book-button {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Booking Info Section */
.booking-info {
    background: #f8f8f8;
    padding: 60px 0;
}

.booking-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.5;
}

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

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, 
        #f4f1e8 0%, 
        #e8dcc6 25%, 
        #ddbea9 50%, 
        #cb997e 75%, 
        #a68a64 100%);
}

.about-hero::before {
    display: none;
}

.founders-story {
    padding: 80px 0;
    background: #fff;
}

.founders-story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.story-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.story-section.reverse .story-content {
    order: 2;
}

.story-section.reverse .story-image {
    order: 1;
}

.story-content h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 25px;
}

.story-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.philosophy {
    padding: 80px 0;
    background: #f8f8f8;
}

.philosophy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.philosophy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.philosophy-card p {
    color: #555;
    line-height: 1.6;
}

.vision {
    padding: 80px 0;
    background: #fff;
}

.vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.vision-content p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.vision-content cite {
    font-size: 1.1rem;
    color: #8B4513;
    font-weight: 600;
}

/* Imprint Styles */
.imprint-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.imprint-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.imprint-section h2 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.imprint-section h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.imprint-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.imprint-info a {
    color: #8B4513;
    text-decoration: none;
}

.imprint-info a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    margin-top: 50px;
}

.disclaimer-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.disclaimer-box h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
    border: none;
    padding: 0;
}

.disclaimer-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-section h3 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .course-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .course-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .story-section,
    .story-section.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .story-section.reverse .story-content,
    .story-section.reverse .story-image {
        order: unset;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .imprint-section {
        padding: 20px;
    }
    
    .disclaimer-box {
        padding: 20px;
    }
}