﻿body {
    margin: 0;
    font-family: 'Roboto',sans-serif;
    line-height: 1.6;
    color: #222;
}

h1, h2, h3 {
    font-family: 'Pompiere',cursive;
}

section {
    padding: 20px 0px;
}

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

header {
    background: #253446;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: url("images/woman01_lowres.jpg") center/cover no-repeat;
    min-height: 320px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    padding: 28px 32px;
    color: white;
    max-width: 600px;
    border-radius: 8px;
}

.location {
    font-size: 1.1rem;
    margin-top: 6px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    margin: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #4b698c;
    border: 2px solid white;
    color: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

    .btn-primary:hover {
        background: #5a7aa0;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    }

.btn-secondary {
    border: 2px solid white;
    color: white;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.15);
        transform: translateY(-2px);
    }

.btn-third {
    background: #4b698c;
    border: 2px solid white;
    color: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

    .btn-third:hover {
        background: #5a7aa0;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    }

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    white-space: nowrap;
}

.intro {
    
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.course {
    background: #f4f6f9;
    
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.price {
    font-weight: 600;
    font-size: 20px;
}

.course-details {
    margin-top: 40px;
}

.about {
    
}

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

.about img {
    width: 100%;
    border-radius: 6px;
    margin-top: 20px;
}

.contact {
    background: #4b698c;
    color: white;
    text-align: center;
}

.contact-links a {
    display: block;
    margin: 12px 0;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.contact-links i {
    margin-right: 10px;
    width: 22px;
    text-align: center;
}

.instructor {
    background: #f4f6f9;
    text-align: center;
}

.instructor-card {
    max-width: 600px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    text-align: left;
}

.role {
    font-weight: 600;
    color: #4b698c;
    margin-bottom: 15px;
}

.certification {
    margin-top: 15px;
    font-weight: 600;
}

.ownership {
    margin-top: 25px;
    font-size: 0.95rem;
}

footer {
    background: #253446;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width:800px) {

    .intro-grid,
    .course-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .intro img {
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        height: auto;
        padding: 80px 20px;
    }
}
