/*
    ZELENA: #acd77a;
    SIVA: #f2fbff;

    background-image: linear-gradient(to right, #d89b21, #b6903e, #a08340);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  background: linear-gradient(to right, #d89b21, #b6903e, #a08340);
*/

@font-face {
  font-family: vladimir;
  src: url(fonts/AmeyallindaSignaturRegular400.otf);
}

@font-face {
  font-family: msr;
  src: url(fonts/Montserrat-ExtraBold.ttf);
}

@font-face {
  font-family: roboto-bold;
  src: url(fonts/Roboto-Bold.ttf);
}

@font-face {
  font-family: roboto-regular;
  src: url(fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: roboto-light;
  src: url(fonts/Roboto-Light.ttf);
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f7f2cf;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  margin: 0;
}

/* GLAVNI SADRZAJ => */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #e9de97;
  background-color: #f2e9b2;
}

/* RODJENDANKO */
.rodjendanko-content {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #8d6612, #a17619, #b38421);
  background-position: right;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 10px;
  left: 0;
  padding: 10px 25px 0px 20px;
}

.social {
  width: 32px;
  display: flex;
  justify-content: flex-end;
}

.brand {
  font-size: 18px;
  color: white;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  font-weight: bold; /* Dodato za isticanje */
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7); /* Dodato senčenje za bolji kontrast */
  padding: 2px 5px; /* Dodato da se outline ne lepi uz tekst */
  border-radius: 5px; /* Zaobljeni uglovi outline-a za bolji izgled */
}

.rodjendanko {
  width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rodjendanko-text {
  font-size: 30px;
  text-align: center;
  color: white;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: italic;
  font-weight: bold; /* Dodato za isticanje */
  letter-spacing: 0px;
  margin: 20px 0px 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Dodato za bolju vidljivost */
  padding: 5px; /* Dodato da outline ne bude preblizu teksta */
}

.dugme > span {
  color: #ffffff; /* Boja teksta da kontrastira sa novom pozadinom */
}

.dugme {
  background-color: none; /* Popunjena pozadina u boji teksta */
  padding: 8px 40px;
  border-radius: 5px;
  border: 1px solid white; /* Uklonjen border jer je pozadina već naglašena */
  cursor: pointer;
  margin-top: 2px;
  color: #ffffff; /* Tekst u kontrastnoj beloj boji */
  font-weight: bold; /* Dodato za isticanje */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Animacija za hover */
}

.dugme:hover {
  background-color: #b38421; /* Blago tamnija nijansa za hover efekat */
}

.dugme:hover > span {
  color: #f2fbff;
}

/* KALENDAR */
.calendar-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  max-width: 100%;
  width: 85%;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  padding: 20px 0px 50px;
}

