/* ============================================
   MODERN MINIMAL THEME
   Şık, minimal, modern tasarım
   ============================================ */

/* Tema Renkleri */
:root {
    --minimal-primary: #2c3e50;
    --minimal-secondary: #3498db;
    --minimal-accent: #e74c3c;
    --minimal-light: #ecf0f1;
    --minimal-white: #ffffff;
    --minimal-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Body Background */
body.minimal-theme {
    background: var(--minimal-white);
    color: var(--minimal-primary);
}

/* Fullscreen Sections */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.minimal-hero {
    background: var(--minimal-primary);
    color: var(--minimal-white);
    text-align: center;
}

.minimal-hero-content {
    max-width: 800px;
    padding: 2rem;
}

.minimal-hero h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.minimal-hero .highlight {
    font-weight: 700;
    background: linear-gradient(135deg, var(--minimal-secondary), var(--minimal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.minimal-hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 2rem;
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Image Section */
.minimal-image-section {
    background: var(--minimal-light);
}

.minimal-image-container {
    max-width: 1000px;
    position: relative;
}

.minimal-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.minimal-caption {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--minimal-white);
    padding: 2rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.minimal-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.minimal-caption p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Text Section */
.minimal-text-section {
    background: var(--minimal-white);
    padding: 8rem 0;
}

.minimal-text-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.minimal-text-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.minimal-text-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.minimal-divider {
    width: 60px;
    height: 3px;
    background: var(--minimal-secondary);
    margin: 3rem auto;
}

/* Gallery Grid */
.minimal-gallery-section {
    background: var(--minimal-light);
    padding: 5rem 0;
}

.minimal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.minimal-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.minimal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.minimal-gallery-item:hover img {
    transform: scale(1.1);
}

.minimal-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.minimal-gallery-item:hover .minimal-gallery-overlay {
    opacity: 1;
}

.minimal-gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Quote Section */
.minimal-quote-section {
    background: var(--minimal-gradient);
    color: white;
    text-align: center;
}

.minimal-quote {
    max-width: 800px;
    padding: 2rem;
}

.minimal-quote blockquote {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.minimal-quote cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.25rem;
    font-style: normal;
    opacity: 0.9;
}

/* Stats Section */
.minimal-stats-section {
    background: var(--minimal-white);
    padding: 5rem 0;
}

.minimal-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.minimal-stat {
    text-align: center;
}

.minimal-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--minimal-secondary);
    line-height: 1;
}

.minimal-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid currentColor;
}

.square {
    width: 200px;
    height: 200px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid currentColor;
}

/* Footer */
.minimal-footer {
    background: var(--minimal-primary);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.minimal-footer h2 {
    color: white;
    font-weight: 300;
    font-size: 2rem;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    opacity: 0.7;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .minimal-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .minimal-hero h1 {
        font-size: 3rem;
    }

    .minimal-hero p {
        font-size: 1.25rem;
    }

    .minimal-image-container img {
        height: 400px;
    }

    .minimal-caption {
        position: static;
        margin-top: 2rem;
    }

    .minimal-text-content h2 {
        font-size: 2rem;
    }

    .minimal-text-content p {
        font-size: 1.125rem;
    }

    .minimal-quote blockquote {
        font-size: 1.75rem;
    }

    .minimal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .minimal-hero h1 {
        font-size: 2rem;
    }

    .minimal-hero p {
        font-size: 1rem;
    }

    .minimal-image-container img {
        height: 300px;
    }

    .minimal-text-content h2 {
        font-size: 1.75rem;
    }

    .minimal-quote blockquote {
        font-size: 1.5rem;
    }

    .minimal-stat-number {
        font-size: 3rem;
    }

    .minimal-stats-grid {
        grid-template-columns: 1fr;
    }
}