@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

header {
  padding: 10px 0;
  /* position: fixed;
  top: 0;
  z-index: 100; */
  width: 100%;
}

nav ul {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
a p {
  text-transform: uppercase;
  color: #002266;
  font-weight: 800;
  font-size: 20px;
}
nav ul li a {
  color: #002266;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* .container-features {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
  background-color: #fff;
}

.feature {
  text-align: center;
  width: 30%;
} */

footer {
  background-color: #002266;
  color: white;
  padding: 30px 0;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-menu li {
  margin-left: 20px;
}

.footer-menu a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #f4a300;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container-header {
    flex-direction: column;
  }
}

/* ======= CONTACTO ======= */
.contact {
  background-color: #e9f2fb;
  color: #002266;
  padding: 100px 20px;
}
.container-contact {
  display: flex;
}
.contact-text,
.form,
.contact-img {
  flex: 1;
}
.contact-img {
  display: flex;
  justify-content: end;
}
.contact-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-img img:hover {
  transform: scale(1.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #ffcc70;
  margin: 10px;
  border-radius: 2px;
}

.contact p {
  font-size: 1.1rem;
}
.container-contact {
  margin-top: 50px;
}
/* INFORMACIÓN DE CONTACTO */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}
.info-item p {
  display: flex;
  flex-direction: column;
  justify-content: start;

  align-items: start;
}

.info-item i {
  font-size: 1.5rem;
  color: #ffcc70;
}
.info-item strong {
  color: #4447de;
}
/* FORMULARIO DE CONTACTO */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #ffcc70;
  color: #002266;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffb347;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: #ffcc70;
  transition: transform 0.3s ease-in-out;
}

.info-item:hover i {
  transform: scale(1.2);
}
.btn-contact {
  display: inline-block;
  background-color: #ffcc70;
  color: #002266;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: #ffb347;
  transform: scale(1.05);
}

.contact-button-container {
  margin-top: 20px;
  text-align: center;
}

/* privacy */

.privacy-policy {
  background-color: #f5f5f5;
  padding: 100px 0;
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002266;
  margin-bottom: 20px;
  text-align: center;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #002266;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.privacy-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-left: 20px;
}

.privacy-list li {
  margin-bottom: 10px;
}

.final-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* terms */

.terms-conditions {
  background-color: #f4f4f4;
  padding: 100px 0;
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002266;
  margin-bottom: 20px;
  text-align: center;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #002266;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.terms-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-left: 20px;
}

.terms-list li {
  margin-bottom: 10px;
}

.final-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* cookies */

.cookies-policy {
  padding: 100px 0;
  font-size: 1rem;
  color: #333;
}

h2.section-title {
  text-align: center;
  font-size: 2rem;
  color: #002266;
  margin-bottom: 20px;
}

h3.subsection-title {
  color: #002266;
  font-size: 1.5rem;
  margin-top: 30px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

.cookies-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.category-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-item h4 {
  color: #002266;
  font-size: 1.2rem;
}

p,
ul {
  line-height: 1.6;
}

p {
  margin-bottom: 15px;
}

footer {
  background-color: #002266;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #f4a300;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* cookies */

/* Стиль для блоку куків */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 1, 46, 0.9);
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-top: 3px solid #002266;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent .cookie-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-consent p {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 10px;
}

.cookie-consent a {
  color: #002266;
  text-decoration: none;
  font-weight: bold;
}

.cookie-consent a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-accept,
.cookie-decline {
  background-color: #002266;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cookie-accept:hover {
  background-color: #002266;
}

.cookie-decline {
  background-color: #b22222;
}

.cookie-decline:hover {
  background-color: #8b0000;
}
@media (max-width: 768px) {
  footer {
    padding: 20px 20px;
  }
}

/* General Styling */
.solar-roastery {
  background-color: #f5f5f5; /* Світло-сірий фон */
  padding: 60px 0;
  animation: fadeInUp 1s ease-out forwards;
}

.solar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.solar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.solar-text {
  flex: 1;
  max-width: 50%;
  padding-right: 30px;
  opacity: 0;
  animation: fadeInLeft 1s ease-out forwards;
}

.solar-title {
  font-size: 2.5rem;
  color: #002266; /* Насичений зелений для заголовку */
  font-weight: bold;
  margin-bottom: 20px;
}

.solar-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solar-image {
  flex: 1;
  max-width: 50%;
  text-align: center;
  opacity: 0;
  animation: fadeInRight 1s ease-out forwards;
}

