/* General Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    color: #333;
    background-color: #E8ECD7;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #47663B;
}

a {
    color: #EED3B1;
    text-decoration: none;
}

a:hover {
    color: #47663B;
}

/* Header */
header {
    background-color: #47663B;
    color: #EED3B1;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0 px;
    padding: 0;
}

header #logo {
    width: 250px; /* Resize logo */
    height: 250px; /* Maintain aspect ratio */
    border-radius: 50%; /* Make logo a perfect circle */
    object-fit: cover; /* Ensure the logo fits properly */
}

/* Crumbs */
header .crumbs ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

header .crumbs li {
    margin: 0 15px;
}

header .crumbs a {
    font-family: 'Great Vibes', cursive;
    font-size: 1.1rem;
    color: #EED3B1;
}

header .crumbs a:hover {
    color: #E8ECD7;
}

/* Main Content */
main {
    padding: 40px 15px;
    text-align: center;
}

#bio-video iframe {
    width: 100%;
    max-width: 640px;
    margin: 20px 0;
}

#bio img {
    width: 300px;
    border-radius: 50%;
    margin: 20px 0;
}

#bio h2 {
    font-size: 2.5rem;
    color: #47663B;
}

#bio h3 {
    font-size: 1.8rem;
    font-style: italic;
    color: #47663B;
}

#bio p {
    font-size: 1.2rem;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery */
.photo-gallery {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Session Information */
.session {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.session h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.session p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.prices {
    background-color: #ffffff;
    padding: 30px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.prices h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.prices ul {
    list-style: none;
    font-size: 1.2rem;
}

.prices li {
    margin: 10px 0;
}

.prices em {
    font-style: italic;
    color: #47663B;
}

.prices strong {
    font-weight: bold;
    color: #47663B;
}

/* Contact Information */
#hours {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#hours h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#hours ul {
    list-style: none;
    font-size: 1.2rem;
}

#hours li {
    margin: 10px 0;
}

#hours strong {
    color: #47663B;
}

.links {
    margin-top: 40px;
}

.links h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-item img {
    width: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact-item a {
    font-size: 1.2rem;
    color: #47663B;
}

.contact-item a:hover {
    color: #EED3B1;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header .crumbs ul {
        flex-direction: column;
        padding: 10px;
    }

    header .crumbs li {
        margin: 10px 0;
    }

    #bio img {
        width: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .session, .prices, #hours, .links {
        padding: 20px;
    }

    .contact-item h3 {
        font-size: 1.3rem;
    }

    .contact-item a {
        font-size: 1rem;
    }
}
