:root {
    --blue-light: #67c1e9;
    --blue: #3498db;
    --blue-dark: #2980b9;
    --sand: #f9f6f0;
    --gray: #333333;
    --white: #ffffff;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gray);
}

h1 {
    font-size: 4rem;
    font-style: italic;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--blue);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--blue-dark);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--blue);
    border-radius: 30px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 1000;
    background-color: rgba(249, 246, 240, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--blue);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--gray);
    text-transform: lowercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: var(--white);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn:hover {
    background: var(--white);
    color: var(--blue);
}

/* About Section */
.about {
    padding: 5rem 5%;
}

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

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    border-radius: 5px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Lessons Section */
.lessons {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

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

.lesson-card {
    background-color: var(--sand);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lesson-card:hover {
    transform: translateY(-10px);
}

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

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

.lesson-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
}

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

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: rgba(0,0,0,0.02);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--blue);
}

/* Packages Section */
.packages {
    padding: 5rem 5%;
}

.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-item h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features-list li:before {
    content: "•";
    color: var(--blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: var(--blue);
    color: var(--white);
}

.contact .section-title h2 {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info i {
    margin-right: 0.5rem;
}

.contact .btn {
    border-color: var(--white);
    color: var(--white);
    margin-top: 1rem;
}

.contact .btn:hover {
    background: var(--white);
    color: var(--blue);
}

.contact-image {
    flex: 1;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 100%;
}

/* Footer */
footer {
    padding: 2rem 5%;
    background-color: var(--gray);
    color: var(--white);
    text-align: center;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--blue-light);
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 250px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .contact-image {
        height: 250px;
    }
}