/* Genel Stiller */
:root {
    --primary-color: #00a0e3;
    --secondary-color: #2ecc71;
    --text-color: #333;
    --light-bg: #f9f9f9;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar Stilleri */
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 2rem;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

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

/* Hero Section Stilleri */
.hero {
    height: 100vh;
    padding-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://kapadokyadent.com/wp-content/uploads/2020/11/jOFhPzTCPw.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
}

/* Services Section Stilleri */
.services {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.service-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?q=80&w=1974&auto=format&fit=crop');
}

.service-card:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1445527815219-ecbfec67492e?q=80&w=2070&auto=format&fit=crop');
}

.service-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?q=80&w=2070&auto=format&fit=crop');
}

.service-card i,
.service-card h3,
.service-card p {
    position: relative;
    z-index: 1;
    margin-top: 160px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
} 

/* Footer Stilleri */
footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3,
.footer-social h3,
.footer-map h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-map iframe {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-map {
        order: -1;
    }
    
    .social-links {
        justify-content: center;
    }
} 

/* Navbar Stilleri */
.navbar .logo img {
    content: url('https://img.freepik.com/premium-vector/dental-logo-template_8163-121.jpg');
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo {
    max-width: 200px;
    display: flex;
    align-items: center;
} 

/* Hizmetler Sayfası Stilleri */
.page-content {
    padding: 120px 5% 5rem;
    background: var(--light-bg);
}

.page-content h1 {
    text-align: center;
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

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

.service-item {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 40%;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
    width: 60%;
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.service-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-info ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.service-info ul li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: -1.5rem;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .service-item {
        flex-direction: column !important;
    }
    
    .service-item img {
        width: 100%;
        height: 200px;
    }
    
    .service-info {
        width: 100%;
    }
} 

/* Hakkımızda Sayfası Stilleri */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-intro {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-intro img {
    width: 50%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission, .vision {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member .speciality {
    color: var(--secondary-color);
    font-style: italic;
}

.clinic-features {
    text-align: center;
}

.clinic-features h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .about-intro {
        flex-direction: column;
    }

    .about-intro img {
        width: 100%;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }
} 

/* Yorumlar Sayfası Stilleri */
.reviews-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.reviewer-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    line-height: 1.6;
    color: #444;
}

/* Yorum Formu Stilleri */
.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.rating-select {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
}

.rating-select i:hover,
.rating-select i.active {
    color: #ffd700;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header img {
        width: 50px;
        height: 50px;
    }
} 

/* İletişim Sayfası Stilleri */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section {
        padding: 2rem;
    }
} 