/* Modern ve Elit Tasarım için CSS Kodları */
:root {
    --primary: #1a1a1a;
    --secondary: #c8a97e; /* Altın/bronz tonu */
    --light: #f5f5f5;
    --dark: #121212;
    --text: #333;
    --light-gray: #f9f9f9;
    --medium-gray: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', 'Montserrat', sans-serif;
}

body {
    background-color: #fff;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo h1 {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--secondary);
    left: 0;
    bottom: -5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover:after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    margin: 5px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    margin-left: 20px;
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 120px 0;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    font-weight: 400;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--secondary);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}

.section-header p {
    color: #777;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 30px;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    transition: var(--transition);
}

.service-card p {
    color: #777;
    transition: var(--transition);
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 25px;
    color: #777;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 20px;
    flex-shrink: 0;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.project-card:hover .project-overlay h3 {
    transform: translateY(0);
}

.project-overlay p {
    color: #ddd;
    text-align: center;
    margin-bottom: 25px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
}

.project-card:hover .project-overlay p {
    transform: translateY(0);
}

.project-btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    transform: translateY(20px);
    transition-delay: 0.3s;
}

.project-card:hover .project-btn {
    transform: translateY(0);
}

.project-btn:hover {
    background: #fff;
    color: var(--secondary);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background: #fff;
    padding: 50px;
    position: relative;
    border: 1px solid var(--medium-gray);
    margin-bottom: 40px;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.testimonial-item:before {
    content: "\201C"; /* Unicode kodunu kullanıyoruz (sol çift tırnak) */
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    color: #777;
    line-height: 1.8;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 400;
}

.testimonial-info span {
    color: var(--secondary);
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border: 1px solid var(--medium-gray);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    font-size: 16px;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    background-color: #fff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.address-info {
    background: var(--primary);
    padding: 50px;
    color: #fff;
}

.address-info h3 {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    font-weight: 400;
}

.address-info h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: -15px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
}

.contact-text p, .contact-text a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
}

.contact-text a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    margin-top: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* MAP */
.map {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #fff;
    padding: 90px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 400;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: -15px;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-links a:before {
    content: '→';
    margin-right: 10px;
    color: var(--secondary);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #fff;
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

/* ===== HAMBURGER MENU ===== */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .map {
        min-height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 0;
        top: 80px;
        padding-top: 30px;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        transition: height 0.4s ease;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .nav-links.active {
        height: 400px;
        padding-top: 70px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .burger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .projects {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .contact-form,
    .address-info {
        padding: 30px;
    }
    
}
/* Logo boyutlandırma */
.logo img {
  width: auto;          /* Logonun genişliği doğal kalacak */
  max-width: 200px;     /* Maksimum genişliği 200px olarak sınırlıyoruz */
  height: auto;         /* Yükseklik orantılı olarak ayarlanacak */
  display: block;       /* Görselin altına boşluk eklemesini engeller */
  margin: 0 auto;       /* Ortalanmasını sağlar */
}

/* Daha küçük ekranlarda logo boyutunu azalt */
@media (max-width: 600px) {
  .logo img {
    max-width: 150px;    /* Mobilde logo boyutunu küçültür */
  }
}
