/* Wedding Website Styles */

body {
    font-family: 'Cormorant', serif;
    margin: 0;
    padding: 0;
    background-color: #ffe3e9;
    color: #f76653;
    text-align: center;
    min-height: 100vh;
    position: relative;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: white;*/
    background-color: #ffe3e9;
    padding: 4px 0;
    z-index: 20; /* Above decorations and main content */
    box-shadow: 0 1px 8px rgba(247, 102, 83, 0.5);
}

.nav-button {
    background: none;
    border: none;
    /*font-family: "Nanum Pen Script", cursive;*/
    font-weight: 900;
    font-style: normal;
    font-size: 1em;
    font-family: 'Cormorant', serif;
    color: #f76653;
    margin: 0 10px;
    padding: 2px 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-shadow: 0.5px 0.5px 0px rgba(247, 102, 83, 0.3);
}

.nav-button:hover {
    opacity: 0.7;
}

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Ensure main content stays above decorations */
}

/* Location Content Styles */
.location-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    min-height: 100vh;
    padding: 80px 20px 40px 20px; /* Top padding for navbar, bottom for glasses */
    box-sizing: border-box;
}

.location-section {
    margin-bottom: 60px;
    width: 100%;
    max-width: 600px;
}

.location-section:last-child {
    margin-bottom: 0;
}

.location-section h1 {
    margin-bottom: 20px;
}

.location-section p {
    margin-bottom: 5px;
}

/* Coming Soon Section */
.coming-soon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    width: 100%;
    max-width: 600px;
}

.coming-soon-text {
    font-family: "Nanum Pen Script", cursive !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 4em !important;
    color: #f76653 !important;
    margin-top: 40px !important;
    text-align: center !important;
}

/* Fixed decorative elements */
.festoon-decoration {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 80vw;
    height: auto;
    z-index: 1; /* Behind main content */
    pointer-events: none; /* Allow clicks to pass through */
}

.glasses-decoration {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    max-width: 100vw;
    height: auto;
    z-index: 1; /* Behind main content */
    pointer-events: none; /* Allow clicks to pass through */
}

h1 {
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    font-size: 2em;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

h2 {
    margin: 0;
    padding: 0;
}

h3 {
    margin: 10px 0 5px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #f76653;
}

p {
    margin-bottom: 3px;
    line-height: 1.2;
    margin: 0;
    padding: 2px;
    font-size: 1em;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-align: center;
}

.countdown {
    font-family: "Nanum Pen Script", cursive;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.countdown-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.countdown-item span:first-child {
    font-size: 3.5em;
    font-family: "Nanum Pen Script", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 0px;
}

.countdown-label {
    font-size: 1em;
    font-family: "Nanum Pen Script", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 0px;
}

.wedding-info {
    margin-top: 0px;
}

.wedding-gif {
    max-width: 320px;
    height: auto;
    position: relative;
    padding: 0px;
    padding-bottom: 10px;
}

.rsvp-section {
    position: absolute;
    top: calc(75vh + 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0px;
    padding: 0px;
    padding-bottom: 10%;
}

/* Location Page Styles */
.map-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(247, 102, 83, 0.2);
    max-width: 600px;
}

/* Custom Google Maps styling */
.custom-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.location-details {
    margin: 20px auto 0 auto;
    max-width: 500px;
}

.location-details h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #f76653;
    font-weight: 600;
}

.location-details p {
    margin-bottom: 8px;
    text-align: center;
}

.location-details strong {
    color: #f76653;
    font-weight: 600;
}