.calendar-container > h2 {
  margin: 0px 20% 15px 20%;
  text-align: center;
  background: linear-gradient(to right, #8d6612, #a17619, #b38421);
  border-radius: 20px;
  padding: 10px 5px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.days-of-week {
  display: flex;
  flex-direction: co;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
  background-image: linear-gradient(to right, #8d6612, #a17619, #b38421);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 12px;
}

.days-of-week span {
  flex: 1;
  text-align: center;
  padding: 5px;
}

.dates {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 10px;
}

.dates span {
  flex: 1 0 calc((100% - 48px) / 7);
  min-width: 28px;
  margin-bottom: 8px;
  padding: 8px 0;
  border-radius: 5px;
  text-align: center;
  color: #5c5b5b;
  box-sizing: border-box;
}

.dates > .dan-proslave {
  background: linear-gradient(to right, #8d6612, #a17619, #b38421);
  border-radius: 200px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7);
}

.dates > .sporedni-dani {
  color: #bebdbd;
}

/* PLAN */
.plan {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  gap: 80px;
  padding: 80px 0px 70px;
  text-align: center;
  align-items: center;
}

.kalendar,
.sat,
.lokacija-icon {
  width: 60px;
  background-color: #f7f2cf;
  border-radius: 50%;
  padding: 10px;
}

.pozadina {
  background: linear-gradient(to right, #8d6612, #a17619, #b38421);
  border-radius: 60% 40% 60% 40% / 50% 50% 20% 70%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin-bottom: 30px;
}

.plan-desc {
  font-size: 18px;
  font-weight: bold;
  color: black;
  text-shadow: 1px 2px 15px rgba(0, 0, 0, 0.7);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

/* => GLAVNI SADRZAJ END */

/* DETALJNO */
.detaljno {
  color: #515050;
  background: linear-gradient(to right, #8d6612, #a17619, #b38421);
  background-position: left;
  width: 100%;
  padding: 60px 0px 60px;
  border-bottom: 1px solid #878787;
  border-top: 1px solid #878787;
}

.detaljno-kartica {
  background-color: #f3ebbe;
  border-radius: 15px;
  text-align: center;
  width: 85%;
  margin: 0px auto;
  padding: 30px 0px 45px;
}

.pozvan {
  color: 878787;
  font-size: 14px;
  margin-bottom: -2px;
}

.godine {
  font-size: 17px;
  font-weight: bold;
  background-image: linear-gradient(to right, #9b731e, #ad8630, #c29536);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.detaljno-vreme {
  font-size: 15px;
  font-weight: bold;
  background-image: linear-gradient(to right, #9b731e, #ad8630, #c29536);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.potvrda {
  color: #515050;
  font-size: 13px;
}

.detaljno-lokacija {
  color: #515050;
  font-size: 14px;
  margin: 10px 0px 20px;
  font-weight: bold;
  background-image: linear-gradient(to right, #9b731e, #ad8630, #c29536);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.lokacija-dugme {
  background: linear-gradient(to right, #9b731e, #ad8630, #c29536);
  font-size: 10px;
  color: white;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 30px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.lokacija-dugme:hover {
  background: linear-gradient(to right, #8d6612, #a17619, #b38421);
}

.tortica {
  width: 60px;
  margin: 10px 0px 0px;
}

.odbrojavanje {
  margin: 22px 0px 18px;
}

#tajmer {
  font-size: 11px;
}

/* FOOTER */
.footer-content {
  width: 100%;
  padding: 20px;
  background-color: #f3ebbe;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  background-image: linear-gradient(to right, #9b731e, #ad8630, #c29536);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* TABLET */
@media only screen and (min-width: 600px) {
}

/* DESKTOP */
@media only screen and (min-width: 900px) {
  /* GLAVNI SADRZAJ => */
  .main-content {
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding-right: 80px;
    background-color: #f3ebbe;
  }

  /* RODJENDANKO */
  .rodjendanko-content {
    flex-direction: column;
    height: 100vh;
    width: 55%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 10px 25px 0px 20px;
  }

  .social {
    width: 32px;
    display: flex;
    justify-content: flex-end;
  }

  .brand {
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
  }

  .rodjendanko {
    width: 380px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .rodjendanko-text {
    font-size: 30px;
    text-align: center;
    letter-spacing: 2px;
  }

  .dugme {
    cursor: pointer;
  }

  .dugme > span {
    transition: color 0.3s;
  }

  /* KALENDAR */
  .calendar-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    max-width: 55%;
    width: 100%;
  }

  .calendar-container > h2 {
    margin: 0px 2% 20px 2%;
    text-align: left;
    font-size: 20px;
    border-radius: 20px;
    padding: 15px 25px;
  }

  .days-of-week {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .days-of-week span {
    flex: 1;
    padding: 5px;
  }

  .dates {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
  }

  .dates span {
    flex: 1 0 calc((100% - 48px) / 7);
    min-width: 28px;
    margin-bottom: 8px;
    padding: 8px 0;
    border-radius: 5px;
  }

  .dates > .dan-proslave {
    background: linear-gradient(to right, #8d6612, #a17619, #b38421);
    border-radius: 200px;
    font-weight: bold;
  }

  .dates > .sporedni-dani {
    color: #bebdbd;
  }

  /* PLAN */
  .plan {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 150px;
    padding: 150px 0px 130px;
    text-align: center;
    align-items: center;
  }

  .kalendar,
  .sat,
  .lokacija-icon {
    width: 100px;
    border-radius: 50%;
    padding: 15px;
  }

  .pozadina {
    padding: 30px;
    margin-bottom: 30px;
  }

  .plan-desc {
    font-size: 20px;
  }

  .odbrojavanje {
    margin: 29px 0px 0px;
  }

  #tajmer {
    font-size: 15px;
  }

  /* => GLAVNI SADRZAJ END */

  /* DETALJNO */
  .detaljno {
    width: 100%;
    padding: 60px 0px 60px;
  }

  .detaljno-kartica {
    text-align: center;
    width: 50%;
    margin: 0px auto;
    padding: 50px;
  }

  .pozvan {
    font-size: 18px;
    margin-bottom: -10px;
  }

  .godine {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .detaljno-vreme {
    font-size: 20px;
  }

  .potvrda {
    color: #5a5a5a;
    font-size: 13px;
  }

  .detaljno-lokacija {
    margin: 25px 0px 30px;
  }

  .lokacija-dugme {
    font-size: 13px;
    padding: 14px 20px;
  }

  .tortica {
    width: 85px;
    margin: 10px;
  }

  /* FOOTER */
  .footer-content {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    background-color: #f3ebbe;
  }
}
