:root {
  --clrGold: #f0a500;
}

/* default scrollbar - none */
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* general settings */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* home */



/* ----- Navbar ----- */

#navbar nav div a img.logo {
  width: 200px;
  height: auto;
  margin-right: 20px;
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  #navbar {
    z-index: 1000;
  }
}

#navbar nav div ul.navbar-nav li.nav-item::after {
  content: "";
  display: block;
  width: 0;
  height: 1.2px;
  background-color: var(--clrGold);
  position: relative;
  top: -12px;
  transition: width 0.35s;
}

#navbar nav div ul.navbar-nav li.nav-item:hover:after {
  width: 100%;
}

@media (max-width: 992px) {
  #navbar {
    z-index: 1000;
  }
}

/* ----- footer ----- */
.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 576px) {
  footer {
    overflow-y: auto;
    max-height: 300px;
  }
}

i.ftr-i {
  color: var(--clrGold);
  font-size: 2rem;
}

i.ftr-i:hover {
  font-size: 2.5rem;
  transition: 0.3s;
}

a.ftr-i {
  color: white;
}

a.ftr-i:hover {
  color: var(--clrGold);
  font-size: large;
  transition: 0.3s;
}

.footer-info .section-title {
  align-items: center;
}

.footer-info .section-title a.ftr-link {
  color: white;
  font-size: 1.3rem;
  padding: 0;
  margin-left: 0;
  align-items: center;
}

.footer-info .section-title a.ftr-link:hover {
  color: var(--clrGold);
  text-shadow: var(--clrGold) 0px 0px 50px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 2px solid var(--clrGold);
  border-radius: 40px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
}

/* ----- fixed social icons ----- */

.social-icons {
  position: fixed;
  top: 50%;
  right: 25px;
  font-size: 2.2rem;
  transform: translateY(-50%);
  z-index: 1000;
  transition: transform 0.3s ease, font-size 0.2s ease;
}

.social-icons:hover {
  transform: translateY(-60%);
}

.social-icons .bi {
  font-size: 2.5rem;
  color: var(--clrGold);
}

.social-icon {
  font-size: 24px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.social-icons-links {
  display: none;
  position: fixed;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 1001;
  background-color: transparent;
  padding: 10px;
}

.social-icons-links a {
  display: block;
  margin: 5px 0;
  transition: font-size 0.3s ease; /* Hover için transition */
}

.social-icons-links a:hover {
  font-size: 1.8em; /* Hover olduğunda font boyutunu büyüt */
}

/* ----- carousel styles ----- */
.carousel-item {
 
  height: 100%;
}

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

.carousel-fade .carousel-item {
  transition: opacity 3s ease-out;
}

/* ---- contact ----- */

#contact {
  min-height: 100vh;
  margin-top: 50px;
  background-color: #111111;
  color: #cccccc;
  font-size: large;
  margin-bottom: -60px;
}

#contact .contact-img img {
  width: 100%;
  margin-top: 100px;
  border-radius: 20px;
  border: 1px solid #40403e;
  box-shadow: 0 5px 30px rgba(192, 190, 190, 0.779);
}

.form-control,
.lbl-message textarea {
  background-color: transparent;
  box-shadow: 0 2px 8px rgb(146, 139, 139);
  border: 2px solid #d0b5b5;
  padding: 15px;
  border-radius: 20px;
  color: antiquewhite;
  font-size: 20px;
}

.form-control:focus,
.lbl-message textarea:focus {
  background-color: transparent;
  color: #cccccc;
  outline: none;
  font-size: 20px;
}

.form-control:valid,
.lbl-message textarea:valid {
  background-color: transparent;
  color: #cccccc;
}

.form-control::placeholder,
.lbl-message textarea::placeholder {
  color: #999;
  font-size: medium;
}

.lbl-message textarea {
  height: 180px;
  resize: none;
}

#contact .contact-form form button {
  background-color: #474745;
  border: whitesmoke 2px solid;
  font-weight: 700;
  width: 25%;
}

#contact .contact-form form button:hover {
  background-color: var(--clrGold);
  border: black 2px solid;
  color: #111;
  font-weight: 900;
  box-shadow: #cccccc 0px 0px 30px;
  transition: 0.3s;
}

/* ----- in press ----- */

/* ----- working-areas & in-press cards ----- */
.card {
  margin-top: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border: #cccccc 3px solid;
  border-radius: 20px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgb(156, 154, 154);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#working-areas a.btn {
  background-color: #474745;
  border: rgb(236, 236, 236) 2px solid;
  border-radius: 30px;
  color: white;
  font-weight: 900;
  box-shadow: #cccccc 0px 0px 15px;
  transition: 0.3s;
}

/* ----- working-areas-detail ----- */
#working-areas-detail {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 250px 0;
  background-size: cover;
  background-position: center;
}

#working-areas-detail h4,
p {
  text-align: justify;
  padding: 10px;
}

#working-areas-detail .container {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 45px;
  max-width: 1280px;
  min-height: auto; 
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.816);
  position: fixed; 
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%); 
}

