/* === GENEL AYARLAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #2c3e50;
}

/* === NAVBAR === */
.navbar {
    background-color: #c0392b;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    width: 25%;
    border-radius: 1px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #f1f1f1;
    text-decoration: underline;
}

/* === HAMBURGER MENÜ === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* === HERO === */
.hero {
    position: relative;
    height: 90vh;
    background: url("https://images.unsplash.com/photo-1590080875833-2da7d7992451?w=1600") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(192, 57, 43, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-button {
    background-color: #fff;
    color: #c0392b;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #e74c3c;
    color: #fff;
}

/* === GENEL SECTIONS === */
section {
    padding: 70px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #c0392b;
    margin-bottom: 50px;
    font-weight: 700;
}

/* === ABOUT === */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 280px;
    font-size: 18px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex: 1;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    background-color: #c0392b;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border: 2px solid #c0392b;
    background-color: #fff;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
	height: 400px;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.gallery-item p {
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}

/* === CONTACT === */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

.info-box {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #c0392b;
    margin-bottom: 15px;
    border-radius: 8px;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.submit-button {
    background-color: #c0392b;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.submit-button:hover {
    background-color: #e74c3c;
}

/* === FOOTER === */
.footer {
    background-color: #c0392b;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
}

.footer .social-links {
    margin-top: 10px;
}

.social-link {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-link:hover {
    color: #f1c40f;
}

/* === RESPONSIVE TASARIM === */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .about-content,
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #c0392b;
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 25px 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}
/* === KURUMSAL GÖRÜNÜM === */
body {
  background-color: #fafafa;
  color: #2c3e50;
  font-family: "Poppins", sans-serif;
}

/* Navbar scroll efekti */
.navbar {
  transition: background-color 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background-color: rgba(183, 28, 28, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Hero kısmı */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(183,28,28,0.6), rgba(0,0,0,0.6)),
              url("https://images.unsplash.com/photo-1590080875833-2da7d7992451?w=1600") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 54px;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA efekti */
.cta-button {
  background: linear-gradient(90deg, #b71c1c, #f1c40f);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(183,28,28,0.5);
}

/* Servis kartları animasyonu */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 2px solid #b71c1c;
}

/* Galeri hover efekti */
.gallery-item img {
  transition: transform 0.4s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer animasyonu */
.footer {
  background: linear-gradient(90deg, #b71c1c, #8e0e00);
  color: #fff;
}
