/* pages.css - Page specific styles */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 120px; /* Aşağı kaydır butonu için alan */
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 140px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Açık tema — sıcak krem altın huzmeleri */
    background:
        /* Sol üst altın ışık huzmesi */
        radial-gradient(ellipse 80% 60% at -10% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
        /* Sağ alt sıcak bej tonu */
        radial-gradient(ellipse 70% 70% at 110% 90%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        /* Merkez yumuşak halo */
        radial-gradient(ellipse 100% 60% at 50% 50%, rgba(240, 230, 200, 0.5) 0%, transparent 70%),
        /* Taban gradient — krem */
        linear-gradient(160deg, #FAF8F3 0%, #F5F0E6 40%, #F0EAD8 100%);
    z-index: -2;
}

/* Büyük parlayan orb'lar — arka planda sürüklenen ışık küreleri */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: orbFloat1 18s ease-in-out infinite;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    animation: orbFloat2 22s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, 30px) scale(1.05); }
    66%       { transform: translate(-20px, 50px) scale(0.97); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-50px, -30px) scale(1.08); }
    70%       { transform: translate(20px, -60px) scale(0.95); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.6;
    animation: gridMove 25s linear infinite;
    /* Köşelerden solan grid efekti */
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes gridMove {
    0%   { transform: translateY(0) translateX(0); }
    100% { transform: translateY(60px) translateX(0); }
}

/* Yıldız / gürültü dokusu katmanı */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(circle, rgba(201,162,39,0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(201,162,39,0.1) 1px, transparent 1px);
    background-size: 120px 120px, 200px 200px;
    background-position: 0 0, 60px 80px;
    opacity: 0.3;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 2px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold-primary), 0 0 12px rgba(212, 175, 55, 0.4);
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0%   { transform: translateY(0) translateX(0);  opacity: 0; }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(15px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.875rem;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 10px rgba(201, 162, 39, 0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .hero-scroll {
        bottom: 20px;
        transform: translateX(-50%) scale(0.8);
    }
}

.hero-scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Stats Section */
.stats-section {
    padding: var(--space-8) 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .stats-section {
        margin-top: 0;
        padding-top: var(--space-4);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    background: var(--bg-surface-solid);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: var(--space-6);
    }
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .stat-card:not(:last-child)::after {
        right: auto;
        left: 20%;
        top: auto;
        bottom: -16px;
        height: 1px;
        width: 60%;
    }
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: var(--space-2);
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-6);
}

/* Gallery Preview */
.gallery-preview {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    padding-bottom: var(--space-4);
    scroll-snap-type: x mandatory;
}

.gallery-preview::-webkit-scrollbar {
    height: 8px;
}

.gallery-preview-item {
    flex: 0 0 300px;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
}

.gallery-overlay p {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

/* Testimonials */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: var(--space-4) 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px;
    background: linear-gradient(145deg, var(--bg-surface-solid), var(--bg-base));
}

@media (max-width: 1024px) {
    .testimonial-card { flex: 0 0 calc(50% - 12px); margin-right: 24px; }
}

@media (max-width: 640px) {
    .testimonial-card { flex: 0 0 100%; margin-right: 0; }
}

.testimonial-quote {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    min-height: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: var(--space-4);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-rating {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.testimonials-nav button {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonials-nav button:hover {
    background: var(--gold-primary);
    color: var(--bg-base);
}

/* CTA Section */
.cta-section {
    background:
        linear-gradient(rgba(245, 240, 230, 0.95), rgba(245, 240, 230, 0.95)),
        center/cover;
    padding: var(--space-24) 0;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.qr-section {
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.qr-code {
    background: #fff;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.qr-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}



/* ============================================
   PAGE HEADER (FIXED NAVBAR SPACING & GRADIENT)
   ============================================ */
.page-header {
    padding-top: 140px;
    padding-bottom: var(--space-8);
    text-align: center;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-2);
}

.page-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-base);
}

/* Breadcrumb Styles */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb span:last-child {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ============================================
   APPOINTMENT PAGE LAYOUT
   ============================================ */
.appointment-page {
    padding-top: var(--space-12);
}

.appointment-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.calendar-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--glass-shadow);
}

.appointment-form-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ============================================
   APPOINTMENT STEPS (INDICATORS)
   ============================================ */
.appointment-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    position: relative;
    padding: 0 var(--space-2);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    z-index: 2;
    transition: var(--transition-base);
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface-solid);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    transition: var(--transition-base);
}

.step-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

/* Step States */
.step-item.active .step-number {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.step-item.active span {
    color: var(--gold-primary);
}

.step-item.completed .step-number {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    color: var(--bg-base);
}

.step-item.completed span {
    color: var(--text-primary);
}

/* Connectors */
.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 -15px;
    transform: translateY(-13px);
    z-index: 1;
    transition: var(--transition-base);
}

.step-connector.active {
    background: var(--gold-primary);
}

/* ============================================
   PUBLIC FULLCALENDAR LIGHT THEME OVERRIDES
   ============================================ */
.calendar-wrapper .fc {
    --fc-border-color: rgba(0, 0, 0, 0.08);
    --fc-page-bg-color: transparent;
    --fc-today-bg-color: rgba(201, 162, 39, 0.08);
    background: transparent;
}

.calendar-wrapper .fc-theme-standard td, 
.calendar-wrapper .fc-theme-standard th {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.calendar-wrapper .fc .fc-col-header-cell {
    background: rgba(0, 0, 0, 0.04) !important;
    padding: var(--space-3) 0 !important;
}

.calendar-wrapper .fc .fc-col-header-cell-cushion {
    color: var(--gold-dark) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: 0.5px;
}

.calendar-wrapper .fc .fc-daygrid-day-number {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--text-sm);
    padding: var(--space-2);
}

.calendar-wrapper .fc .fc-toolbar-title {
    color: var(--gold-primary) !important;
    font-family: var(--font-serif);
    font-size: var(--text-lg) !important;
    font-weight: 700;
}

.calendar-wrapper .fc .fc-button {
    background-color: #FFFFFF !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 6px 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.calendar-wrapper .fc .fc-button:hover {
    border-color: var(--gold-primary) !important;
    background-color: rgba(212, 175, 55, 0.1) !important;
    color: var(--gold-primary) !important;
}

.calendar-wrapper .fc-day-disabled {
    background-color: rgba(0, 0, 0, 0.03) !important;
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-wrapper .fc-day-disabled .fc-daygrid-day-number {
    color: var(--text-muted) !important;
}

/* Tatil günleri: kırmızımsı arka plan ile belirtilir */
.calendar-wrapper .fc-day-holiday {
    background-color: rgba(239, 68, 68, 0.06) !important;
    opacity: 0.55;
    cursor: not-allowed;
    position: relative;
}

.calendar-wrapper .fc-day-holiday .fc-daygrid-day-number {
    color: rgba(239, 68, 68, 0.7) !important;
    text-decoration: line-through;
}

.calendar-wrapper .fc-daygrid-day {
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.calendar-wrapper .fc-daygrid-day:not(.fc-day-disabled):not(.fc-day-holiday):hover {
    background-color: rgba(212, 175, 55, 0.06);
}


/* ============================================
   RESPONSIVE DESIGN FOR APPOINTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .appointment-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ============================================
   ABOUT PAGE STYLE DEFINITIONS
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    background: rgba(250, 248, 243, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-bio p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    line-height: 1.7;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.skill-tag {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gold-dark);
    transition: var(--transition-fast);
}

.skill-tag:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: var(--gold-primary);
    color: var(--gold-dark);
    transform: translateY(-1px);
}

/* Work Hours Table Styling */
.work-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.work-hours-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.work-hours-table tr:last-child {
    border-bottom: none;
}

.work-hours-table td {
    padding: var(--space-3) 0;
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.work-hours-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.work-hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--gold-primary);
}

.work-hours-table tr.closed td {
    color: var(--text-muted);
}

.work-hours-table tr.closed td:last-child {
    color: var(--error);
}

/* Map Container Styling */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

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

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* ============================================
   GALLERY PAGE STYLE DEFINITIONS
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-12);
}

.filter-btn {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.filter-btn.active {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    color: var(--bg-base);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: var(--space-6);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

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

/* Gallery Overlay (Fades in on hover) */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-overlay h4 {
    color: #fff;
    margin-bottom: var(--space-1);
    font-size: var(--text-lg);
    font-family: var(--font-sans);
    font-weight: 600;
}

.gallery-overlay p {
    color: var(--gold-primary);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
    font-weight: 600;
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    gap: var(--space-2);
}

.gallery-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.gallery-action-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.gallery-action-btn.liked {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--error);
    color: var(--error);
}

/* ============================================
   LIGHTBOX MODAL (PREMIUM VIEW)
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-info {
    margin-top: var(--space-4);
    text-align: center;
    color: #fff;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: var(--space-8);
    right: var(--space-8);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--error);
    transform: scale(1.1);
}

/* ============================================
   INTERACTIVE STAR RATING STYLES
   ============================================ */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: var(--space-2);
    font-size: 1.8rem;
    margin-top: var(--space-2);
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.star-rating label:hover {
    transform: scale(1.15);
}

/* Color checked stars and their preceding labels in row-reverse */
.star-rating input:checked ~ label {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Color stars on hover */
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--gold-light) !important;
}




