/* Global styles */

@font-face {
  font-family: 'Signatie';
  src: url('../fonts/Signatie.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pacifico';
  src: url('../fonts/Pacifico-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Libertinus';
  src: url('../fonts/LibertinusSerifDisplay-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-primary: #FF9F40;
  --color-secondary: #FF6723;
  --color-line: #E4E4E4;
  --color-bg: #F9F9F9;
  --color-blush: #FFC0CB;
  --color-contrast: #101357;
}

body {
  font-family: Libertinus, serif;
  font-size: 16px;
  background: #b3edef;
  color: var(--color-contrast);
  margin: 0;
  padding: 0;
  height: 100%
}

header {
  background: #055065;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

main {
  padding: 20px;
  border: 20px solid #055065;
  flex: 1 0 auto;
}

h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--color-contrast);
}

footer {
  background: #055065;
  padding: 20px;
  flex-shrink: 0;
  text-align: center;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
/* Navigation styles */
nav {
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Pacifico', 'Signatie', cursive;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-left: 20px;
}

.nav-links {
  font-family: 'Pacifico';
  font-size: 18px;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--color-secondary);
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-contrast);
  transition: background 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
.menu-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: var(--color-contrast);
  padding: 10px 0;
}

.menu-nav li {
  margin-right: 20px;
}

.menu-nav a {
  color: var(--color-primary);
  text-decoration: none;
}

.menu-nav a:hover {
  color: var(--color-secondary);
}
/* Header styles */


/* Main styles */

.motif-divider {
  width: 100%;
  height: 1px;
  background: var(--color-line);
  margin: 2rem 0;
}

/* Hero image styles */
.hero-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

/* Footer styles */


/* Index Styles */
/* Header styles for the Index page */
.index-header {
  background: #055065;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.index-header .logo {
  font-family: 'Pacifico', 'Signatie', cursive;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-left: 20px;
}

.index-header .nav-links {
  display: flex;
  gap: 1.5rem;
}

.index-header .nav-links a {
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.index-header .nav-links a:hover,
.index-header .nav-links a.active {
  color: var(--color-secondary);
}

.index-header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
}

.index-header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-contrast);
  transition: background 0.3s ease;
}

.index-header .menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.index-header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.index-header .menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* Responsive styles for the Index header */
@media (max-width: 768px) {
  .index-header .nav-links {
    display: none;
  }

  .index-header .menu-toggle {
    display: flex;
  }
}

/* Hero image styles for the Index page */
.index-hero {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.index-hero img {
  width: 100%;
  height: 100%;
}

.index-hero .call-to-action {
  text-align: center;
  margin-top: 2rem;
}

.index-hero .call-to-action a {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.index-hero .call-to-action a:hover {
  background: var(--color-secondary);
}
/* Other section styles */
/* Add styles for the Art Gallery, Love Notes, and Experiences sections as needed */

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.art-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.artwork-image {
  width: 400px;
  object-fit: cover;
  margin-bottom: 10px;
}

.artwork-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
}

.artwork-artist {
  font-family: 'Signatie';
  font-size: 18px;
  margin: 0;
  text-align: center;}

.artwork-description {
  max-width: 300px;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.love-notes {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.love-note {
  width: 48%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.love-note p {
  font-size: 18px;
  text-align: center;
}

.timeline {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.timeline-event {
  width: 48%;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
}

.timeline-event::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-event:nth-child(odd) {
  margin-left: 2%;
}

.timeline-event:nth-child(even) {
  margin-left: 52%;
}

.timeline-event:nth-child(odd)::before {
  left: -10px;
}

.timeline-event-content {
  padding: 1rem;
}

.timeline-event-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.timeline-event-date {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.timeline-event-description {
  font-size: 1rem;
  max-width: 200px;
}