@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cormorant Garamond", serif;
  color: black;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #3a3a3a;
}

p {
  margin-bottom: 1rem;
}

.symbol {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

@media (max-width: 600px) {
  .container {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.6rem;
  }
}

/* Header */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
  gap: 2rem;
}

#header .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-decoration: none;
}

#header .logo .title {
  font-size: 1.1em;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

#header .logo:visited {
  /* Visited link color (purple) */
  color: black; /* Or match the default link color */
  text-decoration: none; /* Removes the underline */
}

#header nav {
  right: 2em;
  top: 2em;
  z-index: 10000;
}

#header nav ul {
  display: flex;
  align-items: center;
  list-style: none;
}

#header nav ul li {
  padding: 0;
}

#header nav ul li a {
  display: block;
  position: relative;
  height: 3em;
  line-height: 3em;
  padding: 0 1.5em;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  border: 0;
  font-size: 0.8em;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* Hamburger specific styles */
#header nav ul li a[href="#menu"] {
  -webkit-tap-highlight-color: transparent;
  width: 2em;
  text-indent: 4em;
  font-size: 1em;
  /* overflow: hidden; */
  padding: 0;
  /* white-space: nowrap; */
}
#header nav ul li a[href="#menu"]:before,
#header nav ul li a[href="#menu"]:after {
  transition: opacity 0.2s ease;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2em 2em;
}
#header nav ul li a[href="#menu"]:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23f2849e%3B %7D%3C/style%3E%3Cline x1='0' y1='25' x2='100' y2='25' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3Cline x1='0' y1='75' x2='100' y2='75' /%3E%3C/svg%3E");
  opacity: 0;
}
#header nav ul li a[href="#menu"]:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23585858%3B %7D%3C/style%3E%3Cline x1='0' y1='25' x2='100' y2='25' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3Cline x1='0' y1='75' x2='100' y2='75' /%3E%3C/svg%3E");
  opacity: 1;
}
#header nav ul li a[href="#menu"]:hover:before {
  opacity: 1;
}
#header nav ul li a[href="#menu"]:hover:after {
  opacity: 0;
}

.shop-button {
  background-color: black;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.shop-button:hover {
  background-color: #111;
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
  #header {
    margin-bottom: 1rem;
  }

  #header nav {
    right: 0.5em;
    top: 0.5em;
  }
  #header nav ul li a[href="#menu"]:before,
  #header nav ul li a[href="#menu"]:after {
    background-size: 1.5em 1.5em;
  }

  #header .logo .title {
    white-space: normal;
    font-size: 1.1rem;
  }

  #header .logo img {
    width: 20px;
    height: 20px;
  }

  .shop-button {
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
  }
}

/* Menu (sliding panel) */

#wrapper {
  transition: opacity 0.45s ease;
  opacity: 1;
}

#menu {
  transform: translateX(22em);
  transition: transform 0.45s ease, visibility 0.45s;
  position: fixed;
  top: 0;
  right: 0;
  width: 22em;
  max-width: 80%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  background: #ffffffd7;
  color: #fff;
  cursor: default;
  visibility: hidden;
  z-index: 10002;
}

#menu > .inner {
  transition: opacity 0.45s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.75em;
  opacity: 0;
  overflow-y: auto;
}

#menu > .inner > ul {
  list-style: none;
  margin: 0 0 1em 0;
  padding: 0;
}

#menu > .inner > ul > li {
  padding: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}

#menu > .inner > ul > li a {
  display: block;
  padding: 1em 0;
  line-height: 1.5;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

#menu > .inner > ul > li:first-child {
  border-top: 0;
  margin-top: -1em;
}

#menu > .close {
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: scale(0.25) rotate(180deg);
  -webkit-tap-highlight-color: transparent;
  display: block;
  position: absolute;
  top: 2em;
  left: -6em;
  width: 6em;
  text-indent: 6em;
  height: 3em;
  border: 0;
  font-size: 1em;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  background: none;
  color: #84d8f2;
  cursor: pointer;
}
#menu > .close:before,
#menu > .close:after {
  transition: opacity 0.2s ease;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2em 2em;
}
#menu > .close:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23f2849e%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
  opacity: 0;
}
#menu > .close:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23585858%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
  opacity: 1;
}
#menu > .close:hover:before {
  opacity: 1;
}
#menu > .close:hover:after {
  opacity: 0;
}

@media screen and (max-width: 736px) {
  #menu {
    transform: translateX(16.5em);
    width: 16.5em;
  }
  #menu > .inner {
    padding: 2.75em 1.5em;
  }
  #menu > .close {
    top: 0.5em;
    left: -4.25em;
    width: 4.25em;
    text-indent: 4.25em;
  }
  #menu > .close:before,
  #menu > .close:after {
    background-size: 1.5em 1.5em;
  }
}

/* When menu visible */
body.is-menu-visible #wrapper {
  pointer-events: none;
  cursor: default;
  opacity: 0.25;
}
body.is-menu-visible #menu {
  transform: translateX(0);
  visibility: visible;
}
body.is-menu-visible #menu > * {
  opacity: 1;
}
body.is-menu-visible #menu .close {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* Basic content wrapper */
#wrapper {
  padding: 2rem;
}

@media screen and (max-width: 736px) {
  #wrapper {
    padding: 1rem;
  }
}

.hero-section {
  position: relative;
  width: 100vw; /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  height: 100vh; /* Full viewport height */
  overflow: hidden;

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

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it fills the screen */
  z-index: -1; /* Behind the content */
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer {
  font-family: "Cormorant Garamond", serif;
  padding: 2rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #003049;
}

.footer p,
.footer a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.footer a:hover {
  text-decoration: underline;
  color: #005577;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/* Responsive layout */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 2rem;
  }
}
