/* AfterKiss Custom Styles */

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

/* Custom Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse-slow {
    animation: pulse-slow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #f43f5e, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Buttons */
.btn-primary {
    @apply px-8 py-4 bg-gradient-to-r from-romantic-500 to-passion-500 text-white font-semibold rounded-full hover:shadow-xl hover:scale-105 transition-all duration-300 ease-in-out active:scale-95;
}

.btn-secondary {
    @apply px-8 py-4 bg-white text-romantic-600 font-semibold rounded-full border-2 border-romantic-200 hover:border-romantic-400 hover:shadow-lg transition-all duration-300;
}

/* Card Styles */
.card-romantic {
    @apply bg-white rounded-2xl p-6 shadow-lg hover:shadow-xl transition-all duration-300 border border-romantic-100;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f43f5e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e11d48;
}

/* Prose Styling for Blog Posts */
.prose {
    max-width: 65ch;
}

.prose h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.prose h3 {
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    font-size: 1.5rem;
    font-weight: 600;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    line-height: 1.75;
}

.prose strong {
    font-weight: 600;
    color: #1f2937;
}

.prose a {
    color: #f43f5e;
    text-decoration: underline;
    font-weight: 500;
}

.prose a:hover {
    color: #e11d48;
}

.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Utility Classes */
.text-balance {
    text-wrap: balance;
}

/* Focus Styles */
a:focus, button:focus {
    outline: 2px solid #f43f5e;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}
