body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

header {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 18px;
}

.navbar a:hover {
    color: #000;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    font-family: 'Vogue', serif;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.hero h2 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.3;
    margin-bottom: 35px;
}

p {
    font-size: 1.1em;
    color: #565656;
}

.profile-picture {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: -30px;
    margin-top: 15px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 80%;
    margin: auto;
}

.gallery-item {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.1);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/16;
    background: #c5c5c5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-video.loaded {
    opacity: 1;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    font-size: 30px;
    margin: 0 5px;
    color: #000;
    text-decoration: none;
}

.social-link:hover {
    color: #848484;
}

footer {
    font-size: 12px;
    text-align: center;
    padding: 10px;
    background: #f4f4f4;
    color: #808080;
}

/* Additional CSS for responsiveness and aesthetics */
@media (max-width: 768px) {
    .navbar a {
        font-size: 16px;
    }

    .hero {
        padding: 20px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        width: 95%;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
    color: #ddd;
}

.calculator-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #fcf8f2; /* Soft cream background */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif; /* Match the header font */
}

/* Calculator Title */
.calculator h1 {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 35px;
}

/* Labels for sections */
.calculator h2 {
    font-size: 20px;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 10px;
}

/* Button Styling - Soft Nude Theme */
.option-btn, .guest-option-btn {
    background: #ead4ba; /* Soft Nude */
    border: 2px solid transparent;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

/* Button Hover */
.option-btn:hover, .guest-option-btn:hover {
    background: #d1a879; /* Darker Gold */
    transform: scale(1.05);
}

/* Selected Buttons */
.option-btn.selected, .guest-option-btn.selected {
    background: #d1a879; /* Deep Gold/Brown for contrast */
    color: #000000;
    border: 2px solid #d1a879;
}

/* Guest Add/Remove Buttons */
#add-guest-btn, #remove-guest-btn {
    background: #ffffff !important; /* Ensure white background */
    color: #000000 !important; /* Ensure black text */
    border: 2px solid #e6c9a8;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    appearance: none; /* Remove default button styling */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Price Display */
.total-price {
    margin-top: 50px;
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

.contact {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #000000;
}

.contact h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.contact-icons a {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 223, 186, 0.5);
}

.contact-icons a:hover {
    box-shadow: 0 0 15px rgba(255, 223, 186, 1);
    transform: scale(1.2);
}

.contact-icons img {
    width: 40px;
    height: 40px;
}

.option {
    margin-bottom: 35px; /* Increase spacing between sections */
}

.option h1 {
    font-size: 30px !important;
    margin-bottom: 50px;
}

.option h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.option h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.guest {
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #f9f9f9;
}

.selected-options {
    background: #fcf8f2; /* Soft Cream */
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.selected-options h3 {
    font-size: 18px;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.selected-options p {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.4;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background-color: #4a4a4a;
    margin: 10px auto;
    border-radius: 5px;
    display: block;
}

.language-switch {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Bodoni Moda', serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.language-switch a {
    color: rgba(0, 0, 0, 0.6);  /* Faded black */
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.language-switch a:hover {
    color: rgba(0, 0, 0, 0.9);  /* Darker on hover */
}

.language-switch a.active {
    color: rgba(0, 0, 0, 0.9);  /* Darker for active language */
    font-weight: bold;
}

.language-switch span {
    color: rgba(0, 0, 0, 0.6);  /* Faded separator color */
    margin: 0 5px;
}

.top-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}

.top-nav a {
    text-decoration: none;
    color: #000000;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.top-nav a:hover {
    background: #f5f5f5;
}

/* Sticky Effect */
.top-nav.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    border-radius: 25px;
    background: #fdfaf5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Smaller Buttons When Sticky */
.top-nav.sticky a {
    padding: 8px 16px;
    font-size: 14px;
}

/* Show More Button Styles */
.gallery {
    margin-bottom: 0;
    padding-bottom: 0;
}

.show-more-container {
    width: 100%;
    padding: 50px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    margin-top: -20px;
}

.show-more-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.show-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    transform: translateY(5px);
}

.show-more-btn span {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 400;
}

.show-more-btn .arrow-down {
    width: 12px;
    height: 12px;
    border: solid #4a4a4a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
}