/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Dancing+Script:wght@700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

a {
    color: #DA6E83;
    text-decoration: none;
    font-weight: bold;
}

a.hover {
    color: #C2546B;
    text-decoration: underline;
    font-weight: bold;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    max-width: 130px;
}

.logo a {
    display: block;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger to X animation */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

nav {
    margin-left: auto; /* Push nav to the right */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end; /* Align menu items to the right */
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #DA6E83;
}

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

section {
    margin-bottom: 40px;
    position: relative;
}

a.button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #DA6E83;
    border: none;
    border-radius: 10px; /* Rounded button */
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    max-width: 200px;
}

.button:hover {
    background-color: #c2546a;
}

a.buttonbook {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #72A240;
    border: none;
    border-radius: 10px; /* Rounded button */
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    max-width: 400px;
}
.buttonbook:hover {
    background-color: #c2546a;
}

a.buttonpay {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    font-size: 18px;
    color: #fff;
    background-color: #72A240;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    max-width: 200px;
}

a.buttonpay:hover {
    background-color: #c2546a;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 48px;
    color: #DA6E83;
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 48px;
    color: #DA6E83;
    text-align: center;
}

.service-title {
    font-weight: 700;
    font-size: 22px;
    color: #DA6E83;
}

.service-price {
    font-weight: 700;
    color: #72A240;
}

.portfolio-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.portfolio-grid img {
    width: 100%;
    max-width: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.portfolio-grid + a {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #DA6E83;
    border: none;
    border-radius: 10px; /* Rounded button */
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    max-width: 200px;
}

.portfolio-grid + a:hover {
    background-color: #c2546a;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about2-content {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
}

.pay {
text-align: center;
}

.about-content img {
    max-width: 350px;
    border-radius: 10px;
    position: relative;
    box-shadow: -10px 10px 0px #DA6E83;
}

.about-content p {
    text-align: left;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-item i {
    font-size: 50px;
    color: #DA6E83;
}

.service-item div {
    text-align: left;
}

.service-item div p {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
}

.service-item div span {
    font-size: 18px;
    color: #555;
}

.service-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

form button {
    background-color: #DA6E83;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px; /* Rounded button */
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #c2546a;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    color: #DA6E83;
    font-size: 42px;
}

.social-links2 a {
    color: #DA6E83;
    font-size: 22px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 90;
}

.overlay.active {
    display: block;
}

/* For no scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}

/* Form success and error messages */
.success-message, .error-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
    }

    nav ul li {
        margin: 20px 0;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content img {
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        flex-direction: column;
    }
}