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

:root {
    /* Color Palette */
    --primary: hsl(350, 78%, 21%);      /* Velvet Crimson Red */
    --primary-light: hsl(350, 78%, 30%);
    --secondary: hsl(43, 85%, 60%);     /* Warm Golden Honey */
    --secondary-dark: hsl(43, 85%, 45%);
    --dark: #0f1013;                    /* Deep Obsidian Charcoal */
    --dark-card: #16181e;               /* Charcoal for cards */
    --light: hsl(36, 33%, 97%);         /* Soft Cream */
    --light-card: #ffffff;
    --text-dark: hsl(220, 15%, 15%);
    --text-light: hsl(36, 33%, 97%);
    --text-muted: hsl(220, 10%, 82%);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout & Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(22, 24, 30, 0.75);
    --glass-blur: blur(12px);
    --glass-border: rgba(255, 255, 255, 0.06);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

header.scrolled .logo-img {
    height: 48px;
}

.brand-name {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-quick);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--secondary);
}

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

.nav-link.active {
    color: var(--secondary);
}

.btn-call-nav {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--secondary);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-call-nav:hover {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(245, 176, 39, 0.4);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 16, 19, 0.3) 0%, rgba(15, 16, 19, 0.65) 60%, rgba(15, 16, 19, 0.98) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    margin-top: 120px;
}

.hero-tagline {
    font-family: var(--font-body);
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-title span {
    font-style: italic;
    color: var(--secondary);
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(122, 29, 29, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(122, 29, 29, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 176, 39, 0.3);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--secondary);
    transform: scale(1.3);
}

/* Sections General */
section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--secondary);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About / Philosophy Section */
.about {
    background: linear-gradient(180deg, var(--dark) 0%, #121419 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    border: 3px solid var(--secondary);
    color: var(--text-light);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 200px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}

.about-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    background-color: rgba(245, 176, 39, 0.1);
    color: var(--secondary);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(245, 176, 39, 0.2);
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Interactive Menu Listino Section */
.menu-section {
    background-color: var(--dark);
}

.menu-display {
    background-color: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.menu-pages-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #0b0c0e;
}

.menu-page-img {
    max-width: 100%;
    max-height: 75vh;
    display: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.menu-page-img.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.menu-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.menu-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--secondary);
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.menu-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, #121419 0%, var(--dark) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 29, 29, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 16, 19, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-quick);
}

.lightbox-close:hover {
    color: var(--secondary);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(22, 24, 30, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

/* Services / Features */
.services {
    background-color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 176, 39, 0.3);
    box-shadow: 0 15px 35px rgba(245, 176, 39, 0.05);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(122, 29, 29, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px auto;
    border: 1px solid rgba(122, 29, 29, 0.2);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary);
    color: var(--text-light);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact & Info Section */
.contacts {
    background: linear-gradient(180deg, var(--dark) 0%, #0c0d10 100%);
    border-bottom: 1px solid var(--border-color);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-panel {
    background-color: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-premium);
}

.contact-info-panel h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background-color: rgba(245, 176, 39, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(245, 176, 39, 0.2);
}

.contact-details h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-quick);
}

.contact-details a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.05);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.social-btn svg {
    flex-shrink: 0;
}

.social-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.map-panel {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
    min-height: 400px;
    background-color: var(--dark-card);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: #08090b;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer span {
    color: var(--secondary);
}

.footer-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid, .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-badge {
        right: 0;
        bottom: -20px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #121419;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Password Protection Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f1013;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.password-card {
    background-color: var(--dark-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.password-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.password-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.password-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.password-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: var(--transition-quick);
}

.password-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(245, 176, 39, 0.2);
}

.password-btn {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.password-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.password-error {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

