html {
    scroll-behavior: smooth;
}

/* Reset and Base Styles */

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


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffaf5;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: #f08080;
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, color 0.3s;
}

nav a:hover {
    text-decoration: underline;
    color: #ffe3e3;
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(30px);
    transition: all 1s ease;
    margin-top: 5px;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-section { background-color: #fff0f0; }
.about-section { background-color: #fff7e6; }
.gallery-section { background-color: #f0f8ff; }

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Styles */
form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin-top: 20px;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 500;
}

form select,
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    display: block;
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    height: 100px;
}

button {
    background-color: #f08080;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s ease-in-out, background-color 0.3s;
}

button:hover {
    background-color: #e76e6e;
    transform: scale(1.05);
}

.tier-block {
    background-color: #fffaf7;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
}

#priceResult {
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #444;
}

/* Contact Us Button */
.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background-color: #ffa07a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, background-color 0.3s;
}

.contact-button:hover {
    background-color: #ff8c66;
    transform: scale(1.05);
}