@media (max-width: 576px) {
  #working-areas-detail .container {
    padding: 10px; 
    margin: 50px 0; 
    width: 100%;
    max-width: none;
    overflow-y: auto; 
  }
}
/* ---- about ----- */
.about-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
  color: black;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.about-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-right: 20px;
  margin-top: 30px;
  transition: transform 0.5s ease-in-out;
}
.about-item img:hover {
  transform: scale(1.07);
}
.about-item .content {
  flex: 1;
}

.fw-bold {
  align-items: center;
  margin-top: 30px;
  margin-left: 60px;
  color: var(--clrGold);
  text-shadow: 2px 2px 5px #000000;
}
.parag {
  margin-left: 60px;
  color: #cccccc;
  font-size: 20px;
}
.custom-btn {
  background-color: black; /* Siyah renk */
  color: var(--clrGold);
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.5s ease, transform 0.5s ease;
}
.custom-btn:hover {
  background-color: var(--clrGold);
  transform: translateY(-3px);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

#about {
  background-color: #111;
  padding: 50px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.hr-custom {
  border: 1px solid #444;
  margin: 40px 0;
}

/* ----- succes-page -----*/
#success-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #363535;
}

#success-page .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin-top: 100px;
}

#success-page .card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.877);
  overflow: hidden;
  max-width: 600px;
  margin: 0 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#success-page .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(25, 25, 25, 0.999);
}

#success-page .card img {
  width: 750px;
  height: auto;
  object-fit: cover;
}

#success-page .card-body {
  padding: 20px;
  text-align: center;
}

#success-page .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#success-page .card-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: #6c757d;
}

#success-page .btn-primary {
  background-color: black;
  color: var(--clrGold);
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.5s ease, transform 0.5s ease;
}

#success-page .btn-primary:hover {
  background-color: #f5f6f7;
  border: #40403e solid 3px;
  color: #111;
}

/* Mobile devices */
@media (max-width: 576px) {
  /* Navbar */
  #navbar nav div a img.logo {
    width: 150px;
    margin-right: 10px;
  }
  /* Carousel */
  .carousel-item {
    height: 400px;
  }
  /* Contact Form */
  #contact .contact-form form button {
    width: 50%;
  }
  /* Footer */
  .footer {
    padding: 10px;
  }
  /* Social Icons */
  .social-icons {
    right: 10px;
    font-size: 1.8rem;
  }
  .social-icons .bi {
    font-size: 2rem;
  }
  /* About Section */
  .about-item {
    flex-direction: column;
    text-align: center;
  }
  .about-item img {
    margin-right: 0;
    margin-bottom: 20px;
    height: auto;
  }
  .fw-bold,
  .parag {
    margin-left: 0;
    text-align: center;
  }
  /* Success Page */
  #success-page .card img {
    width: 100%;
  }
  #success-page .card-body {
    padding: 10px;
  }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 992px) {
  /* Navbar */
  #navbar nav div a img.logo {
    width: 180px;
  }
  /* Carousel */
  .carousel-item {
    height: 100%;
  }
  /* Contact Form */
  #contact .contact-form form button {
    width: 35%;
  }
  /* Social Icons */
  .social-icons {
    right: 15px;
    font-size: 2rem;
  }
  .social-icons .bi {
    font-size: 2.2rem;
  }
  /* About Section */
  .about-item {
    flex-direction: column;
    text-align: center;
  }
  .about-item img {
    margin-right: 0;
    margin-bottom: 20px;
    height: auto;
  }
  .fw-bold,
  .parag {
    margin-left: 0;
    text-align: center;
  }
  /* Success Page */
  #success-page .card img {
    width: 100%;
  }
  #success-page .card-body {
    padding: 15px;
  }
}

/* Small Desktops */
@media (min-width: 993px) and (max-width: 1200px) {
  /* Navbar */
  #navbar nav div a img.logo {
    width: 190px;
  }
  /* Carousel */
  .carousel-item {
    height: 700px;
  }
  /* Contact Form */
  #contact .contact-form form button {
    width: 30%;
  }
  /* Social Icons */
  .social-icons {
    right: 20px;
    font-size: 2.1rem;
  }
  .social-icons .bi {
    font-size: 2.3rem;
  }
  /* About Section */
  .about-item {
    flex-direction: row;
    text-align: left;
  }
  .about-item img {
    margin-right: 20px;
    margin-bottom: 0;
    height: 400px;
  }
  .fw-bold,
  .parag {
    margin-left: 20px;
    text-align: left;
  }
  /* Success Page */
  #success-page .card img {
    width: 100%;
  }
  #success-page .card-body {
    padding: 20px;
  }
}

/* Larger Desktops */
@media (min-width: 1201px) {
  #navbar nav div a img.logo {
    width: 200px;
  }
  
  .carousel-item {
    height: 800px;
  }
  /* Contact Form */
  #contact .contact-form form button {
    width: 25%;
  }
  /* Social Icons */
  .social-icons {
    right: 25px;
    font-size: 2.2rem;
  }
  .social-icons .bi {
    font-size: 2.5rem;
  }
  /* About Section */
  .about-item {
    flex-direction: row;
    text-align: left;
  }
  .about-item img {
    margin-right: 20px;
    margin-bottom: 0;
    height: 400px;
  }
  .fw-bold,
  .parag {
    margin-left: 20px;
    text-align: left;
  }
  /* Success Page */
  #success-page .card img {
    width: 100%;
  }
  #success-page .card-body {
    padding: 20px;
  }
}



