/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header ve Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.logo {
    padding: 0.25rem 0;
}

.logo img {
    height: 100px;
    width: auto;
}

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

.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #c4a777;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/anasayfa-background.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    background-color: #c4a777;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b39363;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.footer-section h4:first-child {
    margin-top: 0;
}

.footer-section p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer-section i {
    margin-right: 0.5rem;
    width: 20px;
}

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

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

.social-links a:hover {
    color: #b39363;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

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

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/page-header-bg.jpeg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 100px;
}

.page-header h1 {
    font-size: 2.5rem;
    text-align: center;
}

/* Ekip Üyeleri */
.team {
    padding: 5rem 5%;
}

.team-members {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h3 {
    margin: 0 0 5px;
    color: #333;
    font-size: 1.2em;
}

.member-info .title {
    color: #666;
    margin: 0 0 10px;
    font-size: 0.9em;
}

.member-info .specialties {
    color: #888;
    font-size: 0.85em;
    line-height: 1.4;
    margin: 0;
}

/* Faaliyet Alanları */
.practice-areas {
    padding: 5rem 5%;
}

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

.practice-area {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.practice-area:hover {
    transform: translateY(-5px);
}

.practice-area i {
    font-size: 2.5rem;
    color: #c4a777;
    margin-bottom: 1rem;
}

.practice-area h3 {
    margin-bottom: 1rem;
}

/* İletişim Sayfası */
.contact {
    padding: 5rem 5%;
}

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

.contact-info {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #c4a777;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-form {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #c4a777;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #b39363;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Hakkımızda Sayfası */
.about-content {
    padding: 5rem 5%;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #333;
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text ul {
    list-style-type: none;
    padding: 0;
}

.about-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li:before {
    content: "•";
    color: #c4a777;
    position: absolute;
    left: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .page-header {
        height: 200px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .team-grid,
    .practice-grid {
        grid-template-columns: 1fr;
    }
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #c4a777;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn {
    background-color: #c4a777;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b39363;
}

.map-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.social-media {
    margin-top: 2rem;
}

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

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

.social-links a:hover {
    color: #b39363;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .map {
        height: 300px;
    }
}

/* Avukat Profil Sayfası */
.lawyer-profile {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-info {
    padding: 1rem 0;
}

.profile-info h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.profile-info .title {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-section h3 {
    color: #c4a777;
    margin-bottom: 1rem;
}

.profile-section ul {
    list-style: none;
    padding: 0;
}

.profile-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.profile-section ul li:before {
    content: "•";
    color: #c4a777;
    position: absolute;
    left: 0;
}

.lawyer-social {
    margin-top: 1rem;
}

.lawyer-social a {
    color: #c4a777;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.lawyer-social a:hover {
    color: #b39363;
}

/* Ekip üyesi kartı link stili */
a.team-member {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

a.team-member:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Özel sayfa başlıkları */
.about-header, .team-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.about-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hakkimizda-background.jpeg');
}

.team-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/ekibimiz-background.jpeg');
}

.contact-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/iletisim-background.jpeg');
}

.practice-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/faaliyet-background.jpeg');
}

.articles-header {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/makaleler-background.jpeg');
}

/* İkon renkleri */
.fas, .fab {
    color: #c4a777;
}

.feature-card i {
    color: #c4a777;
}

.practice-area i {
    color: #c4a777;
}

.info-item i {
    color: #c4a777;
}

.profile-section i {
    color: #c4a777;
}

.footer-section i {
    color: #c4a777;
}

.social-links a {
    color: #c4a777;
}

.social-links a:hover {
    color: #b39363;
}

.lawyer-social a {
    color: #c4a777;
}

.lawyer-social a:hover {
    color: #b39363;
}

/* Makaleler Sayfası */
.articles {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.articles-container {
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.article-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

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

.article-card h2 {
    color: #333;
    margin-bottom: 1rem;
}

.article-card p {
    color: #666;
    line-height: 1.6;
} 