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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFEFE3;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background-color: #ef9e5c;
    padding: 1rem 0;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* Stack logo and nav vertically */
    align-items: center;
    /* Center align both logo and nav */
    padding: 0 1rem;
    border-bottom: 2px solid #223174;
}

/* Logo */
header .logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
    /* Add space below the logo */
    text-transform: uppercase;

}

/* Navigation Menu */
header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #223174;
}

/* Main Section Styling */
main {
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    gap: 2rem;
    /* Space between text and image */
    padding: 2rem 1rem;
}

/* Intro Section Styling */
main .intro {
    flex: 1;
    /* Allow text to take up equal space */
    max-width: 600px;
    /* Limit text width */
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    gap: 1rem;
    /* Add spacing between text and button */
}

main .intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #223174;
}

main .intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ef9e5c;
}

main .intro p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

main .intro a button {
    margin-top: 1rem;
    /* Add spacing above the button */
    align-self: flex-start;
    /* Align button to the left */
}

/* Button-Like Link Styling */
.button-link {
    display: inline-block;
    background-color: #223174; 
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none; /* Remove underline */
    padding: 0.8rem 1.5rem;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-link:hover {
    background-color: #ef9e5c;
}

/* Image Section Styling */
main .img {
    flex: 1;
    /* Allow image to take up equal space */
    max-width: 600px;
    /* Limit image width */
    align-self: flex-start;
    /* Align image to the top */
}

main .img img {
    width: 100%;
    height: auto;
}

/* Contact Page */

/* Contact Page Header */
h1.contact {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ef9e5c;
    margin-bottom: 2rem;
}

/* Contact Container Styling */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* Space between sections */
    max-width: 1200px;
    margin: 0 auto;
    /* Center the container */
    justify-content: space-between;
    /* Align sections horizontally */
}


.contact-container>div {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    opacity: 75%;
}

/* Section Headings */
.contact-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ef9e5c;
    margin-bottom: 1rem;
    border-bottom: 2px solid #223174;
    display: inline-block;
}

.contact-container h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #ef9e5c;
    margin-bottom: 0.5rem;
}

.contact-container p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Google Map Styling */
#google iframe {
    width: 100%;
    height: 475px;
    border: none;
    border-radius: 10px;
}

/* Service Page */

/* Page header */
h1.service {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ef9e5c;
    /* Gold color */
    margin-bottom: 2rem;
}

/* Grid Layout for Services */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Service Cards (Hands, Feet, Specials) */
.services-container>div {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    opacity: 75%;
}

/* Section Titles */
.services-container h2,
.extras h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ef9e5c;
    margin-bottom: 1rem;
    border-bottom: 2px solid #223174;
    display: inline-block;
}

/* Service Descriptions */
.services-container h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #ef9e5c;
    margin-bottom: 0.5rem;
}

.services-container p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Extras Section */
.extras {
    max-width: 1200px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    opacity: 75%;
}

.extras ul {
    list-style: none;
    padding: 0;
}

.extras ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eaeaea;
    /* Separator for extras */
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

/* Logo Section */
footer .logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ef9e5c;
    margin: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #223174;
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #223174;
}

.footer-social a img {
    max-height: 30px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.footer-social a img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    font-size: 0.85rem;
}