body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: crimson;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .brand {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: lightpink;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s;
}

.brand a {
    color: inherit;
    text-decoration: none;
}

.brand a {
    color: #fff;
    text-decoration: none;
    font-family: "Pacifico", serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
    }

    .navbar .brand {
        flex: 1;
    }

    .hamburger {
        display: flex;
        justify-content: flex-end;
    }

    .navbar .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 0;
        background-color: crimson;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: left;
        padding: 10px;
        width: 100%;
    }
}

/* Center Headings */
#creations,
#contact,
#home {
    text-align: center;
}

main {
    flex: 1;
}

/* Hero Section Slider */
.hero-slider {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    z-index: 1;
}

/* Image corousel */
.slider-container {
    width: 95%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    max-width: 100%;
    height: 25vh;
    object-fit: cover;
    display: block;
    border-radius: 5%;
}

.slider .slide {
    flex: 1 0 auto;
    box-sizing: border-box;
    padding: 0 10px;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background: white;
    color: crimson;
    border: 2px solid crimson;
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.arrow:hover {
    background: crimson;
    color: white;
}


/* Service Panel*/
.services-container {
    text-align: center;
    padding: 20px;
}

.services-container h2 {
    font-size: 2rem;
    color: #333;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #e63946;
    margin: 10px auto;
    border: none;
}

.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.service {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border: 2px solid #e63946;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.icon-wrapper.active {
    background-color: #e63946;
}

.icon {
    width: 40px;
    height: 40px;
}

.service h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 0;
}

.details-button {
    background-color: transparent;
    border: 1px solid #e63946;
    color: #e63946;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.details-button:hover {
    background-color: #e63946;
    color: #fff;
}

/* Service Panel*/
.masterpiece-container {
    text-align: center;
    padding: 20px;
}

.services-container h2 {
    font-size: 2rem;
    color: #333;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #e63946;
    margin: 10px auto;
    border: none;
}

.masterpieces {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.masterpiece {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.masterpiece p {
    font-size: 16px;
    color: #333;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mp-wrapper {
    width: 240px;
    height: 320px;
    border: 2px solid #e63946;
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.icon-wrapper.active {
    background-color: #e63946;
}

.mp {
    width: 100%;
    height: 100%;
    border-radius: 5%;
}

.service h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 0;
}

.details-button {
    background-color: transparent;
    border: 1px solid #e63946;
    color: #e63946;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.details-button:hover {
    background-color: #e63946;
    color: #fff;
}

/* Review Section */
/* Section Styling */
#reviews-section {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

#reviews-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

/* Review Card Styling */
.review {
    margin: 20px auto;
    max-width: 768px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.review img.avatar {
    width: 150px;
    height: 200px;
    border-radius: 5%;
    margin-bottom: 10px;
}

.review h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.review p {
    font-size: 16px;
    color: #555;
}

.stars {
    color: #f39c12;
    display: block;
    margin-top: 10px;
}

/* Scroll Animation */
.review:nth-of-type(1) {
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.review:nth-of-type(2) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.review:nth-of-type(3) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.review:nth-of-type(4) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.review:nth-of-type(5) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

/* Add more reviews with increasing delays as needed */

/* Keyframe Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Review Section old 
.review-container {
    width: 40%;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .review {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .review.active {
    display: block;
    opacity: 1;
  }
  .review img {
    border-radius: 10%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .review p {
    font-size: 16px;
    color: #555;
  }
  .review span {
    font-weight: bold;
    color: #000;
  }
  .dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
  }
  .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }
  .dot.active {
    background: #ff4747;
  }
*/
/* Explore button*/
.button-container {
    text-align: center;
    margin-top: 20px;
}

.explore-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: crimson;
    background-color: white;
    border: 2px solid crimson;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.explore-button:hover {
    background-color: crimson;
    color: white;
}

/* Footer styles */
footer {
    background-color: crimson;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

footer a {
    color: #00FFA3;
    /* Mentos color */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px;
}

.social-links img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links a {
        margin: 10px;
    }
}