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

body {
  font-family: Arial, serif;
}

/* NAVBAR */

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: white;
  color: black;
}

/* LOGO */

#logo-container {
  display: flex;
  align-items: center;
}

#logo-image {
  width: 180px;
  height: auto;
  display: block;
}

/* NAV LINKS */

#nav-links {
  display: flex;
  gap: 35px;
}

#nav-links a {
  text-decoration: none;
  color: rgb(66, 33, 3);
  font-size: 20px;
  transition: 0.3s;
}

#nav-links a:hover {
  color: #e8c07d;
}

/* HERO SECTION */

#hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;

  background-image: url("media/newbackgroundblur.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}

#hero-text {
  max-width: 750px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 25px;

  text-align: center;
  color: #fff1d1;
}
#hero-text h1 {
  font-size: 72px;
  margin-bottom: 20px;
}

#hero-text h2 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: normal;
  color: #fff1d1;
}

#hero-text p {
  font-size: 24px;
  line-height: 1.7;
}

.section-label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;

  color: #8b5e3c;

  margin-bottom: 12px;
}

/* CRAFT SECTION */

.craft-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: 75px;

  color: #3f1907;

  margin-bottom: 15px;
}

.craft-subtitle {
  font-size: 30px;

  color: #555;

  margin-bottom: 50px;
}

#craft-tags {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;

  max-width: 1400px;

  margin: 0 auto;
}

.craft-tag {
  padding: 12px 22px;

  border: 1px solid #ddd;

  border-radius: 999px;

  background-color: white;

  font-size: 18px;

  transition: 0.3s;

  cursor: pointer;

  margin-bottom: 18px;
}

.craft-tag:hover {
  background-color: #f0dfc5;

  border-color: #d6b47c;

  transform: translateY(-2px);
}

/* WEDDING SECTION */

#wedding-section {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 80px;

  padding: 120px 80px;

  background-color: #f7f3eb;
}

#wedding-left {
  flex: 1;

  text-align: left;
}

.wedding-title {
  font-family: Helvetica, serif;

  font-size: 72px;

  line-height: 0.95;

  color: #4b1e12;

  margin-bottom: 35px;
}

.wedding-text {
  font-size: 26px;

  line-height: 1.7;

  color: #444;

  margin-bottom: 40px;
}

#wedding-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-bottom: 50px;
}

.wedding-tag {
  padding: 12px 22px;

  border-radius: 999px;

  border: 1px solid #ddd;

  background-color: white;

  font-size: 18px;
}

#wedding-button {
  display: inline-block;

  background-color: #6d3825;

  color: white;

  padding: 22px 36px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 24px;

  font-weight: bold;

  transition: 0.3s;
}

#wedding-button:hover {
  background-color: #8a4b31;
}

/* RIGHT SIDE */

#wedding-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.wedding-card {
  min-height: 230px;
  background: linear-gradient(135deg, #f5ecd9, #ebe3d1);
  border-radius: 18px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px;

  font-family: Helvetica, serif;
  font-size: 42px;
  line-height: 1.1;
  text-align: center;

  color: #6d3825;
}

.large-card {
  min-height: 360px;
}

.medium-card {
  min-height: 280px;
}

hr {
  width: 75px;
  height: 3px;

  border: none;

  background-color: #8b5e3c;

  margin: 15px auto 25px auto;
}

/* BUTTON */

#signup-button {
  display: inline-block;
  padding: 18px 30px;
  border-radius: 8px;
  background-color: #e8c07d;
  color: #222;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

#signup-button:hover {
  background-color: #d6a95e;
}

/* GENERAL SECTIONS */

section {
  padding: 90px 60px;
  text-align: center;
}

section h2 {
  font-size: 46px;
  margin-bottom: 25px;
  color: #5c2e1f;
}

section p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.7;
}

/* ABOUT SECTION */

#about {
  background-color: #f7f3eb;
}

#about h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 0.95;
  font-weight: 600;
  color: #5c2e1f;
  margin-bottom: 30px;
}

.italic-text {
  font-style: italic;
  font-weight: 500;
}

#about p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.6;
  color: #333;
}

/* CARDS */

.card-container {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.artist-card {
  width: 320px;
  background-color: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.image-placeholder {
  height: 200px;
  background-color: #e8c07d;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #5c2e1f;
  margin-bottom: 20px;
}

.artist-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #5c2e1f;
}

.artist-card p {
  font-size: 18px;
  line-height: 1.6;
}

/* JOIN SECTION */

#join {
  background-color: #f0dfc5;
}

/* FOOTER */

footer {
  background-color: #5c2e1f;
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 16px;
}

/* JOIN PAGE */

