/* --- General Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply body font */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* Headings use serif for elegance */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation font slightly bolder */
nav a {
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Navigation --- */

.logo img {
    height: 100px;
    /* Adjust size */
    display: block;
}

header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

}

nav {
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    font-weight: bold;
    color: #ffffff;
    transition: color 0.3s;
}

nav a:hover {
    color: #c27ba0;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;

    padding: 1rem 2rem;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 3rem;
}


/* --- About --- */
.about {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    gap: 2rem;
    align-items: center;
}

.about img {
    flex: 1 1 300px;
    border-radius: 20px;
}

.about-text {
    flex: 1 1 300px;
    text-align: center;
}

.about-text h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
}

/* --- Services --- */
.services {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 250px;
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    margin-bottom: 1rem;
    color: #c27ba0;
}

.service-image {
    height: 500px;
    width: 500px;
    margin: auto auto 10px auto;
    border-radius: 5px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.testimonial {
    display: none;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    color: #c27ba0;
}

/* --- Contact --- */
.contact {
    background: #f9f9f9;
    padding: 4rem 2rem;
}

.contact-me {
    text-align: center;
    margin-bottom: 2rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

input,
textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #c27ba0;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #a85d87;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #222;
  color: #fff;
}

footer .socials {
  margin-top: 1rem;
}

footer .socials a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #e1306c; /* Instagram pink */
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }

    .service-list {
        flex-direction: column;
    }

    nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        height: 100px;
        /* adjust size for mobile */
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: row;
        /* keep links in a row */
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        /* in case they don’t fit, they’ll wrap neatly */
    }

    .services {
        padding: 4rem 1rem;

    }

    .service {
        padding: 1rem;
    }



}

