/* Beyefendy Salon System - Main Stylesheet */
/* Tailwind CSS will be included via CDN or build process */

/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
    --color-charcoal: #1a1a1b;
    --color-charcoal-dark: #0f0f10;
    --color-gold: #C5A059;
    --color-gold-light: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header / logo wordmark: logodaki Beyefendy yazısı — serif, hafif italic */
.brand-wordmark {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.animate-gradient {
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}

/* Gold Text Effect */
.gold-text {
    background: linear-gradient(135deg, #C5A059 0%, #D4AF37 50%, #C5A059 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

/* Glow Effects */
.glow-gold {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3),
                0 0 40px rgba(197, 160, 89, 0.2),
                0 0 60px rgba(197, 160, 89, 0.1);
}

.glow-gold-hover:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.5),
                0 0 60px rgba(197, 160, 89, 0.3),
                0 0 90px rgba(197, 160, 89, 0.2);
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(197, 160, 89, 0.3);
    border-top: 3px solid var(--color-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="time"],
textarea,
select {
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Better touch targets on mobile */
    button, a, input, select, textarea {
        min-height: 44px;
    }
    
    /* Card spacing on mobile */
    .card, [class*="rounded-lg"] {
        margin-bottom: 1rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}
