/*
Theme Name: X2 Anthracite & Gold Edition
Description: Ultra-luxury medical aesthetic theme with dark mode and gold accents.
Author: Akinci
Version: 3.1
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --anthracite: #0a0a0a;
    --anthracite-light: #161616;
    --gold: #d4af37;
    --gold-light: #f9e29d;
    --gold-dark: #b8860b;
    --text-dim: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--anthracite);
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f9e29d 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Styles */

.nav-link-modern {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    position: relative;
}

.nav-link-modern:hover {
    color: var(--gold);
    font-style: italic;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link-modern:hover::after {
    width: 100%;
}

.appointment-btn-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f9e29d 50%, #b8860b 100%);
    background-size: 200% auto;
    transition: 0.5s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.appointment-btn-gradient:hover {
    background-position: right center;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.font-serif {
    font-family: 'Playfair Display', serif !important;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Glassmorphism adjustment */
.backdrop-blur-xl {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .appointment-btn-gradient {
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}


