/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
        right: 24px;
    bottom: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 2000;
    transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
    box-shadow: 0 8px 32px rgba(37,211,102,0.18);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #F9F9E8;
    color: #b22234;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: Montserrat;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

section {
    padding-top: 10rem;
    padding-bottom: 10rem;
    text-align: center;
}

.btn-large {
    font-size: 2rem;
    padding: 2.2rem 1.6rem;
}

.btn {
    margin-top: 2rem;
    padding: 2.2rem 1.6rem;
    font-weight: 400;
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: 0.4s;
}

.btn-social {
    width: 7rem;
    height: auto;
    border-radius: 50%;
    font-size: 22px;
    line-height: 2rem;
}

.btn-outline {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.btn-outline:hover {
    color: #212529;
    background-color: #fff;
}

.btn-primary {
    background-color: #222222;
    border-color: whitesmoke;
    padding: 2rem 4rem;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1ABC9B;
    border-color: #1ABC9B;
}


.img-fluid {
    max-width: 60px;
    height: auto;
    border: 1px solid #fff;
    border-radius: 50%;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


.col {
    float: left;
    width: 100%;
    padding: 1rem;
}

@media (min-width: 576px) {
    /* 576 ve üzeri */

    .container {
        max-width: 540px;
    }

    html {
        font-size: 7px;
    }

    .col {
        width: 75%;
    }

}

@media (min-width: 768px) {

    .container {
        max-width: 720px;
    }

    html {
        font-size: 8px;
    }
    
    .col {
        width: 50%;
    }

}

@media (min-width: 992px) {

    .container {
        max-width: 960px;
    }

    html {
        font-size: 9px;
    }

    .col {
        width: 33.333%;
    }

}

@media (min-width: 1200px) {

    .container {
        max-width: 1140px;
    }
    
    html {
        font-size: 10px;
    }
}

.text-uppercase {
    text-transform: uppercase;
}



/* Navbar */

nav {
    width: 100%;
    font-family: Montserrat;
    background-color: #222222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position:sticky;
    top:0;
    z-index: 1200;
}

#logo-box {
    float: left;
    padding-top: 0.5rem;
    display:flex;
    align-items: center;
}

#logo-box .logo {
    color: #c00000;
    font-weight: 700;
    font-size: 2.8rem;
    margin-left: 10px;
}

#nav-links {
    float: right;
    position: relative;
}

#nav-links .nav-item {
    float: left;
    margin: 0.5rem;

}

#nav-links .nav-link {
    color: #F9F9E8;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    padding: 1.6rem;
    letter-spacing: 0.1rem;
    transition: color 0.4s;
}

#nav-links .nav-link:hover {
    color: #b22234;

}

#nav-links .nav-icon {
    display: none;
}

/* Show hamburger icon and hide menu on mobile */
@media (max-width:992px) {
  #nav-links .nav-icon {
    display: block;
    position: absolute;
    top: 15px;
    right: 5px;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1100;
  }
  #nav-menu {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 0 0 12px 12px;
    z-index: 1100;
  }
  #nav-menu.active {
    display: flex;
  }
  #nav-menu .nav-item {
    float: none;
    text-align: left;
    margin: 0;
  }
  #nav-menu .nav-link {
    padding: 1.6rem 2rem;
    font-size: 2rem;
    border-bottom: 1px solid #333;
  }
}



/* PHOTO SECTION */

.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px; /* or your preferred max width */
  aspect-ratio: 16/9; /* keeps a nice ratio */
  margin: 40px auto;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  width: 100%;
  height: 100%;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 8px;
  flex-shrink: 0;
  display: block;
  aspect-ratio: 16/9; /* ensures all images keep the same ratio */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b22234;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s;
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }
.carousel-arrow:hover { background: #800000; }



/* PRODUCTS SECTION */

.products-section {
    padding: 56px 0 32px 0;
    text-align: center;
    background: linear-gradient(90deg, #F9F9E8 70%, #F9F9E8 100%);
}
.products-section h1 {
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(178,34,52,0.10);
    padding: 28px 20px 24px 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(178,34,52,0.18);
    transform: translateY(-8px) scale(1.03);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(178,34,52,0.10);
    margin-bottom: 16px;
}

.product-price {
    color: #b22234;
    font-weight: bold;
    font-size: 1.3rem;
    display: inline-block;
    margin-top: 14px;
    background: #f5f5dc;
    padding: 6px 18px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(178,34,52,0.08);
    letter-spacing: 1px;
}
.product-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #800000;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.product-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
    min-height: 40px;
}



/* MAPS AND FOOTER SECTION */

.map-section {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.footer-section {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    background: linear-gradient(90deg, #222 60%, #F5F5DC 100%);
    color: #fff;
    padding: 48px 24px 24px 24px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px rgba(178,34,52,0.12);
    font-family: 'Montserrat', Arial, sans-serif;
}

.footer-content {
    text-align: center;
}
.footer-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(178,34,52,0.15);
}

.footer-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 32px;
}

.footer-block {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(178,34,52,0.08);
    padding: 24px 18px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.2s, background 0.2s;
}
.footer-block:hover {
    background: rgba(178,34,52,0.08);
    box-shadow: 0 4px 16px #F5F5DC;
}
.footer-icon {
    display: inline-block;
    background: #b22234;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-size: 1.4rem;
    margin-bottom: 8px;
    margin-right: 8px;
    box-shadow: 0 2px 8px rgba(178,34,52,0.12);
}

.footer-input {
    width: 96%;
    margin: 8px 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #b22234;
    background: #fff;
    color: #b22234;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s;
}
.footer-input:focus {
    border: 2px solid #b22234;
    outline: none;
}

.footer-btn {
    background: linear-gradient(90deg, #b22234 60%, #800000 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    margin-top: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(178,34,52,0.12);
    transition: background 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-btn:hover {
    background: linear-gradient(90deg, #800000 60%, #b22234 100%);
    box-shadow: 0 4px 16px rgba(178,34,52,0.18);
}
.footer-bottom {
    margin-top: 32px;
    font-size: 1rem;
    color: #fff;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Scroll to Top Button */

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 100;
  background-color:#B22234;
  color: #222222;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color:#F9F9E8;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

#scrollToTopBtn:active {
  transform: scale(0.95);
}
/* ABOUT SECTION */

.about-section {
    padding: 80px 20px;
    background-color: #F5F5DC;
    text-align: center;
}

.about-title {
    font-size: 2.8rem;
    color: #800000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
}

.about-content p {
    margin-bottom: 20px;
}