/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #4C3D3D;
    background-color: #F9F4F0;
}

header {
    background: #7E5A68;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
}

nav ul li a {
    color: #F9F4F0;
    text-decoration: none;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    background: #7E5A68;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.cta-button:hover {
    background: #5c4352;
}

/* Section Styling */
.section {
    padding: 2rem;
    text-align: center;
    background: #F7E8E3;
}

.sound-healing-content,
.breathwork-content,
.yoga-content,
.movement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sound-healing-image,
.breathwork-image,
.yoga-image,
.movement-image {
    width: 100%;
    max-width: 800px; /* Sets a consistent size for all images */
    height: auto;
    margin: 1rem auto;
}
/* Styling for the table */
.services-table {
    width: 100%;
    border-collapse: collapse; /* Removes space between cells */
    margin-top: 20px;
    border: 1px solid #ddd; /* Adds border around table */
}

.services-table th, .services-table td {
    padding: 12px 15px; /* Adds padding inside cells */
    text-align: left; /* Aligns text to the left */
    border-bottom: 1px solid #ddd; /* Adds horizontal lines between rows */
}

.services-table th {
    background-color: #f4f4f4; /* Light gray background for table headers */
    font-weight: bold; /* Makes header text bold */
}

.services-table tbody tr:hover {
    background-color: #f9f9f9; /* Light hover effect */
}

.services-table td {
    font-size: 1rem; /* Sets a readable font size */
    color: #555; /* Subtle text color */
}


/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #F7E8E3;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #4C3D3D;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    background: #7E5A68;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background: #5c4352;
}

/* Footer */
footer {
    background: #7E5A68;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer a {
    color: #F9F4F0;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .cta-button {
        width: 100%;
        padding: 20px;
        font-size: 1.2rem;
    }

    .sound-healing-image,
    .breathwork-image,
    .yoga-image,
    .movement-image {
        max-width: 100%;
    }

    .section {
        padding: 1.5rem 1rem;
    }
}


