body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
	overflow-x: hidden;
  width: 100%;

}

header nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #d1d1d1;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-container {
  margin-right: 20px;
  flex-shrink: 0;
}

header .logo {
  height: 50px;
  max-width: 100%;
}

header nav.sticky ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: space-around;
}

header nav.sticky ul li {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

header nav.sticky ul li a {
  color: #030303;
  text-decoration: none;
  padding: 5px 5px;
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  transition: all 0.3s ease;
}

header nav.sticky ul li a:hover {
  color: red;
  font-weight: bold;
}

header nav.sticky ul li a::after {
  content: '';
  display: block;
  height: 2px;
  background: red;
  width: 0;
  transition: width 0.3s;
}

header nav.sticky ul li a:hover::after {
  width: 100%;
}

header nav.sticky ul li.special a {
  border: 2px solid #FF0000;
  padding: 8px 20px;
  border-radius: 15px;
  background-color: #ff0000;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
}

header nav.sticky ul li.special a:hover {
  background-color: #FF0000;
  color: #ffffff;
}

nav.sticky ul li a.active {
  position: relative;
}

nav.sticky ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: red;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-content svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}


@media only screen and (min-width: 769px) {
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #c7c7c7;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    letter-spacing: 0.6px;
    line-height: 26px;
    transition: background-color 0.3s ease;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: flex !important;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 42px;
  background: none;
  border: none;
}

@media only screen and (max-width: 768px) {
  .spacer + .video-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .spacer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  header nav.sticky {
    flex-wrap: wrap;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
  }

  header .logo {
    height: 32px;
    max-width: 100px;
  }

  header nav.sticky ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #d1d1d1;
    width: 100%;
    padding: 10px;
  }

  header nav.sticky ul.active {
    display: flex;
  }

  header nav.sticky ul li {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }

  header nav.sticky ul li a {
    font-size: 0.9rem;
    padding: 8px 0;
    width: 100%;
  }

  header nav.sticky ul li.special a {
    text-align: center;
    width: 80%;
    display: block;
  }

  .dropdown-content {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 4px;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    line-height: 1.4;
  }

  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}
.background-section {
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/org_fdfa8732151981d1_1629293348000.jpg/:/rs=w:1440,h:1440');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding-top: 100px;
    padding-bottom: 100px;
    height: 60vh;
    z-index: 0;
}

.background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.background-section > * {
    position: relative;
    z-index: 2;
}

.text-box {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white; 
    text-align: center;
    padding: 20px;
    font-size: 24px;
}
.text-box p {
    color: white;
    text-shadow: 1px 1px 4px #000;
}
.description {
    text-align: center;
    padding: 20px;
    position: relative; 
}
.content-area {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 40px;
    width: auto;
    max-width: 1200px;
}

.left-boxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 500px;
    margin-right: 80px;
}

.left-boxes .box {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    font-family: 'Roboto', sans-serif;
    color: #333;
    text-align: center; 
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.left-boxes .box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.right-box {
    background: #ffffff;
    padding: 20px;
    font-size: 16px;
    width: 40%;
    flex: 0 0 20%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #333;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.right-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.plant-hours,
.plant-contact {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    text-align: center;
}

.plant-contact a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.plant-contact a:hover {
    text-decoration: underline;
}	
#plant-notes {
  white-space: pre-wrap;
}
@media (max-width: 1200px) {
    .text-box {
        top: 15%;
        font-size: 22px;
        padding: 15px;
    }
    
    .text-box h2 {
        font-size: 2em;
    }
    
    .content-area {
        top: 60%;
        gap: 30px;
        max-width: 95%;
    }
    
    .left-boxes {
        width: 450px;
        margin-right: 40px;
    }
    
    .right-box {
        width: 35%;
    }
}

@media (max-width: 992px) {
    .background-section {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .text-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 20px;
        padding: 20px 15px;
        margin-top: 0;
    }
    
    .text-box h2 {
        font-size: 1.8em;
    }
    
    .content-area {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        width: 90%;
        max-width: 600px;
    }
    
    .left-boxes {
        width: 100%;
        margin-right: 0;
        align-items: stretch;
    }
    
    .left-boxes .box {
        width: 100%;
    }
    
    .right-box {
        width: 100%;
        flex: 1;
    }
}

@media only screen and (max-width: 768px) {
    .background-section {
        background-attachment: scroll;
        padding: 180px 20px 80px;
        min-height: 100vh;
        height: auto;
    }
    
    .text-box {
        font-size: 18px;
        padding: 10px;
    }
    
    .text-box h2 {
        font-size: 1.5em;
    }
    
    .text-box p {
        font-size: 0.95em;
    }
    
    .content-area {
        margin-top: 30px;
        width: 100%;
        max-width: 500px;
        gap: 20px;
    }
    
    .left-boxes {
        width: 90%;
    }
    
    .left-boxes .box {
        font-size: 16px;
        padding: 20px;
        background: #ffffffdd;
    }
    
    .right-box {
        width: 90%;
        font-size: 15px;
        padding: 20px;
        background: #ffffffdd;
    }
    
    .plant-hours,
    .plant-contact {
        font-size: 14px;
    }
    
    .plant-contact a {
        color: #0066cc;
    }
}


.footer {
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/Turkc.png/:/rs=w:1440,h:1440');
    background-size: cover;
    background-position: center 75%;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 80px 40px 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-line {
    font-size: 1.1em;
    color: #ddd;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-phone {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff0000;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 8px;
}
.social-icon svg,
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon:hover svg,
.social-icon:hover img {
    filter: brightness(0) invert(1);
}
.footer-nav {
    text-align: left;
}

.footer-nav h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff0000;
}

.footer-nav ul li a:hover {
    color: #ff0000;
    padding-left: 15px;
}

.footer-nav ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-info {
    text-align: left;
}

.footer-info h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-info-item {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-info-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-legal {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-text {
    color: #aaa;
    font-size: 0.9em;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff0000;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 120px 20px 0;
    background-size: cover;
    background-position: center 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 600px;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .footer-logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 160px;
    margin: 0 auto 10px auto;
    display: block;
    z-index: 2;
  }

  .footer-contact {
    margin-bottom: 20px;
    z-index: 2;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    line-height: 1.4;
    text-align: center;
  }

  .footer-nav {
    position: relative !important;   
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
    z-index: 2;
    text-align: left;
    align-self: flex-start;
  }

  .footer-nav h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
  }

  .footer-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-nav ul li {
    margin-bottom: 10px;
  }

  .footer-nav ul li a {
    font-size: 0.95em;
    color: white;
    text-decoration: none;
  }

  .footer-legal {
    position: relative;
    font-size: 0.85em;
    padding: 12px 0;
    background-color: #222;
    color: #ccc;
    width: 100%;
    text-align: center;
    z-index: 2;
    margin-top: auto;
  }

  .footer-legal a {
    color: #a9d5de;
    text-decoration: none;
    margin-left: 10px;
  }
}
