/* style.css - Ultra Modern Premium Tasarım */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --success: #10b981;
    --danger: #ef4444;
    --info: #3b82f6;
    --dark: #1f2937;
    --light: #f9fafb;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    perspective: 1000px;
    
    /* YENİ FOTOĞRAF ARKA PLANI */
    background: url('img/adana.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white; /* Resim üzerine yazı rengini beyaz yapalım */
}

/* FOTOĞRAF ÜZERİNE KOYU OVERLAY KATMANI TAMAMEN KALDIRILDI */
body::before {
    content: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

/* Navigation/Top Bar - Glassmorphism Style */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    margin-bottom: -100px;
}

.admin-buttons {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 20px;
    /* Glassmorphism arka planında blur kalmalı (butonlar üzerinde) */
    background: rgba(255, 255, 255, 0.25); /* Opaklık hafifçe artırıldı */
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.4); /* Border belirginleştirildi */
}

/* Header with Glassmorphism */
header {
    text-align: center;
    color: white;
    padding: 140px 20px 80px;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
    position: relative;
}

/* Header'daki parlama efekti kaldırıldı */
header::before {
    content: none; 
}

header h1 {
    font-size: 80px;
    margin-bottom: 20px;
    /* Açık zemin üzerinde kontrastı artırmak için text-shadow rengi koyulaştırıldı */
    text-shadow: 0 0 10px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.5); 
    letter-spacing: -3px;
    font-weight: 900; 
    position: relative;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

header p {
    font-size: 26px; 
    opacity: 0.98;
    text-shadow: 0 4px 8px rgba(0,0,0,0.8);
    font-weight: 400; 
    letter-spacing: 1px;
    position: relative;
}

/* Premium Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px; 
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 10px;
}

/* Projects Grid with 3D Transform */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 0px;
    margin-bottom: 80px;
    perspective: 1000px;
}

/* Premium Project Cards with Glassmorphism */
.project-card {
    background: rgba(255, 255, 255, 0.9); /* Şeffaflık biraz artırıldı */
    backdrop-filter: blur(20px);
    border-radius: 24px; 
    padding: 35px; 
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.3), 
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.5);
    transform-style: preserve-3d;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) rotateX(1deg) rotateY(1deg) scale(1.01); 
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.8),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Floating Icon Animation */
.project-icon {
    font-size: 70px; 
    text-align: center;
    margin-bottom: 25px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
    transform-style: preserve-3d;
}

.project-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    color: #1f2937;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-desc {
    color: #6b7280;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Admin Controls with Backdrop Blur */
.admin-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.project-card:hover .admin-controls {
    opacity: 1;
    transform: translateY(0);
}

.admin-controls button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-controls button:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Loading with Premium Animation */
.loading {
    text-align: center;
    padding: 60px; 
    color: white;
    font-size: 20px;
    animation: pulse 2s infinite;
    font-weight: 600;
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

/* Modal with Glassmorphism */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(40px);
    padding: 40px; 
    border-radius: 28px; 
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.8);
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; 
    padding-bottom: 20px; 
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #667eea, #764ba2) border-box;
    border-image-slice: 1;
}

.modal-header h2 {
    font-size: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.close-btn {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: none;
    font-size: 24px; 
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.close-btn:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

/* Premium Form Styles */
.form-group {
    margin-bottom: 20px; 
}

.form-group label {
    display: block;
    margin-bottom: 8px; 
    font-weight: 700;
    color: #374151;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px; 
    border: 2px solid #e5e7eb;
    border-radius: 12px; 
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Upload Area with 3D Effect */
.upload-area {
    border: 3px dashed #667eea;
    border-radius: 16px; 
    padding: 40px; 
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    margin: 25px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.upload-area:hover::before {
    width: 300px;
    height: 300px;
}

.upload-area:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-color: #764ba2;
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.upload-area.dragging {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-color: #4f46e5;
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

/* Screenshots Grid with Masonry Effect */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.screenshot-item {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 14px; 
    padding: 10px; 
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.screenshot-item:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-4px) scale(1.01);
}

.screenshot-item img {
    width: 100%;
    height: 100px; 
    object-fit: cover;
    border-radius: 8px; 
    cursor: pointer;
    transition: transform 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.03);
}

.screenshot-item p {
    margin-top: 8px; 
    font-size: 12px; 
    text-align: center;
    color: #4b5563;
    font-weight: 600;
}

.screenshot-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 6px 10px; 
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    border-radius: 8px; 
    cursor: pointer;
    font-size: 12px; 
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.screenshot-delete:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
}

/* Feature & Tech Lists */
.feature-list, .tech-list {
    list-style: none;
    margin-top: 15px;
}

.feature-item, .tech-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.feature-item input, .tech-item input {
    flex: 1;
}

/* Section Title with Gradient */
.section-title {
    font-size: 20px; 
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0 15px 0; 
    padding-bottom: 10px; 
    border-bottom: 2px solid transparent; 
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #667eea, #764ba2) border-box;
    border-image-slice: 1;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Premium Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% { 
        transform: translateY(-8px) rotate(-1deg); 
    }
    75% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Modal Content Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

/* Project Detail Content */
.detail-section {
    margin: 30px 0;
}

.detail-section h3 {
    font-size: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.feature-card {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 14px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    color: #10b981;
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.screenshot-detail-item {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.screenshot-detail-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.screenshot-detail-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.screenshot-detail-item p {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Lightbox Gallery */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: fixed;
    top: 20px; 
    right: 20px; 
    width: 45px; 
    height: 45px; 
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.9);
    transform: rotate(90deg) scale(1.1);
    border-color: #ef4444;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; 
    height: 50px; 
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(102, 126, 234, 0.9);
    border-color: #667eea;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: fixed;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px; 
    border-radius: 25px; 
    font-size: 15px; 
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2001;
}

.lightbox-counter {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2001;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Project Description */
.project-description {
    color: #6b7280;
    font-size: 16px; 
    line-height: 1.8; 
    margin-bottom: 30px; 
    padding: 20px; 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 14px; 
    border-left: 3px solid #667eea; 
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-nav {
        justify-content: center;
        position: static;
        margin-bottom: 0;
        padding: 20px;
    }

    header {
        padding: 80px 20px 60px;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    header h1 {
        font-size: 48px;
    }
    
    header p {
        font-size: 18px;
    }
    
    .modal-content {
        padding: 30px;
    }
    
    .admin-controls {
        opacity: 1;
        transform: translateY(0);
    }
    
    .project-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .admin-buttons {
        gap: 10px;
        padding: 8px 15px;
        border-radius: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}