*body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

body {
    background: 
        linear-gradient(
            to bottom,
            rgba(255, 192, 203, 0.2) 0%, /* Light pink at 50% opacity at top */
            transparent 20%, /* Faded middle section */
            transparent 80%, /* Faded middle section */
            rgba(255, 192, 203, 0.2) 100% /* Light pink again at the bottom */
        ),
        repeating-linear-gradient(
            110deg, /* 70-degree angled stripes */
            rgba(255, 192, 203, 0.2), /* Light pink stripe at 50% opacity */
            rgba(255, 192, 203, 0.2) 20px, /* Stripe thickness */
            transparent 40px, /* Space between stripes */
            transparent 30px /* Space between stripes */
        );
    background-size: cover; /* Cover the entire page */
    background-repeat: no-repeat;
}

body::-webkit-scrollbar {
    width: 15px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #ffffff; /* Background of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
    background-color: #9d0d93; /* Scrollbar color */
    border-radius: 10px; /* Roundness of the scrollbar */
    border: 3px solid #ecf6db; /* Adds space around the thumb */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
nav {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
    color: #9d0d93;
}
.logo-image {
    height: 100px;
    width: 100px;
}
.nav-links {
    display: flex;
    font-size: 20px;
    gap: 20px;
}
.nav-links a, .nav-icons a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #9d0d93;
}

.nav-icons a:hover{
    transform: scale(1.10);
}

.nav-icons {
    display: flex;
    gap: 15px;
}
.icon {
    width: 35px;
    height: 35px;
}
.banner {
    background-image: url('banner.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50vw;
    max-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Slight dark overlay for better text visibility */
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner h1 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 4vw; /* Responsive font size */
    max-font-size: 48px; /* Max font size for very wide screens */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    padding: 0 20px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #9d0d93;
    margin: 40px 0 20px;
}
.scrollable-list {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
}
.scrollable-list::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
}

.scrollable-list::-webkit-scrollbar-track {
    background: #ffffff; /* Background of the scrollbar track */
}

.scrollable-list::-webkit-scrollbar-thumb {
    background-color: #9d0d93; /* Scrollbar color */
    border-radius: 10px; /* Roundness of the scrollbar */
    border: 3px solid #ecf6db; /* Adds space around the thumb */
}
.cake-item {
    flex: 0 0 auto;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}
.cake-item:hover {
    transform: scale(1.05);
}
.cake-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.cake-item h3 {
    font-family: 'Playfair Display', serif;
    margin: 10px 0 5px;
}
.cake-item p {
    margin: 0 0 10px;
}
.add-to-cart {
    background-color: #9d0d93;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.add-to-cart:hover {
    background-color: #7a0a73;
}
.grid-cakes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.video-container {
    width: 100%;
    height: 100%;
}

.instagram-post {
    width: 100%;
    height: 100%;
}
footer {
    background-color: #f0f0f0;
    padding: 40px 0;
    text-align: center;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: #9d0d93;
    margin-bottom: 10px;
}
.footer-section ul {
    list-style-type: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 5px;
}
.footer-section ul li a {
    color: #333;
    text-decoration: none;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    color: #9d0d93;
    font-size: 24px;
    margin: 0 10px;
}
.fixed-contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* contact page */

.page-title {
    font-family: 'Playfair Display', serif;
    color: #9d0d93;
    text-align: center;
    margin: 10px 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 10px;
}

.contact-methods {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    gap: 100px; /* Increased gap between each contact method */
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5px;
}

.contact-icon,
.whatsapp-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.contact-icon:hover,
.whatsapp-icon:hover {
    transform: scale(1.1);
}

.contact-icon img,
.whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.contact-method h3 {
    margin: 5px 0; /* Reduced spacing above and below the headings */
}

.contact-method p {
    margin: 2px 0; /* Reduced spacing above and below the paragraphs */
}

/* Form styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Flexbox layout for fields */
.flex-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Input and Textarea styles */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #fff;
}

textarea {
    height: 100px;
    resize: vertical;
}

/* Placeholder inside input box effect */
input::placeholder,
textarea::placeholder {
    color: #999;
    font-style: italic;
    transition: 0.3s ease;
}

/* Placeholder hides on focus */
input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}

/* Input focus border effect */
input:focus,
textarea:focus {
    border-color: #9d0d93;
    outline: none;
}