.solar-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .solar-title {
    font-size: 2rem;
  }

  .solar-description {
    font-size: 1rem;
  }

  .solar-content {
    flex-direction: column;
    align-items: center;
  }

  .solar-text {
    max-width: 100%;
    padding-right: 0;
  }

  .solar-image {
    max-width: 100%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-section {
  background-color: #002266;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.mission-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.mission-text {
  flex: 1;
  text-align: left;
  animation: fadeInLeft 1.5s ease-in-out;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.mission-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mission-image {
  flex: 1;
  text-align: center;
  animation: fadeInRight 1.5s ease-in-out;
}

.mission-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .mission-content {
    flex-direction: column;
    text-align: center;
  }
  .mission-text {
    text-align: center;
  }
}

.products-services {
  background-color: #002266;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-in-out;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}
.service-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 15px;
  animation: bounceIn 1s ease-in-out;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.sustainability-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
}
.sustainability-title {
  font-size: 2rem;
  color: #002266;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}
.sustainability-text {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
}
.sustainability-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sustainability-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}
.sustainability-item:hover {
  transform: translateY(-5px);
}
.sustainability-item i {
  font-size: 2rem;
  color: #002266;
  margin-bottom: 10px;
}
.sustainability-item h3 {
  font-size: 1.5rem;
  color: #002266;
}
.sustainability-item p {
  font-size: 1rem;
  color: #555;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.benefits-section {
  background: linear-gradient(to bottom, #e0f7fa, #ffffff);
  padding: 60px 20px;
  text-align: center;
}
.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-title {
  font-size: 2rem;
  color: #002266;
  margin-bottom: 30px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.benefit-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.benefit-item:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  font-size: 2.5rem;
  color: #fbc02d;
  margin-bottom: 10px;
}
h3 {
  color: #002266;
}

.team-section {
  background: #f0f8ff; /* Ніжно-блакитний фон */
  padding: 80px 0;
}

.team-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.team-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.team-text {
  flex: 1;
}

.team-title {
  font-size: 36px;
  color: #002266; /* Головний колір */
  font-weight: bold;
  margin-bottom: 20px;
}

.team-description {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.team-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.team-list li {
  font-size: 18px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-list i {
  color: #002266;
  font-size: 22px;
}

.team-image img {
  width: 450px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .team-content {
    flex-direction: column;
    text-align: center;
  }

  .team-image img {
    width: 100%;
    max-width: 400px;
  }
}
/* about-page */

.about-section {
  background: linear-gradient(
    to right,
    #f0f8ff,
    #ffffff
  ); /* Ніжний блакитно-білий фон */
  padding: 80px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-title {
  font-size: 36px;
  color: #002266; /* Основний колір */
  font-weight: bold;
  margin-bottom: 20px;
}

.about-description {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.about-image img {
  width: 450px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
  }
  .container-contact {
    flex-direction: column;
  }
  .contact {
    padding: 20px;
  }
}

.history-section {
  background-color: #f4f9fc; /* Світло-блакитний фон */
  padding: 80px 0;
}

.history-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.history-content {
  text-align: center;
  color: #002266;
}

.history-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #002266; /* Основний колір */
}

.history-description {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.history-description strong {
  font-weight: bold;
  color: #002266;
}

@media (max-width: 992px) {
  .history-content {
    text-align: left;
  }
}

.mission-values-section {
  background-color: #e9f2fb; /* Легкий блакитний фон */
  padding: 80px 0;
}

.mission-values-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.mission-values-content {
  text-align: center;
  color: #002266;
}

.mission-values-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #002266;
}

.mission-values-description {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.value-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 300px;
  transition: all 0.3s ease-in-out;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-title {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
  color: #002266;
}

.value-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.value-item i {
  font-size: 36px;
  color: #002266;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .value-item {
    max-width: 100%;
  }
}
.why-choose-us {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #002266;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-header {
  margin-bottom: 40px;
}

.why-title {
  font-size: 36px;
  font-weight: bold;
  color: #002266;
}

.why-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.why-item {
  background-color: #f7f7f7;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.why-item-title {
  font-size: 22px;
  font-weight: bold;
  color: #002266;
  margin-top: 20px;
}

.why-item-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

.why-item i {
  font-size: 40px;
  color: #002266;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .why-item {
    max-width: 100%;
  }
  .team-content {
    padding: 0 20px;
  }
}
