@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap");
@import "./headerFooter.css";
/* ABOUT ME PAGE */
#about-me {
  display: block;
  margin: 0 auto;
  width: 90%;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #6f7364;
  margin: 20px auto;
  margin-bottom: 50px;
}

#bio-about-me {
  background-color: white;
  color: black;
  text-align: center;
  font-family: "Antonio", sans-serif;
  font-size: 0.9rem;
  position: relative;
  justify-self: center;
  align-self: center;
  border-radius: 10px;
  width: 80% !important;
  box-shadow: 5px 5px 10px #6f7364;
  padding: 20px;
  margin-bottom: 75px;
}

.contact {
  background-color: white;
  color: black;
  text-align: center;
  font-family: "Antonio", sans-serif;
  font-size: 1em;
  position: relative;
  justify-self: center;
  align-self: center;
  border-radius: 10px;
  width: 85% !important;
  box-shadow: 5px 5px 10px #6f7364;
  padding: 3px;
  margin-bottom: 75px;
}

p#two {
  font-weight: 700;
}

/* tablet screen width */
@media (min-width: 500px) and (max-width: 900px) {
  #about-me {
    width: 60%;
  }
  #bio-about-me {
    font-size: 0.9rem;
  }
}
@media (min-width: 901px) {
  #about-me {
    width: 30%;
  }
}
:root {
  --background: #ffffff;
  --text: #111111;
  --card: #f5f5f5;
  --border: #e5e5e5;
}

:root {
  color-scheme: light dark;
}

body {
  background-color: var(--background);
  color: var(--text);
  padding: 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0b0f14;
    --text: #0b0f14;
    --card: #121a24;
    --border: #233041;
  }
}
.page-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main-button {
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #6f7364;
  font-family: "Antonio", sans-serif;
  font-size: 1em;
  border: #6f7364 solid 1px;
  max-width: 300px;
  width: 75%;
  box-shadow: 5px 5px 10px #6f7364;
  margin: 20px auto;
  cursor: pointer;
  transition: transform 0.2s ease;
  height: 300px;
  padding: 1rem;
}
.main-button:hover {
  transform: scale(1.03);
}
.main-button img {
  width: 200px;
  aspect-ratio: 1/1;
  max-height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 30px 0 10px 0;
}
.main-button p {
  margin: 0;
  text-align: center;
  font-size: 1em;
  padding-bottom: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.wrapper a {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
}

/* HEADER */
.header {
  justify-content: center;
  align-items: center;
}

.logo {
  border: none !important;
  width: 90%;
  transition: transform 0.5s;
  display: block;
  margin: 0 auto;
}

/* DROPDOWN IN HEADER */
.dropdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hamburger-icon,
#close-icon {
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  width: auto;
  height: auto;
  padding: 0.5rem;
  cursor: pointer;
  margin: 0 auto;
  font-family: inherit;
}

#close-icon {
  display: none;
}

.dropdown-container.open #hamburger-icon {
  display: none;
}

.dropdown-container.open #close-icon {
  display: block;
}

#hamburger-icon:hover,
#close-icon:hover {
  transform: scale(1.3) translateY(-1px);
  transition: transform 0.3s ease-in-out;
  color: #73796d;
}

#dropdown-links {
  display: flex;
  flex-direction: column;
  width: 175px;
  text-align: center;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  margin: 0 auto;
}
#dropdown-links a {
  text-decoration: none;
  color: black;
  padding: 8px 0;
}
#dropdown-links a:hover {
  background-color: #f0f0f0;
  color: #333;
}

#dropdown-links.show {
  opacity: 1;
  max-height: 500px;
  pointer-events: auto;
}

#toggle-theme button {
  background-color: #5a5a5a;
  color: #f1f1f1;
  border-radius: 5px;
  padding: 0.25px 0.5px;
}

/* .login-button {
  background-color: #6f7364;
  color: white;
  border: none;
  padding: 10px; 
  margin-top: 10px;
  font-family: 'Antonio', sans-serif;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
  margin-bottom: 60px;
}
.login-button:hover {
  background-color: #555;
}
.login-link {
  display: inline-block;
  background-color: #6f7364;
  color: white;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Antonio', sans-serif;
  transition: background-color 0.3s ease;
} */
/* FOOTER */
footer {
  background-color: #6f7364;
  color: white;
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
  font-family: "Antonio", sans-serif;
  font-size: 0.5em;
  font-weight: 10;
  position: relative;
  width: 100%;
  z-index: 1000;
}

.social img {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 2px solid #eceaea;
  border-radius: 5px;
}

/* tablet screen width */
@media (min-width: 500px) {
  .header {
    margin-bottom: 30px;
  }
  .logo {
    width: 300px;
    margin: 0 auto;
  }
  .dropdown-container {
    flex-direction: row;
    justify-content: center;
  }
  #hamburger-icon,
  #close-icon {
    display: none;
  }
  #dropdown-links,
  #dropdown-links.show {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    opacity: 1;
    max-height: none;
    pointer-events: auto;
    overflow: visible;
    width: auto;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  #dropdown-links a,
  #dropdown-links.show a {
    padding: 0;
  }
}
/* Large screen width */
@media (min-width: 901px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  .logo {
    width: 200px;
    margin: 0;
  }
  footer {
    width: 100%;
  }
  footer p {
    font-size: 1rem;
  }
  .social img {
    width: 70px;
    height: 70px;
  }
}
/* ALL ITEMS */
.all-items {
  font-family: "Roboto", sans-serif;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.gallery img {
  display: block;
  width: 200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #6f7364;
  cursor: pointer;
  border: 3px solid #e6cdb4;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.5);
}

.product-card {
  width: 220px;
  padding: 1rem;
  margin: 0;
  text-align: left;
  box-sizing: border-box;
}
.product-card img {
  display: block;
  width: 200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #6f7364;
  cursor: pointer;
  border: 3px solid #e6cdb4;
  transition: transform 0.3s ease;
}
.product-card img :hover {
  transform: scale(1.5);
}

/* title */
h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

/* price */
.price {
  font-family: "Roboto", sans-serif;
  font-size: 0.7rem;
  color: #555555;
}

/* description */
.description {
  font-family: "Roboto", sans-serif;
  font-size: 0.6rem;
  color: #777777;
}

/* PHOTOGRAPHY PAGE */
.slider-container {
  width: 90%;
  overflow: hidden;
}

.slides {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem;
}

.slide {
  flex: 0 0 90%;
  max-width: 500px;
  scroll-snap-align: center;
  text-align: center;
}
.slide img {
  width: 90%;
  height: clamp(300px, 60vw, 500px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.slide-title {
  text-align: center;
  margin-top: 0.5rem;
}

#swipe-pix {
  font-family: "Antonio", sans-serif;
  font-weight: 50;
  font-size: 12px;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.about-photography-p {
  display: flex;
  margin: 0 auto 3rem auto;
  width: 80% !important;
  align-items: center;
  justify-content: center;
}

#description {
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 5px 5px 10px #6f7364;
  max-width: 80% !important;
}

/*# sourceMappingURL=main.css.map */