/* Align First Name and Last Name in the same line */
.half-width {
    width: 100%;
}

/* Flex item for proper alignment */
.flex-half {
    flex: 1;
}

/* Align Country Code and Mobile Number in the same line */
.select-small {
    width: 30%;
}

.input-large {
    width: 70%;
}

/* CAPTCHA section */
.captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Submit button styles */
button[type="submit"] {
    background-color: #ccc;
    color: #666;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 4px;
    cursor: not-allowed;
    transition: background-color 0.3s, color 0.3s;
}

button[type="submit"]:not(:disabled) {
    background-color: #9d0d93;
    color: white;
    cursor: pointer;
}

button[type="submit"]:not(:disabled):hover {
    background-color: #7a0a73;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flex-group {
        flex-direction: column;
    }
}

/* store locator page */

.store-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-banner {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    margin-bottom: 20px;
}

.store-search-area {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
}

.store-search-box, .store-dropdown {
    margin-bottom: 10px;
}

.store-search-box input, .store-dropdown select {
    width: 100%;
    padding: 10px;
}

.store-content {
    display: flex;
    justify-content: space-between;
}


.store-map {
    width: 100%;
    height: 600px;
    background-color: #eee;
}

/* Color theme */
.store-search-area, .store-example-areas h3 {
    background-color: #9d0d93;
    color: white;
}

.store-search-box input, .store-dropdown select {
    border: 1px solid #9d0d93;
}

/* photo cake page */

/* Container holding the image and details */
.photocake_container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto; /* Center horizontally */
    padding: 20px;
}

/* Image section */
.cake-image {
    flex: 1;
    max-width: 450px;
}

.cake-image img {
    max-width: 100%;
    border-radius: 10px;
    display: block; /* Ensure image does not exceed container */
}

/* Cake details (right side) */
.cake-details {
    flex: 2;
    max-width: 600px;
}

/* Title */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333;
}

/* Price */
.price {
    font-size: 24px;
    color: #9d0d93;
    margin-top: 10px;
}

/* Description */
.description {
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}

/* Options container */
.options {
    margin: 20px 0;
}

/* Labels */
.options label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

/* Option buttons styling */
.options-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.option-btn {
    background-color: white;
    border: 2px solid #9d0d93;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    color: #9d0d93;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.option-btn.selected {
    background-color: #9d0d93;
    color: white;
}

.option-btn:hover {
    background-color: #9d0d93;
    color: white;
}

/* Quantity control */
.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity-btn {
    background-color: white;
    border: 2px solid #9d0d93;
    padding: 5px 15px;
    border-radius: 25px;
    cursor: pointer;
    color: #9d0d93;
    font-weight: bold;
}

.quantity input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 5px;
}

/* Upload image section */
.upload-image input {
    margin-top: 10px;
}

/* Actions */
.actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.add-to-cart {
    background-color: #9d0d93;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #740a66;
}

.checkout {
    background-color: white;
    color: #9d0d93;
    border: 2px solid #9d0d93;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.checkout:hover {
    background-color: #9d0d93;
    color: white;
}

/* Notes at the bottom */
.note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

/* about us */
.contact-info h2,
.email-info h2 {
    font-size: 20px;
    color: #555;
}

/* CSS for the popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(157, 13, 147, 0.5); /* Semi-transparent purple background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white; /* Main popup background color */
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    text-align: center;

    /* Centering popup using transform */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content h2 {
    margin-top: 0;
    font-family: 'Playfair Display', serif;
    color: #9d0d93; /* Header color */
}

.popup-content p {
    margin: 10px 0;
    font-weight: bold;
    color: #9d0d93; /* Paragraph text color */
}

.popup-content button {
    margin: 5px;
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid #9d0d93; /* Button border color */
    background-color: #9d0d93; /* Button background color */
    color: white; /* Button text color */
    border-radius: 5px;
}

.popup-content button:hover {
    background-color: #780c6f; /* Darker purple for hover effect */
}

.popup-content input[type="file"] {
    margin: 10px 0;
}

.popup-content input[type="text"] {
    width: 50px;
    text-align: center;
    border: 1px solid #9d0d93; /* Input border color */
    margin: 0 5px;
    padding: 5px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #9d0d93; /* Close button color */
}

.close-button:hover {
    color: #e74c3c; /* Red color for hover effect */
}
