/* === CSS Variables for consistent theming === */
:root {
  --neutral: #B4B8C5;
  --neutral-dark: #8A8D98;
  --dark: #344055;
  --dark-hover: #283244;
  --primary: #5C6BC0;
  --primary-hover: #4A5AA9;
  --secondary: #DDB945;
  --secondary-hover: #1D8C81;
  --accent: #8C9EFF;
  --accent-light: #BDC5FF;
  --text-dark: #2B2D35;
  --text-light: #F5F7FA;
  --bg-light: #F5F7FA;
  --bg-light-contrast: #E8ECF2;
  --container-width: 1200px;
  --container-full: 100%;
  --transition: 0.3s ease;
  --section-spacing: 5rem;
  --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Genel Alan */
.contact-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Başlık */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-family: "Playwrite US Trad", cursive;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

/* Bilgi Kartları */
.contact-info-wrapper {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-info-box {
  text-align: center;
  width: 200px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.contact-info-box h4 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-weight: 600;
}

.contact-info-box a,
.contact-info-box p {
  color: #666;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
}

/* Alt Kısım: Form + Harita */
.contact-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
}

/* Form */
.contact-form {
  flex: 1;
  min-width: 350px;
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

.contact-form p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

#cf_kvkk{
  width: auto;
}

.contact-icon i{
  color: #fff;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 0rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form textarea {
  resize: vertical;
}

.contact-kvkk {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.5;
}

.contact-kvkk span {
  color: #333;
  font-size: 0.95rem;
}

/* İletişim formu input stilleri */
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: rgb(221, 185, 69) !important;
  box-shadow: 0 0 0 3px rgba(221, 185, 69, 0.2) !important;
  outline: none !important;
}

#contactForm input:focus-visible,
#contactForm textarea:focus-visible {
  border-color: rgb(221, 185, 69) !important;
  box-shadow: 0 0 0 3px rgba(221, 185, 69, 0.2) !important;
}



.contact-kvkk a {
  color: var(--secondary);
  text-decoration: none;
}

.contact-form button {
  background: none;
    color: #000;
    font-weight: 600;
    width: 175px;
    padding: 8px 20px;
    border: 2px solid #DDB945;
    border-radius: 33px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

#cf-result {
  margin-top: 10px;
  font-size: 1rem;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  display: none;
}

