/* Custom styles for Yogeen website */
:root {
    --yogeen-beige: #F7F4ED;
    --yogeen-jade: #A5D6A7;
    --yogeen-azure: #6BC7DB;
    --yogeen-peach: #F7B5A3;
    --yogeen-yellow: #F5D98B;
    --yogeen-text: #3E3A36;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    margin-bottom: 2rem;
}

.carousel-item {
    height: 600px;
    background-color: var(--yogeen-beige);
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(62, 58, 54, 0.7);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

/* Categories Section Styles */
.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(247, 244, 237, 0.95), transparent);
    color: var(--yogeen-text);
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-content h3 a {
    color: var(--yogeen-text);
    text-decoration: none;
}

.product-content h3 a:hover {
    color: var(--yogeen-jade);
}

.price {
    font-size: 1.5rem;
    color: var(--yogeen-jade);
    font-weight: 600;
}

/* About Section Styles */
.about-image-grid {
    position: relative;
    padding: 2rem;
}

.about-image-grid img {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section Styles */
.contact-form .form-control {
    border: 2px solid var(--yogeen-jade);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(165, 214, 167, 0.25);
}

body {
    background-color: var(--yogeen-beige);
    color: var(--yogeen-text);
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 500;
}

.site-header {
    background-color: var(--yogeen-beige);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--yogeen-jade);
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--yogeen-azure);
}

.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: var(--yogeen-text);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--yogeen-jade);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yogeen-jade);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.search-form {
    position: relative;
    width: 300px;
}

.search-form .form-control {
    border-radius: 25px;
    border: 2px solid var(--yogeen-jade);
    padding-right: 40px;
    background: white;
}

.search-form .btn-search {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--yogeen-jade);
    padding: 0.25rem 0.75rem;
}

.search-form .btn-search:hover {
    color: var(--yogeen-azure);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.snipcart-checkout,
.snipcart-customer-signin {
    background-color: var(--yogeen-jade);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
}

.snipcart-checkout:hover,
.snipcart-customer-signin:hover {
    background: linear-gradient(to right, var(--yogeen-jade), var(--yogeen-azure));
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--yogeen-jade);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--yogeen-text);
}

/* Footer Styles */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--yogeen-beige) 0%, rgba(247, 244, 237, 0.95) 100%);
    color: var(--yogeen-text);
    margin-top: 4rem;
}

.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.site-footer h5 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: var(--yogeen-jade);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.site-footer a {
    color: var(--yogeen-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.site-footer a:hover {
    color: var(--yogeen-jade);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.company-info i {
    color: var(--yogeen-jade);
    width: 20px;
    margin-right: 10px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--yogeen-jade);
}

.social-links a:hover {
    color: var(--yogeen-azure);
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(247, 244, 237, 0.95);
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--yogeen-jade);
    text-decoration: underline;
}

.cookie-content .btn {
    background-color: var(--yogeen-jade);
    color: white;
}

.cookie-content .btn:hover {
    background: linear-gradient(to right, var(--yogeen-jade), var(--yogeen-azure));
}

/* Thank You Page Styles */
.thank-you-section {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-section .success-icon {
    animation: scale-in 0.5s ease-out;
}

.thank-you-section .message-box {
    animation: fade-in 0.5s ease-out 0.3s both;
}

.thank-you-section .contact-info-box {
    animation: fade-in 0.5s ease-out 0.6s both;
}

.thank-you-section .action-buttons {
    animation: fade-in 0.5s ease-out 0.9s both;
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Contact Page Styles */
.contact-info-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
}

.contact-info-section h2 {
    color: var(--yogeen-jade);
    margin-bottom: 1.5rem;
}

.contact-info-section h2 i {
    margin-right: 0.5rem;
}

.contact-info-section address {
    font-style: normal;
    line-height: 1.6;
}

.contact-info-section .social-links a {
    font-size: 1.5rem;
    color: var(--yogeen-jade);
    transition: color 0.3s ease;
}

.contact-info-section .social-links a:hover {
    color: var(--yogeen-azure);
}

.contact-form-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 2px solid var(--yogeen-jade);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(165, 214, 167, 0.25);
}

.contact-form-section .btn-primary {
    background: linear-gradient(to right, var(--yogeen-jade), var(--yogeen-azure));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.contact-form-section .btn-primary:hover {
    background: linear-gradient(to right, var(--yogeen-azure), var(--yogeen-jade));
}

.faq-section .accordion-button {
    background: var(--yogeen-beige);
    color: var(--yogeen-text);
    font-weight: 600;
    padding: 1.25rem;
    border-radius: 15px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(to right, var(--yogeen-jade), var(--yogeen-azure));
    color: white;
}

.faq-section .accordion-body {
    background: white;
    padding: 1.25rem;
    line-height: 1.6;
}
