/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* Colors */
.special-pink {
    color: #e94a7f;
}

.bg-special-pink {
    background-color: #e94a7f;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1604654894610-df63bc536371');
    background-size: cover;
    background-position: center;
}

/* Button Effects */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    transition: 0.7s;
}

.btn-shine:hover:after {
    left: 100%;
}

/* Card Animation */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Service Card Hover Effects */
.bg-gray-50 {
    transition: all 0.3s ease;
}

.bg-gray-50:hover {
    transform: translateY(-5px);
}

/* Gallery Image Hover */
.gallery img {
    transition: all 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Testimonial Cards Animation */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Back to Top Button */
#back-to-top {
    transition: opacity 0.3s, visibility 0.3s;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top.invisible {
    opacity: 0;
    visibility: hidden;
}

/* Mobile Menu Styles */
#mobile-menu {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-section {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem !important;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Apply animations to elements on page load */
.hero-section h1 {
    animation: fadeIn 1.2s ease-out;
}

.hero-section p {
    animation: fadeIn 1.5s ease-out;
}

.stat-card {
    animation: slideUp 0.8s ease-out forwards;
}

/* Staggered animations for multiple elements */
.stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Footer styling */
footer a:hover {
    color: #e94a7f !important;
}

/* Additional hover effects */
.hover\:bg-pink-600:hover {
    background-color: #d23d6d;
}

.hover\:text-pink-500:hover {
    color: #e94a7f;
}

/* Time slot styling for booking */
.time-slot-option {
    display: inline-block;
    cursor: pointer;
}

.time-slot-option input[type="radio"] {
    display: none;
}

.time-slot-display {
    display: block;
    padding: 10px;
    background-color: #f3f4f6;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot-option input[type="radio"]:checked + .time-slot-display {
    background-color: #e94a7f;
    color: white;
}

/* Custom Fonts */
.playfair {
    font-family: 'Playfair Display', serif;
}

/* Custom Colors */
.special-pink {
    color: #f43f5e;
}

.bg-special-pink {
    background-color: #f43f5e;
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Stat Cards */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Gallery Images */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Calendar Customization */
.fc {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
}

.fc .fc-button-primary {
    background-color: #f43f5e;
    border-color: #f43f5e;
}

.fc .fc-button-primary:hover {
    background-color: #e11d48;
    border-color: #e11d48;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(244, 63, 94, 0.1);
}

/* Form Styles */
input, textarea {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f43f5e;
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.1);
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Container Max Width */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}

/* Calendar Styles */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

/* Holiday date styling - simplified and cross-browser compatible */
input[type="date"].holiday-date {
    color: #ff0000;
    background-color: #ffeeee;
    border-color: #ffaaaa;
    text-decoration: line-through;
    opacity: 0.8;
}

/* Custom date styling for disabled dates */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Time slot styling */
.time-slot {
    transition: all 0.2s ease-in-out;
}

.time-slot:hover {
    background-color: #fff0f5;
    border-color: #ffb6c1;
}

.time-slot.selected {
    background-color: #e94a7f;
    color: white;
    border-color: #d43d6d;
}

/* Form message styling */
.form-message {
    padding: 0.75rem;
    margin: 1rem 0;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.form-message.error {
    background-color: #fff0f0;
    color: #cc0000;
    border: 1px solid #ffcccc;
}

.form-message.success {
    background-color: #f0fff0;
    color: #007700;
    border: 1px solid #ccffcc;
} 