/* Safa Sanat Atolyesi - Ana Stil Dosyasi */

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

:root {
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --cream: #f5f0e8;
    --text: #333;
    --text-light: #666;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 150px;
    height: auto;
    animation: pulse 1.5s infinite;
}

.preloader-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s;
    background: rgba(26, 26, 26, 0.85);
}

header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    background: transparent;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 3px;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
}

.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    transition: opacity 0.3s ease;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-button,
.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s;
}

.hero-button:hover,
.hero-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.slider-progress {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.progress-item {
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s;
}

.progress-item.active::after {
    animation: progressBar 6s linear forwards;
}

@keyframes progressBar {
    from { width: 0; }
    to { width: 100%; }
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Section Styles */
section {
    padding: 120px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--dark);
    font-weight: 600;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto 0;
}

/* About Section */
.about {
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.about-badge h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* Workshops Section */
.workshops {
    background: var(--dark);
    color: white;
}

.workshops .section-title {
    color: white;
}

.workshop-category {
    margin-bottom: 80px;
}

.workshop-category:last-child {
    margin-bottom: 0;
}

.workshop-category:first-child {
    margin-top: 40px;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    padding: 0 40px 20px;
    border-bottom: 3px solid var(--gold);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-title i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.workshop-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.workshop-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.6s;
}

.workshop-item:hover img {
    filter: grayscale(0%) brightness(0.7);
    transform: scale(1.1);
}

.workshop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.workshop-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    position: absolute;
    top: 30px;
    left: 30px;
}

.workshop-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.workshop-item:hover .workshop-overlay h3 {
    transform: translateY(0);
}

.workshop-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.1s;
    display: block;
}

.workshop-item:hover .workshop-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Workshop Link Styles */
a.workshop-item.workshop-link {
    text-decoration: none;
    display: block;
}

.workshop-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s;
}

.workshop-item:hover .workshop-more {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.4);
}

.workshop-more i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.workshop-item:hover .workshop-more i {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery {
    background: var(--cream);
}

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

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

.gallery-tab {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.gallery-tab.active,
.gallery-tab:hover {
    color: var(--dark);
}

.gallery-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.gallery-tab.active::after {
    width: 100%;
}

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

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

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.gallery-item-overlay span {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-item.hidden-item {
    display: none;
}

.load-more-container {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
}

.btn-load-more {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-load-more:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.25);
}

.btn-load-more i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    background: var(--gold);
    padding: 80px 40px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: var(--dark);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-item i {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-item div h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-item div p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 50px;
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

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

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

.contact-form button {
    width: 100%;
    padding: 20px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: var(--gold-light);
}

/* Footer */
footer {
    background: var(--darker);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 3px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 50px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    padding: 20px;
    z-index: 2001;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 2001;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.8rem;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 85%;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

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

/* Responsive */
@media (max-width: 1200px) {
    .workshop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .workshop-item:nth-child(4),
    .workshop-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image::before {
        display: none;
    }

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

    .workshop-item {
        height: 350px;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 20px;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 5px;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
    }

    .slider-progress {
        bottom: 60px;
    }

    .progress-item {
        width: 50px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .hero-content {
        top: 46%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .about-container {
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .about-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -20px;
    }

    .about-badge h3 {
        font-size: 2.5rem;
    }

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

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

    .workshop-item {
        height: 300px;
    }

    .workshop-overlay {
        padding: 30px 20px;
    }

    .workshop-overlay h3 {
        font-size: 1.5rem;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .gallery-tabs {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .preloader-logo {
        width: 120px;
    }

    .preloader-text {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 0.75rem;
    }
}

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

    .hero-logo {
        width: 120px;
    }

    .hero-content {
        top: 44%;
    }

    .slider-progress {
        bottom: 55px;
    }

    .scroll-indicator {
        bottom: 12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .workshop-overlay h3 {
        font-size: 1.3rem;
    }

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

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .preloader-logo {
        width: 100px;
    }

    .preloader-text {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}
