/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #a67c52;
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
}

.btn {
    display: inline-block;
    background-color: #a67c52;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #8a6643;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section {
    padding: 80px 0;
}

/* Header Stili */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    color: #a67c52;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    color: #a67c52;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: -2px;
}

nav {
    margin: 0 20px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}

.nav-icon {
    margin-right: 5px;
    font-size: 0.9rem;
    width: 14px;
    text-align: center;
}

nav ul li a:hover {
    color: #a67c52;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #a67c52;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.header-phone {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: #444;
    white-space: nowrap;
}

.header-phone i {
    font-size: 1rem;
    margin-right: 5px;
    color: #a67c52;
}

.header-btn {
    background-color: #a67c52;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-btn:hover {
    background-color: #8a6643;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: fadeIn 1s ease-in-out 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hakkımızda Bölümü */
.about {
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Hizmetler Bölümü */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #a67c52;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #444;
}

.service-card p {
    color: #777;
}

/* Galeri Bölümü */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: #a67c52;
    margin-right: 15px;
    min-width: 25px;
    text-align: center;
}

.info-item .info-content {
    flex: 1;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.social-media {
    margin-top: 30px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #a67c52;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: #8a6643;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Form Butonları Bölümü */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.form-buttons button {
    align-self: flex-start;
}

/* İletişim CTA Buton Bölümü */
.contact-cta {
    margin-top: 15px;
}

.contact-form button[type="submit"] {
    display: block;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Galeri Sayfası */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gallery-filter {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #a67c52;
    color: #a67c52;
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #a67c52;
    color: white;
}

.gallery-main {
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .about-content, .contact-container {
        flex-direction: column;
    }
    
    .about-text, .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .header-contact {
        display: none;
    }
    
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content, .contact-container {
        flex-direction: column;
    }
    
    .about-text, .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        background-color: white;
        width: 100%;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        padding: 8px 0;
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #a67c52;
    }
    
    .header-contact {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .info-item i {
        margin-top: 3px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Yakında Gelecek Mesajı */
.coming-soon {
    text-align: center;
    padding: 60px 20px;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 800px;
}

.coming-soon i {
    font-size: 5rem;
    color: #a67c52;
    margin-bottom: 20px;
}

.coming-soon h2 {
    font-size: 2.5rem;
    color: #a67c52;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ==============================
   Footer Stilleri
   ============================== */

.site-footer {
    background-color: #121212;
    color: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    padding: 60px 0 40px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(30,30,30,0.9)), url('../images/hero.jpg'); /* Arka plan resmini yerel dosyadan al */
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #a67c52);
}

.site-footer .row { /* Footer içindeki row için daha spesifik seçici */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-info {
    flex: 0 0 30%;
    margin-bottom: 30px; /* Responsive için eklendi */
}

.col-links, .col-services, .col-social {
    flex: 0 0 20%;
    margin-bottom: 30px; /* Responsive için eklendi */
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 28px;
    color: #d4af37;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-logo-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(to right, #d4af37, #a67c52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 20px;
}

/* <<<--- HİZALAMA SORUNU İÇİN DÜZENLENEN KISIM --->>> */
.contact-item {
    display: flex;
    align-items: flex-start; /* İkon ve metni üste hizala */
    margin-bottom: 15px;
    text-align: left; /* Metnin soldan başlamasını sağla */
}

.contact-item i {
    color: #d4af37;
    margin-right: 12px; /* İkon ve metin arası boşluk */
    font-size: 16px;
    margin-top: 3px;   /* İkonu metinle dikeyde hizala */
    width: 18px;       /* İkon için sabit genişlik */
    text-align: center;/* İkonu kendi alanında ortala */
    flex-shrink: 0;  /* İkonun daralmamasını sağla */
}

.contact-item span {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1; /* Metnin kalan alanı doldurmasını sağla */
    margin: 0;      /* Olası dış boşlukları sıfırla */
    padding: 0;     /* Olası iç boşlukları sıfırla */
    display: inline; /* Gereksiz blok davranışını engelle */
}
/* <<<--- HİZALAMA SORUNU İÇİN DÜZENLENEN KISIM SONU --->>> */


.site-footer h3:not(.footer-logo-container h3) { /* Logo başlığı hariç diğer başlıklar */
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
    padding-bottom: 10px;
}

.site-footer h3:not(.footer-logo-container h3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-bottom: 25px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer-newsletter h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    height: 40px;
}

.newsletter-form input {
    flex: 1;
    padding: 0 15px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 3px 0 0 3px;
}

.newsletter-form button {
    width: 40px;
    border: none;
    background: #d4af37;
    color: #fff;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #a67c52;
}

.footer-bottom {
    background: #0a0a0a;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.legal-links li {
    margin-left: 20px;
}

.legal-links a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #d4af37;
}

/* Footer Responsive Styles */
@media (max-width: 991px) {
    .col-info {
        flex: 0 0 100%;
    }
    .col-links, .col-services, .col-social {
        flex: 0 0 48%; /* Biraz daha fazla yer kaplasınlar */
    }
    .col-social {
      margin-top: 20px; /* Sosyal medya alta gelince boşluk */
    }
}

@media (max-width: 767px) {
    .col-links, .col-services, .col-social {
        flex: 0 0 100%; /* Tam genişlik */
    }
    .footer-bottom .container {
        flex-direction: column;
    }
    .legal-links {
        margin-top: 15px;
    }
    .legal-links li {
        margin: 0 10px;
    }
} 