/* Genel Stiller */
:root {
    --primary-color: #c59d5f; /* Altın rengi */
    --secondary-color: #2c2c2c; /* Koyu gri */
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
    a{
        text-decoration-line: none;
    }
}

body {
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #b3894e;
}

/* Header */
/* Header */
.header {
    background: linear-gradient(90deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    a{
        text-decoration-line: none;
    }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Stili */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Navigasyon */
.navbar {
    display: flex;
    gap: 2rem;
    position: relative;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Sosyal Medya */
.social-media {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* Mobile Menü */
.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .navbar {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    }

    /* Açılır Mobile Menü */
    .navbar.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c2c2c;
        padding: 1.3rem;
        text-align: center;
        gap: 1rem;
    }

}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 120px;
    margin-bottom: 1rem;
}

.hero-logo h1 {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text {
    max-width: 800px;
    margin: 2rem 0;
}

.slogan {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.location {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo img {
        width: 80px;
    }
    
    .hero-logo h1 {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 1.8rem;
    }
    
    .location {
        font-size: 1.1rem;
        flex-direction: column;
    }
}

/* Hakkımızda */
/* Hakkımızda Stilleri */
.about-section {
    padding: 2rem 1rem;
    background: #fefefe;
    max-width: 100%;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
    color: #333;
  }
  
  .section-header p {
    font-size: 1rem;
    color: #777;
  }
  
  /* Her bilgi kutusu */
  .about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .about-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .about-item .text {
    text-align: center;
  }
  
  .about-item h3 {
    font-size: 1.2rem;
    color: #111;
  }
  
  .about-item p {
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Takım bölümü */
  .team-section h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .team-member {
    text-align: center;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }
  
  .team-member h4 {
    font-size: 1rem;
    color: #222;
  }
  
  .team-member p {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Tablet (400px-750px arası) */
  @media (min-width: 400px) and (max-width: 749px) {
    .about-item {
      flex-direction: column;
    }
  
    .team-grid {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .team-member {
      flex: 0 0 45%;
    }
  }
  
  /* Masaüstü (750px üstü) */
  @media (min-width: 750px) {
    .about-item {
      flex-direction: row;
      align-items: center;
      gap: 2rem;
    }
  
    .about-item img {
      width: 40%;
    }
  
    .about-item .text {
      text-align: left;
      width: 60%;
    }
  
    .team-grid {
      flex-direction: row;
      justify-content: space-evenly;
    }
  
    .team-member {
      max-width: 30%;
    }
  }
  
  
  



/* Video Section Stilleri */
.video-section {
    position: relative;
    background: var(--secondary-color);
    padding: 6rem 0;
    overflow: hidden;
}

.wave-top, .wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-top {
    top: -1px;
    transform: rotate(180deg);
    
}



.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-description {
    color: white;
}

.video-description h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.highlight-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--primary-color);
}

.features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0);
}

.promo-video {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .video-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .video-description h2 {
        font-size: 2rem;
    }
    
    .highlight-text {
        padding-left: 0;
        text-align: center;
    }
    
    .highlight-text::before {
        display: none;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper {
        transform: none;
    }
    
}



/* Rezervasyon Formu */
/* Rezervasyon Stilleri */
.reservation {
    position: relative;
    padding: 6rem 0;
    background: #f8f8f8;
}
.wave-top {
    top: -1px;
    transform: rotate(180deg);
    
}
.deco-leaf {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    width: 150px;
}

.deco-left {
    left: -50px;
    top: 20%;
    transform: rotate(15deg);
}

.deco-right {
    right: -50px;
    bottom: 20%;
    transform: rotate(-110deg);
}

.reservation-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    transition: all 0.3s;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* Input Focus Efekti */
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(198, 157, 95, 0.2);
}

.input-group input:focus ~ label,
.input-group select:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:valid ~ label,
.input-group select:valid ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    left: 1rem;
    font-size: 0.8rem;
    background: white;
    padding: 0 5px;
    color: var(--primary-color);
}

/* Select Özelleştirme */
.select-group::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

/* Buton Stili */
.submit-btn {
    align-self: center;
    padding: 1.2rem 3rem;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.submit-btn i {
    opacity: 0;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.submit-btn:hover i {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .reservation-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .deco-leaf {
        display: none;
    }
}

/* Footer */
/* Footer Stilleri */
.footer {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    a{
        text-decoration-line: none;
    }
}

.footer-top {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.logo-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-section img {
    width: 80px;
    height: auto;
}

.logo-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.slogan {
    color: #aaa;
    font-style: italic;
}

.footer-description {
    color: #888;
    line-height: 1.6;
}

.links-section h4,
.contact-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.links-section h4::after,
.contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Harita Stili */
.footer-map {
    height: 400px;
    position: relative;
}

.custom-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(50%) hue-rotate(10deg) contrast(90%);
}

/* Telif Hakkı */
.footer-bottom {
    background: #000;
    padding: 1.5rem 0;
    text-align: center;
    color: #666;
}
.wave-top-foot {
    top: -1px;
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-map {
        height: 300px;
    }
}
@media (min-width: 768px) {
    .wave-top-foot {
        display: none;
    }
}


/* Menü Stilleri */
/* Menü Kategorileri */
.menu-categories .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
}

.category-card {
    width: 100%;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-header img {
    height: 200px; /* Mobilde daha küçük boyut */
}


/* Tablet ve üstü */
@media (min-width: 768px) {
    .menu-categories .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .category-header img {
        height: 300px;
    }
}

/* Mobil için özel ayarlar */
@media (max-width: 767px) {
    .category-card.reverse {
        direction: ltr; /* Mobilde ters yönü düzelt */
    }
    
    .category-title {
        font-size: 1.5rem;
        bottom: 15px;
        left: 15px;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .item-badge {
        top: -10px;
        right: -10px;
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }
}
.menu-categories {
    padding: 4rem 0;
    background: #fff8f0;
}

.category-card {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.category-header {
    position: relative;
}

.category-header img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.8);
}

.category-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.category-body {
    padding: 2rem;
}

.menu-item {
    position: relative;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(198, 157, 95, 0.2);
}

.item-content h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.ingredients {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-badge.populer {
    background: #e74c3c;
}

.category-header video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.8);
    display: block;
}

/* Tablet ve üstü için yüksekliğini güncelle */
@media (min-width: 768px) {
    .category-header video {
        height: 300px;
    }
}


/* Mobil Uyum */
@media (max-width: 768px) {
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .menu-item {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .item-content h3 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price {
        margin-top: 0.5rem;
    }
    
    .item-badge {
        top: -10px;
        right: -10px;
        padding: 0.3rem 1rem;
    }
}

/* Renk Tanımları */
:root {
    --primary-color: #c59d5f; /* Altın */
    --secondary-color: #2c2c2c; /* Koyu Gri */
}

.fixed-menu-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(198, 157, 95, 0.3);
    z-index: 1000;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    
    
    .fixed-menu-btn span {
        display: none;
    }
    
    .fixed-menu-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}