@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f5f5f5;
    overflow-y: auto;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}


/* Header Navigation */
.nav-container {
    width: 75px;
    min-height: 60px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    z-index: 1000;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    width: 100%;
}


.dropdown {
    width: 100%;
    display: block;
    position: relative;
    visibility: visible; /* Added visibility */
}

.dropbtn {
    width: 100%;
    padding: 15px 10px;
    background-color: #016101;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    border-radius: 8px;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dropbtn:hover {
    background-color: #014801;
    transform: scale(1.02);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    width: 200px;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 12px rgba(20, 85, 4, 0.959);
    border-radius: 8px;
    z-index: 1002;
    margin-top: 5px;
}

/* Show dropdown when button is clicked */
.dropdown-content.show {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

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

/* Dropdown items */
.dropdown-content li {
    padding: 0;
    list-style: none;
}

.dropdown-content li a {
    text-decoration: none;
    color: rgb(18, 77, 0);
    display: block;
    padding: 15px 25px;
    font-size: 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content li a:hover {
    background-color: #f0f0f0;
    color: #016101;
}







/* Existing Styles */
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.carousel-side-box {
    flex: 1;
    max-width: 280px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3f9b55;
    transition: all 0.3s ease;
}

.carousel-side-box:hover {
    box-shadow: 0 8px 20px rgba(63, 155, 85, 0.15);
    transform: translateY(-5px);
}

.carousel-side-box h3 {
    color: #016101;
    font-size: 18px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-side-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.amount-raised-box {
    background: linear-gradient(135deg, #f0f8f0 0%, #f5faf5 100%);
    border: 2px solid #3f9b55;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(63, 155, 85, 0.1);
}

.amount-raised-box h4 {
    color: #016101;
    font-size: 16px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-text {
    font-size: 32px;
    font-weight: bold;
    color: #016101;
    margin: 8px 0;
}

.amount-description {
    color: #3f9b55;
    font-size: 13px;
    font-style: italic;
    margin: 8px 0 0 0;
}

.carousel {
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-button {
    background-color: #016101;
    color: white;
    border: none;
    cursor: pointer;
    padding: 13px 20px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(1, 97, 1, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    align-self: center;
}

.carousel-button:hover {
    background-color: #014801;
    box-shadow: 0 6px 16px rgba(1, 97, 1, 0.4);
    transform: scale(1.05);
}

.carousel-button:active {
    transform: scale(0.98);
}

#prevButton {
    order: 1;
}

.carousel-images-wrapper {
    order: 2;
    display: flex;
    align-items: center;
}

#nextButton {
    order: 3;
}

.carousel-images {
    display: flex;
    overflow: hidden;
    width: 600px;
    height: 518px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carousel-images img {
    width: 80%;
    height: auto;
    transition: transform 0.5s ease-in-out;
    border-radius: 50px;
    border: 3px solid #3f9b55;
    overflow: hidden; /* Ensure the image respects the border radius */
    box-shadow: 0px 4px 8px rgba(20, 85, 4, 0.959); /* Add shadow for depth */
    /* margin: 0 auto; Center the image within the carousel */
}

.thumbnail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 20px auto;
    width: 95%;
    padding: 20px;
    border-radius: 8px;
    background-color: #3f9b55;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    margin: 20px 0 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    flex: 1;
    font-size: 28px;
    font-weight: bold;
    color: #016101;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subheader {
    flex: 2;
    font-size: 16px;
    color: #666;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0;
    line-height: 1.4;
}

.items-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
}

.thumbnail-grid img{
    width: 100%;
    cursor: pointer;
}

.grid-item {
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.thumbnail-grid div {
    text-align: center;
}

.thumbnail-grid textarea,
.thumbnail-grid input[type="text"] 
{
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.thumbnail-grid textarea {
    height: 90px;
    resize: none;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: none;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-style: normal;
    color: #555;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 12px;
    overflow: hidden;
}

.grid-item-carousel {
    position: relative;
    overflow: visible;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
}

.grid-item-carousel img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 5;
    padding: 0;
    margin: 0;
}

.carousel-prev, .carousel-next {
    background-color: rgba(1, 97, 1, 0.8);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(1, 97, 1, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-counter {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #016101;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hovering-div .carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1005;
    display: flex;
    gap: 8px;
}

.hovering-div .carousel-counter {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1005;
}

.thumbnail-grid textarea:hover {
    box-shadow: inset 0 2px 8px rgba(63, 155, 85, 0.15), 0 4px 12px rgba(63, 155, 85, 0.15);
    transform: translateY(-1px);
}

.thumbnail-grid textarea:focus {
    outline: none;
    box-shadow: inset 0 2px 8px rgba(1, 97, 1, 0.2), 0 6px 16px rgba(1, 97, 1, 0.2);
    transform: translateY(-2px);
}

.thumbnail-grid input[type="text"] {
    height: 30px;
}

.thumbnail-grid .price-display {
    display: block;
    width: 50%;
    margin: 10px auto;
    padding: 8px;
    font-size: .75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

.thumbnail-grid .description-display {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

.contact-button, .back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #016101;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.contact-button:hover, .back-button:hover {
    background-color: #555;
}

.about-contact {
    margin: 20px 0;
    display: inline-block;
    font-size: 16px;
}

.form-container {
    margin: 20px auto;
    width: 80%;
    text-align: center;
}

.image-list-section {
    margin: 20px auto;
    width: 80%;
    text-align: left;
}

.image-list-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.image-list-section li {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
}

.hovering-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears above all other elements */
    cursor: pointer; /* Indicate that the div can be clicked to dismiss */
}

.hovering-div img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    object-fit: contain;
    width: auto;
    height: auto;
}

.image-description-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    z-index: 1001;
    border-left: 5px solid #3f9b55;
}


.banner {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #d4edda;
    color: #3f9b55;
    text-align: center;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #c3e6cb;
    position: relative;
    min-height: 100px;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    overflow-y: auto; /* Enables scrolling within container */
}

.carousel-container {
    flex: 1;
    margin-right: 20px;
}

.photo-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 20px auto;
    width: 90%;
    gap: 20px;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.photo-container {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.photo-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.photo-carousel {
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

.photo-carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.photo-container textarea {
    width: 90%;
    height: 60px;
    padding: 8px;
    resize: vertical;
}

.photo-container input {
    width: 90%;
    padding: 8px;
}

.centered-text {
    width: 90%;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.centered-text h2 {
    color: #016101;
    margin-bottom: 15px;
}

.centered-text p {
    line-height: 1.6;
    color: #333;
}

.item-details {
    width: 90%;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.item-description {
    color: #333;
    font-size: 0.9em;
    margin-bottom: 5px;
    text-align: left;
}

.item-price {
    color: #016101;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
}

.collection-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.buy-button {
    display: inline-block;
    background-color: #016101;
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #014801;
    cursor: pointer;
}

/* About Page Styles */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.about-image {
    flex: 0 0 250px;
    height: 350px;
    border: 15px solid #E6E6FA; /* Lilac border */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    max-width: 800px;
    margin: 0 20px;
}

.about-text-box {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text-box h2 {
    color: #016101;
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #E6E6FA;
    padding-bottom: 15px;
}

.about-text-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Quaint Vases Carousel Section */
.quaint-vases-section {
    width: 95%;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.carousel-wrapper-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px auto;
    width: 100%;
}

.carousel-images-wrapper {
    display: flex;
    align-items: center;
}

#quaintVasesCarousel {
    display: flex;
    overflow: hidden;
    width: 600px;
    height: 450px;
    justify-content: center;
    align-items: center;
    position: relative;
}

#quaintVasesCarousel img {
    width: 80%;
    height: auto;
    transition: transform 0.5s ease-in-out;
    border-radius: 120px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(20, 85, 4, 0.959);
    display: none;
}

#quaintVasesCarousel img.active {
    display: block;
}

.carousel-description-box {
    background: linear-gradient(135deg, #f0f8f0 0%, #f5faf5 100%);
    border: 2px solid #3f9b55;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(63, 155, 85, 0.1);
    min-height: 80px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .quaint-vases-section {
        width: 90%;
        margin: 20px auto;
        padding: 15px;
    }

    .carousel-wrapper-section {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    #quaintVasesCarousel {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    #quaintVasesCarousel img {
        width: 80%;
        height: auto;
    }

    .carousel-description-box {
        width: 100%;
        padding: 15px;
        margin-top: 15px;
        font-size: 14px;
    }

    .carousel-button {
        padding: 10px 14px;
        font-size: 14px;
    }

    .banner {
        padding: 15px 0 50px 0;
    }

    .banner h1 {
        font-size: 24px;
    }

    .banner h2 {
        font-size: 16px;
    }

    .banner h3 {
        font-size: 14px;
    }

    .content-container {
        width: 95%;
        margin: 20px auto;
        padding: 10px;
    }

    .carousel-wrapper {
        gap: 15px;
        padding: 0 10px;
    }

    .carousel-side-box {
        max-width: 150px;
        padding: 15px;
        font-size: 12px;
    }

    .carousel-side-box h3 {
        font-size: 14px;
    }

    .carousel-side-box p {
        font-size: 12px;
    }

    .carousel-container {
        margin: 20px 0;
    }

    .carousel-images {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .carousel-button {
        padding: 10px 14px;
        font-size: 14px;
    }

    #prevButton {
        order: 1;
    }

    #nextButton {
        order: 3;
    }

    .thumbnail-grid {
        gap: 10px;
        padding: 10px;
    }

    .item-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .photo-row {
        gap: 10px;
    }

    .about-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-image {
        flex: 1;
        width: 100%;
        height: 250px;
        max-width: none;
    }

    .about-content {
        width: 100%;
    }

    .about-text-box {
        padding: 20px;
    }

    .about-text-box h2 {
        font-size: 24px;
    }

    .about-text-box p {
        font-size: 14px;
    }

    .contact-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .dropdown-content {
        width: 180px;
        position: fixed;
        top: auto;
        bottom: auto;
    }

    footer {
        font-size: 12px;
        padding: 15px;
    }

    .amount-raised-box {
        padding: 12px 15px;
        margin-top: 15px;
    }

    .amount-raised-box h4 {
        font-size: 14px;
    }

    .amount-text {
        font-size: 28px;
    }

    .amount-description {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .banner h1 {
        font-size: 20px;
    }

    .nav-container {
        width: 60px;
    }

    .dropbtn {
        padding: 12px 8px;
        font-size: 14px;
    }

    .carousel-images {
        width: 100%;
        height: 250px;
    }

    .carousel-button {
        padding: 8px 10px;
        font-size: 12px;
    }

    #prevButton {
        order: 1;
    }

    #nextButton {
        order: 3;
    }

    .item-row {
        grid-template-columns: 1fr;
    }

    .photo-row {
        flex-direction: column;
        align-items: center;
    }

    .photo-container {
        width: 90%;
    }

    .carousel-side-box {
        display: none;
    }

    .carousel-wrapper {
        gap: 10px;
    }

    .about-image {
        height: 200px;
    }

    .thumbnail-grid textarea {
        height: 75px;
        font-size: 14px;
        font-family: 'Lora', serif;
        font-weight: 600;
        font-style: normal;
    }

    .about-text-box {
        padding: 15px;
    }

    .about-text-box h2 {
        font-size: 20px;
    }

    .about-text-box p {
        font-size: 13px;
    }
}.about-text-box p:last-child {
    margin-bottom: 0;
}

/* Sold Pieces Gallery Styles - Sage Green Theme */
.sold-gallery-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}
.sold-dropdown {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.sold-dropdown label {
  margin-right: 0.5rem;
  font-weight: bold;
}
.sold-dropdown select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #A3B18A;
  background: #fff;
  color: #3f9b55;
}
.sold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.sold-piece {
  background: rgba(163, 177, 138, 0.10);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sold-piece img {
  width: 100%;
  max-width: 180px;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.expand-desc {
  background: #A3B18A;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #fff;
  transition: background 0.2s;
}
.expand-desc:hover {
  background: #7A9D54;
}
.sold-desc {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
  transition: max-height 0.3s, opacity 0.3s;
  max-height: 300px;
  overflow: hidden;
  opacity: 1;
}
.sold-desc.collapsed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .sold-gallery-container {
    padding: 0.5rem;
  }
  .sold-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .sold-piece img {
    max-width: 100px;
  }
  .expand-desc {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Social Links Styling for About Page */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding: 10px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #C8A2C8; /* Lilac */
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(200, 162, 200, 0.4);
}

.social-icon:hover {
    background-color: #B088B0; /* Darker lilac on hover */
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(200, 162, 200, 0.6);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.tiktok:hover {
    background: linear-gradient(45deg, #69C9D0, #010101, #EE1D52);
}