#join-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background:
    linear-gradient(rgba(40,18,12,0.45), rgba(40,18,12,0.45)),
    url("media/joinimg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#join-card {
  width: 100%;
  max-width: 600px;
  background-color: rgba(255, 248, 235, 0.92);
  padding: 50px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

#join-card h1 {
  font-size: 46px;
  color: #5c2e1f;
  margin-bottom: 15px;
}

#join-card p {
  font-size: 22px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 30px;
}

#join-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#join-form input {
  padding: 16px;
  border: 1px solid #d6b47c;
  border-radius: 10px;
  font-size: 18px;
}

#join-form button {
  padding: 16px;
  border: none;
  border-radius: 10px;
  background-color: #e8c07d;
  color: #222;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

#join-form button:hover {
  background-color: #d6a95e;
}

#back-home {
  display: inline-block;
  margin-top: 25px;
  color: #5c2e1f;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  #navbar {
    flex-direction: column;
    gap: 20px;
  }

  #nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hero {
    text-align: center;
    justify-content: center;
  }

  #hero-text h1 {
    font-size: 52px;
  }

  #hero-text h2 {
    font-size: 32px;
  }

  #hero-text p {
    font-size: 20px;
  }

  #about h1 {
    font-size: 58px;
  }

  #about p {
    font-size: 22px;
  }

  #logo-image {
    max-width: 100px;
    max-height: 50px;
  }

}

#logo-image-big {
  max-width: 500px;
  max-height: 250px;
}

#user-type {
  width: 100%;

  padding: 16px;

  border: 1px solid #d6b47c;

  border-radius: 10px;

  font-size: 18px;

  background-color: white;

  color: #555;

  margin-bottom: 5px;
}

/* DISCOVER PAGE */

#discover-page {
  min-height: 100vh;

  padding: 80px 60px;

  background-color: #f7f3eb;
}

.discover-title {
  font-family: 'Cormorant Garamond', serif;

  font-size: 88px;

  color: #5c2e1f;

  margin-bottom: 10px;
}

.discover-subtitle {
  font-size: 26px;

  color: #555;

  margin-bottom: 45px;
}

#discover-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-bottom: 120px;
}

.discover-tag {
  padding: 14px 24px;

  border-radius: 999px;

  border: 1px solid #ddd;

  background-color: white;

  font-size: 18px;

  cursor: pointer;

  transition: 0.3s;
}

.discover-tag:hover {
  background-color: #f0dfc5;
}

.active-tag {
  background-color: #5c2e1f;

  color: white;

  border: none;
}

#empty-state {
  text-align: center;

  font-size: 34px;

  color: #666;

  margin-top: 120px;
}

#artist-button {
  background-color: #5c2e1f;

  color: white;

  padding: 16px 24px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: bold;
}

/* ABOUT PAGE */

#about-page {
  min-height: 100vh;
  padding: 70px 60px;
  background-color: #fbfaf7;
  text-align: center;
}

#about-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  line-height: 1;
  color: #5c2e1f;
  margin-bottom: 25px;
}

#language-line {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  font-size: 24px;
  color: #5c2e1f;
  margin-bottom: 20px;
}

#founders-section {
  padding-top: 90px;
  padding-bottom: 30px;
}

#founders-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: #5c2e1f;
  margin-bottom: 10px;
}

#founders-container {
  display: flex;
  justify-content: center;
  gap: 140px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.founder-card {
  max-width: 390px;
  text-align: center;
}

.founder-image {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ead8b8;
  margin-bottom: 25px;
}

.founder-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #5c2e1f;
}

.founder-role {
  font-size: 20px;
  color: #555;
  margin-bottom: 25px;
}

.founder-bio {
  font-size: 20px;
  line-height: 1.6;
  color: #4a4038;
}

/* STORY SECTION */

#story-section {
  max-width: 1200px;

  margin: 0 auto;

  padding: 40px 60px 120px 60px;
}

.story-intro {
  text-align: center;

  font-size: 22px;

  line-height: 1.8;

  color: #4a4038;

  max-width: 1100px;

  margin: 0 auto 90px auto;
}

.story-block {
  margin-bottom: 70px;
}

.story-block h2 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 48px;

  color: #5c2e1f;

  margin-bottom: 20px;

  line-height: 1.1;
}

.story-block p {
  max-width: 1000px;

  font-size: 22px;

  line-height: 1.8;

  color: #4a4038;
  text-align: left;
}

.italic-word {
  font-style: italic;
}

#story-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: start;

  margin-top: 50px;
}

/* CONTACT PAGE */

#contact-page {
  min-height: 100vh;

  padding: 70px 60px 120px 60px;

  background-color: #fbfaf7;

  text-align: center;
}

#contact-page h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 88px;

  color: #5c2e1f;

  margin-bottom: 10px;
}

