/* Menü ile uyumlu renk teması için eklenmiştir */
:root {
  --primary: #8B5A2B;
  --secondary: #E6C229;
  --dark: #1A1A1A;
  --light: #F5F5F5;
  --text-light: #F0F0F0;
  --text-dark: #333;
  --whatsapp: #25D366;
  --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Contact Page Styles */
body {
    background-color: #1F140B;
    color: var(--text-light);
    padding-top: 80px; /* Account for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.15) 0%, rgba(31, 20, 11, 0.25) 100%);
    backdrop-filter: blur(15px);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(230, 194, 41, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E6C229" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%238B5A2B" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.contact-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary), #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.contact-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(240,240,240,0.9);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Business Information */
.business-info {
    padding: 3rem 0;
    background: rgba(0,0,0,0.3);
}

.business-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.08), rgba(31, 20, 11, 0.12));
    border-radius: 24px;
    border: 1px solid rgba(230, 194, 41, 0.15);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.15);
    border-color: rgba(230, 194, 41, 0.25);
}

.business-name {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary), #CD853F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.business-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(240,240,240,0.9);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Address Section */
.address-section {
    padding: 4rem 0;
}

.address-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.address-info {
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.08), rgba(31, 20, 11, 0.12));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 194, 41, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.address-info:hover {
    transform: translateY(-3px);
    border-color: rgba(230, 194, 41, 0.25);
    box-shadow: 0 12px 40px rgba(139, 90, 43, 0.15);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary), #CD853F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), #CD853F);
    border-radius: 2px;
}

.address-details {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.address-icon {
    font-size: 1.8rem;
    margin-top: 0.2rem;
    color: var(--secondary);
    opacity: 0.9;
}

.address-text p {
    margin: 0.4rem 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(240,240,240,0.95);
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.map-container {
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.08), rgba(31, 20, 11, 0.12));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(230, 194, 41, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.map-container:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 194, 41, 0.25);
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    filter: contrast(1.1) saturate(1.05);
    transition: all 0.4s ease;
}

/* Contact Information */
.contact-info {
    padding: 4rem 0;
    background: rgba(0,0,0,0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.08), rgba(31, 20, 11, 0.12));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(230, 194, 41, 0.15);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.12), rgba(31, 20, 11, 0.16));
    transform: translateY(-5px);
    border-color: rgba(230, 194, 41, 0.25);
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.15);
}

.contact-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-label {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.contact-link {
    color: rgba(240,240,240,0.95);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(139, 90, 43, 0.15);
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-link:hover {
    color: #ffffff;
    background: rgba(139, 90, 43, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.2);
}

/* Opening Hours */
.opening-hours {
    padding: 5rem 0;
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.05), rgba(31, 20, 11, 0.08));
}

.hours-card {
    background: linear-gradient(145deg, rgba(139, 90, 43, 0.08), rgba(31, 20, 11, 0.12));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 194, 41, 0.15);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hours-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 194, 41, 0.25);
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.15);
}

.hours-icon {
    font-size: 3.2rem;
    color: var(--secondary);
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hours-card:hover .hours-icon {
    transform: rotate(360deg);
}

.hours-content {
    flex: 1;
}

.hours-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.hours-time {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--secondary), #CD853F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.hours-note {
    font-size: 1rem;
    color: rgba(240,240,240,0.85);
    font-style: italic;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    line-height: 1.6;
}
/* ... mevcut css kodların ... */

/* Yeni ek: Hours wrapper */
.hours-wrapper {
    display: flex;
    gap: 2rem; /* Aradaki boşluk */
    justify-content: center; 
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hours-wrapper {
        flex-direction: column;
        align-items: center;
    }
}



/* Call to Action */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.15) 0%, rgba(31, 20, 11, 0.25) 100%);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(230, 194, 41, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E6C229" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%238B5A2B" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary), #CD853F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(240,240,240,0.9);
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border: 2px solid transparent;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--secondary), #CD853F);
    color: #ffffff;
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.25);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 90, 43, 0.4);
    background: linear-gradient(135deg, #CD853F, var(--secondary));
}

.cta-btn.secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.15);
}

.cta-btn.secondary:hover {
    background: rgba(139, 90, 43, 0.1);
    border-color: #CD853F;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 90, 43, 0.25);
    color: #CD853F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .business-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .address-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hours-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .business-name {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .address-info,
    .contact-card,
    .hours-card {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .hours-icon {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.contact-link:focus,
.cta-btn:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .cta-btn {
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Loading animation for map */
.map-container {
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

.map-container iframe {
    position: relative;
    z-index: 2;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
} 
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

