/*
Theme Name: Diredawa
Template: twentytwentyfour
Description: Theme enfant Dire Dawa 
Version: 1.0
Author: Manon Chauvel
*/

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: 'Inter';
  font-weight: 100;
  overflow-x: hidden;
  background: #0a0a0a;
  margin: 0;
  padding: 0;
}

.landing {
  display: flex;
  justify-content: center; 
  align-items: center;    
  background: #0a0a0a;     
  text-align: center;
  flex-direction: column;
  margin-top: 0;
  padding-top: 40px;
  min-height: 100vh;
}

main.landing {
  padding: 20px;
}

.landing__inner {
  width: 100vh;
  align-items: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.landing__title {
  color: #E0B069;
  text-align: center;
  font-family: 'Lora';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 146.1%;
  text-transform: uppercase;
}

.subtitle {
  color: #fefdfc;
  font-family: 'Inter';
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 146.1%;
  margin-top: 12px;
}

.landing__subtitle {
  color: #fefdfc;
  font-family: 'Inter';
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 146.1%;
  margin-top: 12px;
}

.opening_soon {
  color: #E0B069;
  text-align: center;
  font-family: 'Inter';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 146.1%;
  text-transform: uppercase;
  margin-top: 22px;
  padding: 30px 50px;
  border-radius: 15px;
  position: relative;
  animation: textBlink 2s ease-in-out infinite;
}

.opening_soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(120deg, #1a4d2e, #ffd700, #8b0000);
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
  opacity: 0.3;
  z-index: -1;
  filter: blur(20px);
}

@keyframes textBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  33% {
    background-position: 50% 50%;
  }
  66% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.food-gallery {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 22px 0;
}

.food-gallery img {
  width: 25%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 0.2px solid #fefdfc;
  padding: 0.2px;
  background: #fefdfc; 
}

.footer-credit {
  text-align: center;
  padding: 30px 20px;
  color: #666;
  font-family: 'Inter';
  font-size: 14px;
  margin-top: 50px;
}

.footer-credit a {
  color: #E0B069;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .landing {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .landing__inner {
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .landing__title {
    color: #E0B069;
    text-align: center;
    font-family: 'Lora';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 146.1%;
    text-transform: uppercase;
  }

  .subtitle {
    color: #fefdfc;
    font-family: 'inter';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 146.1%;
    margin-top: 12px;
  }

  .landing__subtitle {
    color: #fefdfc;
    font-family: 'inter';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 146.1%;
    margin-top: 12px;
  }

  .food-gallery {
    flex-direction: column;
    align-items: center;
  }
    
 .food-gallery img {
    width: 80%;
    max-width: 400px;
    border: 0.2px solid #fefdfc;
    padding: 0.2px;
    background: #fefdfc;
  }

  .opening_soon {
    color: #E0B069;
    font-family: 'Inter';
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 146.1%;
    text-transform: uppercase;
    margin-top: 22px;
    padding: 20px 30px;
  }

  .footer-credit {
    font-size: 12px;
    margin-top: 30px;
  }
}