/* Color Variables */
:root {
    --baby-pink: #FFC0CB;
    --light-pink: #FFE4E1;
    --soft-pink: #FFB6C1;
    --pink-accent: #FF69B4;
    --dark-text: #333333;
}

/* Global Color Updates */
body {
    background-color: var(--light-pink);
    color: var(--dark-text);
    font-weight: 500;
}

/* Text and Icon Styling */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    font-weight: 700 !important;
}

.site-navbar {
    background-color: var(--baby-pink) !important;
}

.site-navbar .navbar-brand {
    color: var(--dark-text) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.site-navbar .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
}

.site-navbar .nav-link:hover {
    color: var(--pink-accent) !important;
}

/* Icon Styling */
.icon-star,
.icon-facebook,
.icon-instagram,
.icon-phone,
.icon-envelope,
.icon-location {
    font-weight: 900;
    color: var(--dark-text);
}

/* Header Image Improvements */
.site-cover {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .site-cover {
        min-height: 60vh;
        background-position: center center;
    }
    
    .site-cover::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 192, 203, 0.3);
        z-index: 1;
    }
}

/* Enhanced Section Styling */
.site-section {
    padding: 5em 0;
    position: relative;
    overflow: hidden;
}

.site-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
    z-index: 0;
}

.site-section.bg-light {
    background-color: #fff !important;
}

/* Enhanced Service Cards */
.media.menu-item {
    background: white;
    border-radius: 15px;
    padding: 2em;
    margin-bottom: 2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.media.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Newsletter Section */
#section-newsletter {
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-pink) 100%);
    padding: 6em 0;
    position: relative;
    overflow: hidden;
}

#section-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.newsletter-form:hover {
    transform: translateY(-5px);
}

.newsletter-form .form-control {
    height: 60px;
    border-radius: 30px;
    padding: 0 30px;
    font-size: 1.1rem;
    border: 2px solid var(--baby-pink);
    background: white;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--pink-accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.newsletter-form .btn {
    height: 60px;
    padding: 0 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--pink-accent);
    border: none;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--soft-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* Enhanced Review Cards */
.review-item {
    background: white;
    border-radius: 15px;
    padding: 2em;
    margin-bottom: 2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    background-color: var(--baby-pink) !important;
}

.site-footer h2 {
    color: var(--dark-text);
    font-weight: 700;
}

.site-footer a {
    color: var(--dark-text);
    font-weight: 600;
}

.site-footer a:hover {
    color: var(--pink-accent);
}

/* Navigation Animation Update */
.navbar-nav .nav-link::after {
    background-color: var(--pink-accent);
}

/* Button Styling */
.btn-primary {
    background-color: var(--pink-accent);
    border-color: var(--pink-accent);
}

.btn-primary:hover {
    background-color: var(--soft-pink);
    border-color: var(--soft-pink);
}

/* Section Headers */
.site-section h2.display-4 {
    color: var(--dark-text);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.site-section .lead {
    color: var(--dark-text);
    font-weight: 500;
}

/* Menu Items */
.media.menu-item h5 {
    color: var(--dark-text);
    font-weight: 700;
}

.media.menu-item p {
    color: var(--dark-text);
    font-weight: 500;
}

/* Review Section */
.review-item h5 {
    color: var(--dark-text);
    font-weight: 700;
}

.review-item p {
    color: var(--dark-text);
    font-weight: 500;
}

/* Newsletter Section */
#section-newsletter h2 {
    color: var(--dark-text);
    font-weight: 700;
}

#section-newsletter .lead {
    color: var(--dark-text);
    font-weight: 500;
}

/* Enhanced Contact Section */
#section-contact {
    background: linear-gradient(135deg, var(--light-pink) 0%, white 100%);
}

.contact-info-item {
    background: white;
    border-radius: 15px;
    padding: 2em;
    margin-bottom: 2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Button Text */
.btn {
    font-weight: 600;
}

/* Price Text */
.menu-price {
    color: var(--dark-text);
    font-weight: 700;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .site-navbar {
        padding: 10px 0;
    }
    
    .site-navbar .navbar-brand {
        font-size: 1.5rem;
    }
    
    .site-section {
        padding: 3em 0;
    }
    
    .site-thumbnail {
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        padding: 1.5em;
        margin: 0 1em;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        height: 50px;
        font-size: 1rem;
    }
    
    .media.menu-item,
    .review-item,
    .contact-info-item {
        padding: 1.5em;
        margin-bottom: 1.5em;
    }
    
    .site-section h2 {
        font-size: 2rem;
    }
}

/* Animation Enhancements */
.site-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.menu-item {
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
}

.site-thumbnail {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.site-thumbnail:hover {
    transform: scale(1.05);
}

.site-thumbnail img {
    transition: transform 0.3s ease;
}

.site-thumbnail:hover img {
    transform: scale(1.1);
}

/* Loading Animation Enhancement */
#site-loader {
    background: rgba(255, 192, 203, 0.95);
}

.circular {
    animation: rotate 2s linear infinite;
    border: 4px solid var(--pink-accent);
    border-top-color: white;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Footer About Section Enhancement */
.site-footer .site-heading-2 {
    color: var(--dark-text);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer p {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
}

.site-footer .site-footer-widget h2 {
    color: var(--dark-text);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer .site-footer-widget ul li a {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.site-footer .site-footer-widget ul li a:hover {
    color: var(--pink-accent);
    transform: translateX(5px);
} 