@import url('https://fonts.googleapis.com/css2?family=Alice&family=Cardo:ital@0;1&display=swap');

@font-face {
  font-family: 'BrittanySignature';
  src: url('/fonts/BrittanySignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    font-family: 'Cardo', serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

h1, h2, h3, .collapsible {
    font-family: 'Alice', serif;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1em 0;
}

.navbar .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: large;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #9d8189;
  font-weight: 550;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(184, 229, 250, 0);  
  border-bottom: 2px solid #ccc;
}

.nav-links a.active {
  background-color: rgba(184, 229, 250, 0);  
  font-weight: bold;
  border-bottom: 2px solid #9d8189;
}



.content-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.accommodation-card,
.travel-card,
.welcome-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.collapsible-section {
    margin-bottom: 10px;
}

.collapsible {
    background-color: #f8f8f8;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    border-radius: 4px;
}

.active, .collapsible:hover {
    background-color: #e0e0e0;
}

.collapsible:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}


.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 15px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a {
    color: #9d8189;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #7c646a;
}

.countdown {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: #9d8189;
}

.countdown-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.landing-page {
    text-align: center;
}

.overlay-container {
    max-width: 800px;
    margin: 0 auto;
}

.couple-picture img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@font-face {
  font-family: 'BrittanySignature';
  src: url('/fonts/brittancysignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#password-form {
  max-width: 50em;
  margin: 10em auto;
  text-align: center;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#password-form h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: normal;
  color: #333;
  font-family: 'BrittanySignature', cursive; /* Apply the custom font here */
}

#password-input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

#password-input:focus {
  border-color: #9d8189;
  outline: none;
}

#password-form button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background-color: #9d8189;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#password-form button:hover {
  background-color: #7c646a;
}

.error-message {
  color: #ff0000;
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}


@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .countdown-container {
        flex-wrap: wrap;
    }
}

