/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2d4a3e;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2d4a3e;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-bar {
    background: #3a5a4a;
    padding: 0.5rem 0;
    border-bottom: 1px solid #4a6b5a;
}

.contact-info-top {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #e8f0e8;
    font-size: 0.9rem;
}

.contact-info-top span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    gap: 1rem;
}

.logo {
    text-align: center;
}

.logo h1 {
    color: #e8f0e8;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    color: #b8c8b8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.logo-phone {
    color: #8fbc8f;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #e8f0e8;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #8fbc8f;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 74, 62, 0.8), rgba(45, 74, 62, 0.8)), url('images/galeri/mezar.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-description p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description p:last-child {
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #8fbc8f;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

.cta-button:hover {
    background: #7aac7a;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d4a3e;
}

/* Service Detail Pages */
.service-detail {
    margin-top: 0;
    background: #f0f4f0;
    min-height: 100vh;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.service-header h1 {
    font-size: 2.5rem;
    color: #2d4a3e;
    margin-bottom: 1rem;
}

.service-header p {
    font-size: 1.2rem;
    color: #5a7a5a;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-info h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
}

.service-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #d4e6d4;
    position: relative;
    padding-left: 1.5rem;
}

.service-info li:before {
    content: "✓";
    color: #8fbc8f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-gallery h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
}

.contact-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
}

.contact-section p {
    margin-bottom: 1.5rem;
    color: #5a7a5a;
}

/* Services */
.services {
    background: #f0f4f0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #2d4a3e;
    border: 2px solid #e8f0e8;
    cursor: pointer;
}

.service-card:hover {
    border-color: #8fbc8f;
    background: #f8fcf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #2d4a3e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #5a7a5a;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    background: #e8f4e8;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8fbc8f;
}

.pricing-note p {
    color: #2d4a3e;
    font-size: 1.1rem;
    margin: 0;
}

/* Gallery */
.gallery {
    background: #f0f4f0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    background: white;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-code {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8fbc8f;
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.placeholder {
    width: 100%;
    height: 100%;
    background: #d4e6d4;
    display: none;
    align-items: center;
    justify-content: center;
    color: #5a7a5a;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
}

/* Contact */
.contact {
    background: #f0f4f0;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    color: #2d4a3e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background: #3498db;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #2980b9;
}

/* Footer */
.footer {
    background: #2d4a3e;
    color: #e8f0e8;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: relative;
    }
    
    .contact-info-top {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    
    .logo-phone {
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.5rem;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-detail {
        margin-top: 0;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-item img {
        height: 240px;
    }
    
    .gallery-code {
        font-size: 1.1rem;
        padding: 0.7rem;
    }
} 