@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --primary-color: #F9C5BD;
    --secondary-color: #FFD8C2;
    --text-color: #4A4A4A;
    --light-bg: #FFF5F3;
    --border-color: rgba(0,0,0,0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

.header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 0.9rem;
    padding: 0.75rem 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    text-align: center;
    border-radius: 8px;
    margin: 0 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(249, 197, 189, 0.1);
}

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

.search-form input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: white;
    font-size: 0.9rem;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

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

.btn-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-color);
}

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

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

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

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-item {
        padding: 0.5rem 0;
    }
}

.footer {
    background-color: var(--light-bg);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-info-section .card {
    background: linear-gradient(145deg, var(--light-bg), #ffffff);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.contact-info-section .card-body {
    padding: 2rem;
}

.contact-info-section .fas {
    color: var(--primary-color);
}

.contact-info-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section a:hover {
    color: var(--primary-color);
}

.contact-form .form-control {
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(249, 197, 189, 0.25);
}

.contact-form .btn-primary {
    border-radius: 20px;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
}

.footer h5 {
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 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 .btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 2rem;
    color: white;
    transition: background-color 0.3s ease;
}

.cookie-content .btn:hover {
    background-color: var(--secondary-color);
}

/* Navigation Improvements */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
}

/* Cart Button Styling */
.snipcart-checkout {
    position: relative;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
}

.snipcart-checkout:hover {
    background-color: rgba(249, 197, 189, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}

.snipcart-items-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 20px;
    padding: 2px;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .nav-link {
        padding: 0.5rem 1rem;
        min-height: 45px;
        margin: 0.2rem 0;
    }
    
    .snipcart-checkout {
        min-width: 45px;
        min-height: 45px;
    }
}

/* Modern Carousel Styles */
.modern-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.carousel-image-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-image-wrapper img {
    transition: transform 0.8s ease;
    object-fit: cover;
    height: 70vh;
    min-height: 500px;
}

.modern-carousel:hover .carousel-image-wrapper img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.modern-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.caption-content h1,
.caption-content h2 {
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.caption-content p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 1.2rem;
}

.btn-glamour {
    background: linear-gradient(135deg, #F9C5BD 0%, #FFD8C2 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(249, 197, 189, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glamour::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glamour:hover::before {
    left: 100%;
}

.btn-glamour:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 197, 189, 0.6);
    background: linear-gradient(135deg, #FFD8C2 0%, #F9C5BD 100%);
}

.modern-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.modern-control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.modern-icon {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-image-wrapper img {
        height: 50vh;
        min-height: 400px;
    }
    
    .caption-content h1,
    .caption-content h2 {
        font-size: 2.5rem;
    }
    
    .caption-content p {
        font-size: 1rem;
    }
    
    .btn-glamour {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .modern-control {
        width: 50px;
        height: 50px;
    }
}
