/* Custom styles for BeLike Salon */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Padding for fixed navbar */
body {
    padding-top: 64px;
}

/* Portfolio lightbox styles */
#lightbox {
    cursor: pointer;
}

#lightbox img {
    border-radius: 8px;
}

.portfolio-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
}

.portfolio-item figure {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.portfolio-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
    filter: none !important;
}

.portfolio-item:hover figure img {
    opacity: 1 !important;
    filter: none !important;
}

/* Animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom gradient for hero */
.hero {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 50%, #fce7f3 100%);
}

/* Floating button animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.floating-cta {
    animation: pulse 2s infinite;
}

/* Mobile menu improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
}

/* Table responsive improvements */
@media (max-width: 768px) {
    .table {
        font-size: 0.875rem;
    }
}

/* Social media icons hover effect */
footer a svg,
#social a svg {
    transition: transform 0.3s ease;
}

footer a:hover svg,
#social a:hover svg {
    transform: scale(1.2);
}

/* Reviews section */
.hidden-review {
    display: none;
}

.hidden-review.show {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
    border-top: 3px solid #ec4899;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-banner.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cookie-consent-message {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-link {
    color: #ec4899;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-consent-link:hover {
    color: #be185d;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Responsive design for cookie banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-text {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .cookie-consent-title {
        font-size: 1.125rem;
    }

    .cookie-consent-message {
        font-size: 0.8125rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-consent-buttons .btn {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-buttons .btn {
        width: 100%;
    }
}

/* Cookie Settings Modal improvements */
#cookie-settings-modal .card {
    transition: box-shadow 0.2s ease;
}

#cookie-settings-modal .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#cookie-settings-modal .checkbox {
    cursor: pointer;
}

#cookie-settings-modal .checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Parallax effect for salon image */
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 500px;
    margin: 2rem 0;
}

.parallax-image {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .parallax-image {
        transform: none !important;
    }
}

/* Profile image circular */
.profile-image-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ec4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* About section layout improvements */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