#contact-subtitle {
  max-width: 850px;

  margin: 30px auto;

  font-size: 24px;

  line-height: 1.7;

  color: #5c4a3f;
}

#contact-form {
  max-width: 1000px;

  margin: 100px auto 0 auto;

  text-align: left;
}

#contact-form h3 {
  font-size: 24px;

  margin-bottom: 25px;

  color: #222;
}

#contact-options {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-bottom: 50px;
}

.contact-option {
  padding: 28px;

  border: 1px solid #ddd;

  border-radius: 14px;

  background-color: white;

  transition: 0.3s;
}

.contact-option h4 {
  font-size: 24px;

  margin-bottom: 10px;

  color: #111;
}

.contact-option p {
  font-size: 18px;

  line-height: 1.5;

  color: #666;
}

.active-option {
  border: 1px solid #d6a03a;

  background-color: #f8f1e2;
}

#input-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-bottom: 30px;
}

.input-group {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-bottom: 30px;
}

.input-group label {
  font-size: 20px;

  color: #222;
}

.input-group input,
.input-group textarea {
  padding: 20px;

  border: 1px solid #ddd;

  border-radius: 12px;

  font-size: 18px;

  background-color: white;
}

.input-group textarea {
  min-height: 220px;

  resize: vertical;
}

#contact-button {
  background-color: #d6a03a;

  color: white;

  border: none;

  padding: 20px 34px;

  border-radius: 10px;

  font-size: 22px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

#contact-button:hover {
  background-color: #b98422;
}

/* SIGN IN PAGE */

#signin-page {
  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 80px 20px;

  background-color: #fbfaf7;
}

#signin-card {
  width: 100%;

  max-width: 700px;

  background-color: white;

  padding: 50px;

  border-radius: 18px;

  border: 1px solid #e7e1d8;
}

#signin-card h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 58px;

  color: #5c2e1f;

  margin-bottom: 10px;
}

#signin-card p {
  font-size: 24px;

  color: #5c4a3f;

  margin-bottom: 40px;
}

#signin-tabs {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0;

  background-color: #f1efea;

  border-radius: 10px;

  padding: 6px;

  margin-bottom: 40px;
}

.active-tab {
  background-color: white;

  border: none;

  padding: 18px;

  border-radius: 8px;

  font-size: 24px;

  font-weight: bold;
}

#signup-link {
  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  color: #333;

  font-size: 24px;

  font-weight: bold;
}

.signin-input-group {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-bottom: 30px;
}

.signin-input-group label {
  font-size: 22px;

  font-weight: bold;
}

.signin-input-group input {
  padding: 20px;

  border-radius: 10px;

  border: 1px solid #ddd;

  font-size: 18px;
}

#signin-button {
  width: 100%;

  padding: 22px;

  border: none;

  border-radius: 10px;

  background-color: #5c2e1f;

  color: white;

  font-size: 24px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

#signin-button:hover {
  background-color: #a46e5c;
}

#empty-state a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #d8b26e;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

#empty-state a:hover {
  opacity: 0.9;
}


@media (max-width: 768px) {
  #navbar {
    padding: 18px 20px;
    flex-direction: column;
    gap: 15px;
  }

  #logo-image {
    width: 130px;
    max-width: 130px;
    max-height: none;
  }

  #nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #nav-links a {
    font-size: 16px;
  }

  section,
  #hero,
  #about-page,
  #contact-page,
  #discover-page,
  #wedding-section {
    padding: 50px 22px;
  }

  #hero {
    min-height: auto;
  }

  #logo-image-big {
    max-width: 280px;
    max-height: none;
  }

  #hero-text h2 {
    font-size: 28px;
  }

  #hero-text p {
    font-size: 18px;
  }

  #about h1,
  #about-page h1,
  #contact-page h1,
  .discover-title,
  .craft-title {
    font-size: 48px;
    line-height: 1.05;
  }

  #language-line {
    gap: 18px;
    font-size: 18px;
  }

  #contact-subtitle,
  .discover-subtitle,
  .craft-subtitle {
    font-size: 19px;
  }

  #contact-options,
  #input-row,
  #story-grid {
    grid-template-columns: 1fr;
  }

  #contact-form {
    margin-top: 50px;
  }

  .contact-option {
    padding: 20px;
  }

  #wedding-section {
    flex-direction: column;
    gap: 40px;
  }

  .wedding-title {
    font-size: 46px;
  }

  .wedding-text {
    font-size: 20px;
  }

  #wedding-right {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .wedding-card,
  .large-card,
  .medium-card {
    min-height: 160px;
    font-size: 32px;
  }

  #join-card,
  #signin-card {
    padding: 30px 22px;
  }

  #join-card h1,
  #signin-card h1 {
    font-size: 38px;
  }
}