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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo Stilleri */
.logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.logo {
    max-width: 250px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: none;
}

.logo.show {
    display: block;
}

.logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder.hide {
    display: none;
}

/* Ana İçerik */
.main-content {
    position: relative;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2d8659 0%, #1e6b47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.grass-icon {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both, float 3s ease-in-out infinite 1.5s;
}

.description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #666;
    font-size: 1rem;
}

.contact-item svg {
    color: #2d8659;
    flex-shrink: 0;
}

/* Gerçekçi Çim Efekti */
.grass-background {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45vh;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(to top, #1e6b47 0%, #2d8659 40%, #27ae60 70%, transparent 100%);
}

.grass-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#grassBlades {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.grass-blade {
    position: absolute;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to top, 
        rgba(30, 107, 71, 0.95) 0%,
        rgba(45, 134, 89, 0.9) 20%,
        rgba(39, 174, 96, 0.85) 40%,
        rgba(46, 204, 113, 0.75) 60%,
        rgba(52, 211, 120, 0.65) 80%,
        rgba(52, 211, 120, 0.5) 100%);
    border-radius: 0 0 3px 3px;
    transform-origin: bottom center;
    box-shadow: 
        inset -1px 0 1px rgba(0, 0, 0, 0.25),
        inset 1px 0 1px rgba(255, 255, 255, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.15),
        0 0 1px rgba(0, 0, 0, 0.1);
    animation: grassSway 3s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 2% 100%);
}

.grass-blade::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: linear-gradient(to bottom, 
        rgba(52, 211, 120, 0.8),
        rgba(46, 204, 113, 0.9),
        rgba(39, 174, 96, 0.85));
    border-radius: 50% 50% 0 0;
    clip-path: ellipse(70% 50% at 50% 50%);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.grass-blade::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 30%;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    border-radius: inherit;
}

.grass-blade-thin {
    width: 2px;
    opacity: 0.7;
}

.grass-blade-thick {
    width: 4px;
    opacity: 0.95;
}

.grass-blade-tall {
    animation-duration: 4s;
}

.grass-blade-short {
    animation-duration: 2.5s;
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes grassSway {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(-2deg) translateX(-1px);
    }
    50% {
        transform: rotate(0deg) translateX(0);
    }
    75% {
        transform: rotate(2deg) translateX(1px);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo {
        max-width: 200px;
    }

    .grass-icon {
        margin: 30px 0;
    }

    .grass-icon svg {
        width: 100px;
        height: 100px;
    }
}

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

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .grass-background {
        height: 35vh;
    }
}

/* Çim için ek detaylar */
.grass-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: rgba(30, 107, 71, 0.6);
    z-index: 0;
}

.grass-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 211, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 90%, rgba(39, 174, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 85%, rgba(45, 134, 89, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

