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

:root {
    --primary-color: #000000;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    opacity: 0;
    /* Mobil kayma sorununu önle */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y; /* Sadece dikey scroll'a izin ver */
}

/* Custom Cursor - Removed, using default cursor */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom-color: var(--border-color);
}

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

.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.menu-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Featured Slider Section */
.featured-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-layer-1 {
    will-change: transform;
}

.parallax-layer-2 {
    will-change: transform;
}

.featured-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: transform;
}

.featured-slide.active {
    opacity: 1;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-color);
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-color);
}

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

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--primary-color);
    margin: 30px auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    padding: 0;
}

.service-preview-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.service-preview-item .service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-preview-item:hover .service-image {
    transform: scale(1.05);
}

.service-preview-item .service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--bg-color);
}

.service-preview-item h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-preview-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-link {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.service-link:hover {
    opacity: 0.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.service-card {
    background: var(--bg-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .service-image {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card .service-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card .service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}


/* Divider Section */
.divider-section {
    height: 1px;
    background: var(--border-color);
    margin: 80px 0;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-color);
}

.featured-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-link {
    display: inline-block;
    margin-top: 30px;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.about-link:hover {
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f8f8;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    text-align: center;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
}

.testimonial-item.active {
    position: relative;
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-item cite {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-color);
}

.cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cta-button {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Galleries Section */
.galleries {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.galleries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-horizontal {
    aspect-ratio: 4/3;
}

.gallery-item-vertical {
    aspect-ratio: 3/4;
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f8f8;
    text-align: center;
}

.whatsapp-contact {
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 30px;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

.whatsapp-info {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

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

.submit-btn {
    padding: 15px 50px;
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 20px 30px;
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 400px;
    font-size: 14px;
    line-height: 1.6;
}

.notification-success {
    background: #4caf50;
}

.notification-error {
    background: #f44336;
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-heading {
        font-size: 40px;
    }

    .section-subheading {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galleries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-color);
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-heading {
        font-size: 32px;
    }

    .section-subheading {
        font-size: 28px;
    }

    .service-preview-item {
        grid-template-columns: 1fr;
    }

    .service-preview-item .service-content {
        padding: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .galleries-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-item blockquote {
        font-size: 22px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-subheading {
        font-size: 24px;
    }

    .service-preview-item .service-content h2 {
        font-size: 36px;
    }

    .service-card .service-content h2 {
        font-size: 28px;
    }

    .testimonial-item blockquote {
        font-size: 18px;
    }

    .cta-heading {
        font-size: 24px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    overscroll-behavior: contain; /* Mobil kayma sorununu önle */
}

/* Body scroll lock when modal is open */
body.lightbox-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    /* Mobil kayma sorununu önle */
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

/* Mobil cihazlarda lightbox için ek düzenlemeler */
@media (max-width: 768px) {
    .lightbox-modal {
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin: auto;
    display: block;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ccc;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Admin Panel */
.admin-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    overflow-y: auto;
    animation: slideInRight 0.3s;
}

.admin-panel.active {
    display: block;
}

.admin-panel-header {
    padding: 20px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.admin-panel-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.admin-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.admin-close:hover {
    opacity: 0.7;
}

.admin-panel-content {
    padding: 20px;
}

.admin-upload-section h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: var(--text-color);
}

.admin-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.admin-upload-item {
    position: relative;
    aspect-ratio: 1;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    background: #f8f8f8;
}

.admin-upload-item:hover {
    border-color: var(--primary-color);
}

.admin-upload-item input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.admin-upload-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.admin-upload-item img.active {
    display: block;
}

.admin-upload-item .upload-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.admin-upload-item.has-image .upload-placeholder {
    display: none;
}

.admin-save-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.admin-save-btn:hover {
    background: #333;
}

.admin-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s, background 0.3s;
}

.admin-toggle-btn:hover {
    transform: scale(1.1);
    background: #333;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Gallery Item Clickable */
.gallery-item {
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    transition: transform 0.3s;
}

/* Video Upload Section */
.admin-video-upload {
    margin-bottom: 30px;
}

.admin-upload-btn {
    width: 100%;
    padding: 12px;
    background: #f0f0f0;
    border: 2px dashed var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s;
    margin-bottom: 15px;
}

.admin-upload-btn:hover {
    background: #e8e8e8;
    border-color: var(--primary-color);
}

.admin-video-preview {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    display: none;
}

.admin-video-preview.active {
    display: block;
}

.admin-video-preview video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Crop Modal */
.crop-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.crop-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: auto;
    animation: zoomIn 0.3s;
}

.crop-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crop-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.crop-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-color);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.crop-close:hover {
    opacity: 0.7;
}

.crop-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    background: #1a1a1a;
    position: relative;
}

.crop-wrapper {
    position: relative;
    display: inline-block;
}

#cropCanvas {
    max-width: 100%;
    max-height: 70vh;
    border: 2px solid #444;
    cursor: move;
    display: block;
}

.crop-guide {
    position: absolute;
    border: 3px dashed #fff;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
}

.crop-controls {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.crop-cancel-btn,
.crop-save-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.crop-cancel-btn {
    background: #f0f0f0;
    color: var(--text-color);
}

.crop-cancel-btn:hover {
    background: #e0e0e0;
}

.crop-save-btn {
    background: var(--primary-color);
    color: #fff;
}

.crop-save-btn:hover {
    background: #333;
}

