/* Global Styles */
body {
    font-family: "Cinzel", serif;
    margin: 0;
    background-color: #f9f1f1; /* Soft, warm off-white */
    color: #4a4a4a; /* Dark grey text for readability */
    background-image: url("images/pink-princess-aesthetic.jpg"); /* Background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Header */
header {
    background-color: #e8a2a0; /* Soft pink/rose gold */
    color: white;
    padding: 1px 0;
    text-align: center;
}

/* Logo Section */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
}

.logo-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 126%;
    height: 126%;
    object-fit: contain;
    display: block;
}

/* Tagline */
.tagline {
    font-size: 30px;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

/* Navigation */
nav {
    background-color: #b76e79; /* Soft pink */
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 90px;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f1d0c0; /* Light pink */
}

nav a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #f1d0c0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 42px;
    color: #f1d0c0;
}

.hero p {
    font-size: 22px;
    color: #f1d0c0;
}

.cta-button {
    background-color: #f1d0c0;
    color: black;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #f8b0b0;
    transform: scale(1.05);
}

/* Section Styling */
#services,
#about,
#testimonials,
#contact {
    padding: 50px 20px;
    text-align: center;
}

/* Section Titles */
#services h3,
#about h3,
#testimonials h3,
#contact h3 {
    font-size: 28px;
    color: black;
    margin-bottom: 20px;
}

#services h3 {
    position: relative;
    color: #ffffff; /* Dark pink */
}

#services h3::after {
    content: "";
    position: absolute;
    bottom: -10px; /* Adjust the distance between the text and the line */
    left: 50%;
    transform: translateX(-50%);
    width: 60%; /* Adjust the length of the line */
    height: 3px; /* Adjust the thickness of the line */
    background-color: #b76e79; /* Match the dark pink color */
}

/* Service Section */
.service-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.service-item {
    background-color: #f8e5e1;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
}

.service-item h4 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

#services .cta-button {
    margin-top: 30px;
}

/* About Section */
#about {
    background-color: #e8a2a0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

#about h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 40px;
}

#about p {
    font-size: 18px;
    color: #f9f1f1;
    line-height: 1.6;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#about h3,
#about p {
    position: relative;
    z-index: 2;
}

/* Testimonial Section */
#testimonials {
    background-color: #fdedeb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#testimonials h3 {
    color: #b76e79;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
    min-width: 380px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: #b76e79;
}

.testimonial-role {
    font-size: 14px;
    color: #4a4a4a;
}

/* Form Container */
form {
    max-width: 500px; /* Restricts form width */
    margin: 40px auto; /* Centers the form with more spacing */
    padding: 30px; /* More padding for better spacing */
    background-color: #fdfdfd; /* Slight off-white background */
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Stronger shadow for a modern look */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Input Fields and Textarea */
form input,
form textarea {
    width: 100%; /* Full width for consistency */
    padding: 14px 12px; /* Comfortable padding */
    margin-bottom: 20px; /* Increased margin for better spacing */
    border: 1px solid #ccc; /* Softer border */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px;
    background-color: #fafafa; /* Light background for inputs */
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensures proper sizing */
}

/* Input Fields and Textarea Focus */
form input:focus,
form textarea:focus {
    border-color: #b76e79; /* Highlight on focus */
    background-color: #fff; /* Clear background when focused */
    outline: none;
    box-shadow: 0 0 8px rgba(183, 110, 121, 0.5); /* Softer pink glow */
}

/* Textarea Specifics */
form textarea {
    resize: vertical; /* Allow resizing vertically */
    min-height: 150px; /* Slightly shorter minimum height */
}

/* Button Styling */
form button {
    width: 100%; /* Full-width button for consistency */
    padding: 14px;
    background-color: #b76e79; /* Rose gold background */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 25px; /* Rounded corners for buttons */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box; /* Ensures proper sizing */
}

/* Button Hover Effects */
form button:hover {
    background-color: #f1d0c0; /* Softer pink on hover */
    transform: scale(1.05); /* Slight enlargement */
}

/* Placeholder Styling */
form input::placeholder,
form textarea::placeholder {
    color: #bbb; /* Lighter grey placeholder */
    font-style: italic; /* Makes placeholder visually distinct */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    form {
        width: 95%; /* Takes up most of the screen on smaller devices */
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

/* Heading (Optional for Section) */
#contact h3 {
    text-align: center;
    font-size: 30px; /* Adjust heading size if needed */
    color: #fff; /* White color for the heading */
    margin-bottom: 20px;
    font-family: "Arial", sans-serif;
}

#contact p {
    text-align: center;
    color: #fff; /* White color for the paragraph text */
    font-size: 18px; /* Adjust font size */
    margin-bottom: 10px;
    font-family: "Arial", sans-serif;
}

#contact a {
    text-align: center;
    color: #fff; /* White color for the link */
    font-size: 20px;
    font-weight: bold;
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease;
}

#contact a:hover {
    color: #f1d0c0; /* Optional hover color */
}
/* Footer */
footer {
    background-color: #b76e79;
    color: white;
    text-align: center;
    padding: 45px 0; /* Reduced padding for better balance */
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f1d0c0; /* Subtle hover effect */
}
