/* General Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #a29393;
    overflow-x: hidden;
}

/* Header Section */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ff7eb3, #ff758c);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header a img {
    border-radius: 50%;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ffebb5;
}

.icon-container a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.icon-container a:hover {
    transform: scale(1.2);
}

/* Home Section */
.home {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
    background: linear-gradient(to right, #ffe6e6, #fff1f1);
}

.home .box span {
    font-size: 1.2rem;
    color: #ff7eb3;
    font-weight: bold;
}

.home .box h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 10px 0;
}

.home .box p {
    margin-bottom: 20px;
    color: #555;
}

.home .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7eb3;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.home .btn:hover {
    background-color: #ff4f81;
}

/* About Section */
.about {
    padding: 50px;
    background: #fff5f5;
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about .image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
    font-size: 2rem;
    color: #ff7eb3;
    margin-bottom: 10px;
}

.about .btn {
    margin-top: 20px;
    background-color: #ff758c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.about .btn:hover {
    background-color: #ff4f81;
}

/* Shop Section */
.shop {
    padding: 50px;
    background: #fff;
}

.shop .heading {
    text-align: center;
    font-size: 2rem;
    color: #ff7eb3;
    margin-bottom: 20px;
}

.shop .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.shop .box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.shop .box:hover {
    transform: translateY(-10px);
}

.shop .box img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
}

.shop .box h3 {
    color: #ff7eb3;
    margin: 10px 0;
}

/* FAQ Section */
.faq {
    background: linear-gradient(to right, #ffe6e6, #fff1f1);
    padding: 50px;
}

.faq .heading {
    text-align: center;
    font-size: 2rem;
    color: #ff7eb3;
    margin-bottom: 20px;
}

.faq .accordion .contentBox {
    margin-bottom: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.faq .accordion .label {
    font-weight: bold;
    color: #ff758c;
    cursor: pointer;
}

.faq .accordion .content {
    margin-top: 10px;
    display: none;
    color: #555;
}

.faq .accordion .contentBox:hover .content {
    display: block;
}

/* Order Form */
.container form {
    background: #e0bebe;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.container form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff7eb3;
}

.container form input,
.container form select,
.container form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.container form button {
    display: inline-block;
    background: #ff7eb3;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.container form button:hover {
    background: #ff4f81;
}

/* Footer Section */
footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ff7eb3;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

footer a:hover {
    color: #ff4f81;
}

.icon-container {
    display: flex;
    gap: 20px;
}

/* Base styling for each icon */
.icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    /* Light, translucent background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Icon font styling */
.icon i {
    position: relative;
    z-index: 1;
    /* Ensures icon text appears above the hover effects */
}

/* Hover effect: initial styling */
.icon:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    width: 30px;
    height: 5px;
    background: #ff0171;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
}

/* General body styling to center content and set background */


/* Container for icons with spacing between them */
.icon-container {
    display: flex;
    gap: 20px;
}

/* Base styling for each icon */
.icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    /* Light, translucent background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Icon font styling */
.icon i {
    position: relative;
    z-index: 1;
    /* Ensures icon text appears above the hover effects */
}

/* Hover effect: initial styling */
.icon:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    width: 30px;
    height: 5px;
    background: #ff0171;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
}

/* Hover effect: expands on hover */
.icon:hover:after {
    top: 0;
    height: 100%;
    width: 80%;
    border-radius: 30px;
    opacity: 1;
    animation: show 0.5s ease forwards;
}

/* Instagram-specific hover effect */
.icon.instagram:hover:after {
    box-shadow: 0 0 15px #ff0171, 0 0 30px #ff0171;
    background: #ff0171;
}

/* Twitter-specific hover effect */
.icon.twitter:hover:after {
    box-shadow: 0 0 15px #017bff, 0 0 30px #017bff;
    background: #017bff;
}

/* YouTube-specific hover effect */
.icon.youtube:hover:after {
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000;
    background: #ff0000;
}

/* Facebook-specific hover effect */
.icon.facebook:hover:after {
    box-shadow: 0 0 15px #3b5998, 0 0 30px #3b5998;
    background: #3b5998;
}

/* WhatsApp-specific hover effect */
.icon.whatsapp:hover:after {
    box-shadow: 0 0 15px #4a983b, 0 0 30px #4a983b;
    background: #4a983b;
}

/* Keyframes animation for hover effect */
@keyframes show {
    0% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    text-align: center;
    color: #ff6b6b;
}

label {
    display: block;
    margin-top: 15px;
}

input,
select,
textarea,
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #ff6b6b;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #ff4c4c;
}

#response {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}
/* Gallery Styling */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
}

.image-box {
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    border-radius: 10px;
}

.caption {
    margin-top: 20px;
    font-size: 1.2rem;
    color: white;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}