/* Harita */
.contact-map {
  flex: 1;
  min-width: 350px;
  padding: 0 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.contact-map-header {
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
}

.contact-map-header h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-map-header p {
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-map iframe {
  height: 400px;
  width: 100%;
  border: 0;
  border-radius: 3px;
}


/* Reset & Base */
*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: "League Spartan", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}

ul { 
  list-style: none; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

/* Wrapper to center content */
.container {
  max-width: var(--container-width);
  margin: auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: #242622;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 700;
}

.logo:hover::after {
  display: none;
}

.logo img {
  width: 170px;
  margin-left: -10px;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--bg-light);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

nav a:hover {
  color: var(--secondary);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary);
  bottom: -2px;
  left: 0;
  transition: width var(--transition);
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero section */
/* Hero section */
.hero{
  padding: 0px;
}
.hero img {

height: 80vh; /* Ekran yüksekliğinin %80'i kadar */
min-height: 500px; /* Minimum yükseklik */
width: 100%;
position: relative;
}

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  height: 80vh;
  min-height: 500px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

/* Single Hero Styles */
.single-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.single-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel Styles */
.carousel {
  height: 80vh;
  min-height: 500px;
}

.carousel-item {
  height: 80vh;
  min-height: 500px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 166, 154, 0.4);
  color: var(--text-dark);
  text-decoration: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px 20px;
  width: 40px;
  height: 40px;
  background-color: none;
  border-radius: 50%;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-image {
      height: 60vh;
      min-height: 400px;
  }
  
  .single-hero {
      height: 60vh;
      min-height: 400px;
  }
  
  .carousel,
  .carousel-item {
      height: 60vh;
      min-height: 400px;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
  }
  
  .hero-content p {
      font-size: 1rem;
      margin-bottom: 2rem;
  }
  
  .hero-btn {
      padding: 0.8rem 2rem;
      font-size: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
      width: 8%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      width: 30px;
      height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content {
      padding: 0 1rem;
  }
  
  .hero-content h1 {
      font-size: 2rem;
  }
  
  .hero-content p {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
  }
  
  .hero-btn {
      padding: 0.7rem 1.5rem;
      font-size: 0.9rem;
  }
}

.about-paragraf{
  margin-left: 10px;
}
.about-features{
  padding-left: 15px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #e87928;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(38, 166, 154, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--bg-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Styles */
section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-family: "Playwrite US Trad", cursive;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}



.section-header p {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: #000;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  background: white;
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: "Playwrite US Trad", sans-serif;
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}

.about-text h2:not(:first-child) {
  margin-top: 3rem;
}

.about-text h3 {
  font-family: "Playwrite US Trad", sans-serif;
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}

.about-text h3:not(:first-child) {
  margin-top: 3rem;
}

.about-text p {

  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-text ul li{
	color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

/* Learning Section */
.learning-section {
  background: #F2F1F1;
}

.application-cta {
  text-align: center;
  margin-top: 3rem;
}

.application-cta .btn {
  min-width: 200px;
}

/* Kitchen Section */
.kitchen-section {
  background: white;
}

.kitchen-cta {
  text-align: center;
  margin-top: 3rem;
}

.kitchen-cta .btn {
  min-width: 200px;
}

/* Spaces Section */
.spaces-section {
  background: var(--bg-light-contrast);
}

.floor-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(92, 107, 192, 0.10);
  transition: background 0.2s, transform 0.2s;
}
.floor-details-btn i {
  font-size: 1.1rem;
}

.floor-details-btn:hover {
  background: #e87928;
  color: #fff;
  transform: translateY(-2px);
}

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

/* Kartlar için flex yapısı ekleyin */
.floor-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.floor-image {
  height: 200px;
  overflow: hidden;
}

.floor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.floor-card:hover .floor-image img {
  transform: scale(1.05);
}

.floor-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.floor-header h3 {
  font-size: 1.5rem;
  color: var(--dark);
}

/* İçerik kısmını flex yapın ve büyüyebilir yapın */
.floor-content {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

/* İçerik bilgileri kısmı */
.floor-info {
  margin-bottom: 1rem;
}

.floor-content p {
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.floor-content p strong {
  color: var(--dark);
  font-weight: 600;
}

/* Buton kısmı */
.floor-button-container {
  margin-top: auto;
  text-align: center;
}

.floor-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(92, 107, 192, 0.10);
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}

.floor-details-btn i {
  font-size: 1.1rem;
}

.floor-details-btn:hover {
  background: #e87928;
  transform: translateY(-2px);
}

/* Reservation Section */
.reservation-section {
  background: white;
  padding: var(--section-spacing) 0;
}

.reservation-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 2.5rem;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--neutral);
  border-radius: 8px;
  font-family: "League Spartan", sans-serif;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 158, 255, 0.1);
}

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

.reservation-btn {
  margin-top: 1rem;
  align-self: center;
  min-width: 200px;
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  background: #242622;
  color: var(--text-light);
  margin-top: 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact p i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.community-link-footer {
  margin-top: 1.5rem;
}

.community-link-footer a {
  color: var(--secondary);
  font-weight: 600;
  transition: color var(--transition);
}

.community-link-footer a:hover {
  color: var(--accent-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

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

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--secondary);
  transition: color var(--transition);
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .floors-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .about-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (min-width: 769px){
  .lg-none{
    display: none;
  }
  .xs-none{
    display: block;
  }
}

@media (max-width: 768px) {
	.hero img{
		min-height: auto;
	}
  .mobile-menu-btn {
    display: block;
  }

  .lg-none{
    display: block;
  }

  .xs-none{
    display: none;
  }
  
  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #242622;
    padding: 2rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  nav .nav-links.active {
    display: flex;
  }
  
  .floors-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}


 /* Reservation Section */
 .reservation-section {
  padding: 6rem 0;
  background: linear-gradient(rgba(52, 64, 85, 0.65), rgba(52, 64, 85, 0.75)), url('img/meet_room_hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.reservation-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.reservation-content h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.reservation-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.reservation-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.reservation-option {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.reservation-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.option-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}



.option-icon i {
  font-size: 2.5rem;
}

.reservation-option h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.reservation-option p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}