* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

.hero-banner {
    background-image: url('public/images/hero-crystals.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 2s ease-in-out;
}

.hero-banner .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s ease;
    animation: fadeInUp 2s ease-in-out;
}

.hero-banner .cta-button:hover {
    background-color: #d35400;
}

main {
    padding: 20px;
}

main h1, main h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

main p {
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    flex: 0 0 48%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item img {
    max-width: 50%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-item p {
    margin-bottom: 10px;
    color: #555;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}



.service-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    animation: slideIn 1s ease-out;
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.primary-btn {
    background-color: #ff6b81;
    color: white;
}

.primary-btn:hover {
    background-color: #ff4757;
}


.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    flex: 0 0 48%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-item h3 {
    margin-bottom: 10px;
}

.product-item p {
    margin-bottom: 10px;
}

/* Contact Form Styles */
#contact-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact-form input[type="submit"] {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#contact-form input[type="submit"]:hover {
    background-color: #d35400;
}

footer {
    background-color: #1c2a35;
    color: #f1f1f1;
    padding: 50px 20px;
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-top {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.footer-top h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    animation: fadeIn 1s ease-out;
}

.footer-top p {
    margin-bottom: 30px;
    color: #a5a5a5;
    animation: fadeIn 1s ease-out;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease-out;
}

.footer-buttons .btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite;
}

.primary-btn {
    background-color: #ff6b81;
    color: white;
}

.secondary-btn {
    background-color: transparent;
    color: #ff6b81;
    border: 2px solid #ff6b81;
}

.primary-btn:hover {
    background-color: #ff4757;
}

.secondary-btn:hover {
    background-color: #ff6b81;
    color: white;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    text-align: left;
    animation: slideIn 1.2s ease-out;
}

.footer-column {
    flex: 1 1 20%;
    margin-bottom: 20px;
    min-width: 220px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a5a5a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6b81;
}

.footer-column p a {
    color: #ff6b81;
    text-decoration: none;
}

.footer-column p a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2f3b45;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.footer-bottom p {
    margin: 0;
    color: #a5a5a5;
}

.footer-bottom ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-bottom ul li {
    display: inline;
}

.footer-bottom ul li a {
    color: #a5a5a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom ul li a:hover {
    color: #ffffff;
}


.contact-hero {
    background-color: #1c2a35;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.contact-card {
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 30%;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #555;
}

.contact-card a {
    color: #ff6b81;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}


.contact-form {
    background-color: #f0f2f5;
    padding: 60px 20px;
    text-align: center;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b81;
    outline: none;
}

.contact-form .btn {
    background-color: #ff6b81;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #ff4757;
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .form-group {
        width: 90%;
    }
}


.booking-hero {
    background-color: #1c2a35;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.booking-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.booking-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.booking-form {
    background-color: #f0f2f5;
    padding: 60px 20px;
    text-align: center;
}

.booking-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ff6b81;
    outline: none;
}

.booking-form .btn {
    background-color: #ff6b81;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.booking-form .btn:hover {
    background-color: #ff4757;
}

@media (max-width: 768px) {
    .form-group {
        width: 90%;
    }
}

.flatpickr-calendar.inline {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.flatpickr-calendar {
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.flatpickr-time input {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}
