/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: #5a4a4a;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede8 50%, #e8e5e0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #6b5b6b;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(107, 91, 107, 0.1);
}

.subtitle {
    font-size: 1.5rem;
    color: #8a7a7a;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.date {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #6b5b6b;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #6b5b6b;
    text-align: center;
    margin: 0px 0 10px 0;
    font-weight: 400;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #b8a8a8, #a8a0a0);
    margin: 15px auto;
}

.calligraphy-header {
    font-family: 'Dancing Script', cursive !important;
    font-size: 3rem !important;
    font-weight: 600 !important;
    color: #6b5b6b !important;
    text-align: center !important;
    margin: 0px 0 10px 0 !important;
    font-weight: 600 !important;
    position: relative !important;
    letter-spacing: 1px !important;
}

.calligraphy-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #d4a5b8, #c8a2c8);
    margin: 20px auto;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #6b5b6b;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 80px 0 40px 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('image_top.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(107, 91, 107, 0.08);
    min-height: 400px;
}



.story p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #6b5b6b;
}

/* Event details */
.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Travel info */
.travel-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.travel-option {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.travel-option h3 {
    margin-bottom: 15px;
    color: #6b5b6b;
}

.travel-option p {
    color: #6b5b6b;
    line-height: 1.6;
}

.travel-option strong {
    color: #6b5b6b;
    font-weight: 600;
}

/* Explore info */
.explore-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.explore-option {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.explore-option h3 {
    margin-bottom: 15px;
    color: #6b5b6b;
}

.explore-option p {
    color: #6b5b6b;
    line-height: 1.6;
}

.explore-option strong {
    color: #6b5b6b;
    font-weight: 600;
}

/* Map container */
.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 91, 107, 0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    border-radius: 15px;
}

.detail {
    text-align: center;
}

.detail p {
    font-size: 1.1rem;
    color: #6b5b6b;
    line-height: 1.6;
}

.rsvp-link {
    display: inline-block;
    background: linear-gradient(135deg, #b8a8a8, #a8a0a0);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rsvp-link:hover {
    background: linear-gradient(135deg, #a8a0a0, #b8a8a8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 168, 168, 0.3);
    color: white;
}

/* RSVP simple link styling */
.detail a {
    color: #6b5b6b;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.detail a:hover {
    color: #b8a8a8;
    text-decoration: none;
    background: rgba(184, 168, 168, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* RSVP section */
.rsvp-info {
    background: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rsvp-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rsvp-info strong {
    color: #6b5b6b;
    font-weight: 600;
}

/* Weather section */
.weather-forecast {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.weather-day {
    background: rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    max-width: 300px;
    flex: 1;
}

.weather-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(107, 91, 107, 0.1);
}

.weather-day h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #6b5b6b;
    margin-bottom: 20px;
    font-weight: 500;
}

.weather-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.weather-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.weather-details {
    text-align: center;
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b5b6b;
    margin-bottom: 8px;
}

.weather-temp-small {
    font-size: 1rem;
    font-weight: 500;
    color: #6b5b6b;
    margin-bottom: 4px;
}

.weather-desc {
    font-size: 1.1rem;
    color: #6b5b6b;
    margin-bottom: 5px;
    font-weight: 500;
}

.weather-wind {
    font-size: 0.9rem;
    color: #8a7a7a;
    font-style: italic;
}

.weather-precipitation {
    font-size: 0.9rem;
    color: #6b5b6b;
    font-weight: 500;
    margin-top: 5px;
}

.wedding-badge {
    background: linear-gradient(135deg, #e8d5b7, #d4c4a8);
    color: #6b5b6b;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(212, 175, 55, 0.2);
    opacity: 0.9;
}

/* Practical tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tip-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(184, 168, 168, 0.3);
    transition: all 0.3s ease;
    text-align: left;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(184, 168, 168, 0.5);
}

.tip-card h3 {
    color: #6b5b6b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-card p {
    color: #6b5b6b;
    line-height: 1.6;
    margin: 0;
}

.exchange-rate {
    background: rgba(184, 168, 168, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    text-align: center;
    border: 1px solid rgba(184, 168, 168, 0.2);
}

.currency-selector {
    margin-bottom: 15px;
}

.currency-selector label {
    display: block;
    font-size: 0.9rem;
    color: #6b5b6b;
    margin-bottom: 8px;
    font-weight: 500;
}

.currency-selector select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(184, 168, 168, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #6b5b6b;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.currency-selector select:hover {
    border-color: rgba(184, 168, 168, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

.currency-selector select:focus {
    outline: none;
    border-color: #b8a8a8;
    box-shadow: 0 0 0 2px rgba(184, 168, 168, 0.2);
}

.exchange-rate p {
    margin: 5px 0;
}

#exchange-rate-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a4a4a;
}

.exchange-note {
    font-size: 0.9rem;
    color: #8a7a7a;
    font-style: italic;
}

/* Music requests */
.music-search-container {
    max-width: 1000px;
    margin: 30px auto 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.search-box input {
    flex: 1;
    max-width: 400px;
    padding: 12px 15px;
    border: 1px solid rgba(184, 168, 168, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: #6b5b6b;
}

.search-box input:focus {
    outline: none;
    border-color: #b8a8a8;
    box-shadow: 0 0 0 2px rgba(184, 168, 168, 0.2);
}

.search-box button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #b8a8a8, #a8a0a0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: linear-gradient(135deg, #a8a0a0, #b8a8a8);
    transform: translateY(-1px);
}

.search-results {
    min-height: 200px;
}

.search-placeholder, .search-loading, .search-no-results, .search-error {
    text-align: center;
    color: #8a7a7a;
    font-style: italic;
    padding: 40px 20px;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
}

.song-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(184, 168, 168, 0.3);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.song-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(184, 168, 168, 0.5);
}

.song-artwork {
    flex-shrink: 0;
}

.song-artwork img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5a4a4a;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    font-size: 0.95rem;
    color: #6b5b6b;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-album {
    font-size: 0.85rem;
    color: #8a7a7a;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-duration {
    font-size: 0.8rem;
    color: #8a7a7a;
    margin: 0 0 10px 0;
}

.song-preview {
    width: 100%;
    margin-bottom: 10px;
}

.song-preview audio {
    width: 100%;
    height: 30px;
}

.request-btn {
    background: rgba(184, 168, 168, 0.2);
    color: #6b5b6b;
    border: 1px solid rgba(184, 168, 168, 0.4);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.request-btn:hover {
    background: rgba(184, 168, 168, 0.3);
    border-color: rgba(184, 168, 168, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(184, 168, 168, 0.2);
}

/* Hotel info */
.hotel-categories {
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #6b5b6b;
    text-align: center;
    margin: 30px 0 30px 0;
    font-weight: 500;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #b8a8a8, #a8a0a0);
    margin: 15px auto;
}

.category-title.luxury::after {
    background: linear-gradient(90deg, #d4a5b8, #c8a2c8);
}

.category-title.midrange::after {
    background: linear-gradient(90deg, #a8a0a0, #9a9292);
}

.hotel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.hotel {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hotel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(107, 91, 107, 0.1);
}


.hotel h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #6b5b6b;
    margin-bottom: 15px;
    font-weight: 500;
}

.hotel p {
    margin-bottom: 8px;
    color: #6b5b6b;
    line-height: 1.5;
}

.hotel em {
    color: #6b5b6b;
    font-style: italic;
    font-size: 0.9rem;
}

.hotel-link {
    color: #6b5b6b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.hotel-link:hover {
    color: #8a7a7a;
    border-bottom: 1px solid #8a7a7a;
    text-decoration: none;
}

/* Sections */
section {
    background: rgba(255, 255, 255, 0.7);
    margin: 40px 0;
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(107, 91, 107, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Decorative corner images */
.decorative-corner {
    position: absolute;
    opacity: 0.5;
    z-index: 1;
}

.decorative-top-left {
    top: 10px;
    left: 10px;
}

.decorative-bottom-right {
    bottom: 10px;
    right: 10px;
}

.decorative-small {
    height: 30px;
}

.decorative-medium {
    height: 40px;
}

.decorative-large {
    height: 50px;
}

.decorative-extra-large {
    height: 60px;
}

.decorative-huge {
    height: 70px;
}

/* Section content wrapper */
.section-content {
    padding: 40px 40px 80px 40px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(107, 91, 107, 0.08);
}

footer p {
    font-size: 1.1rem;
    color: #6b5b6b;
    margin-bottom: 0px;
}

.footer-image-container {
    padding: 0 60px;
    display: inline-block;
}

.footer-image {
    max-width: 100%;
    height: auto;
    margin-top: 0px;
    padding: 0;
    border-radius: 50px;
    opacity: 0.7;
    display: block;
}


.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #6b5b6b;
    font-style: italic;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .event-details {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .music-search-container {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .date {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 25px;
        margin: 20px 0;
    }
    
    .event-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .travel-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .explore-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .weather-forecast {
        flex-direction: column;
        align-items: center;
    }
    
    .weather-day {
        max-width: 100%;
        min-width: auto;
    }
    
    .hotel-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .hotel {
        max-width: 100%;
        min-width: auto;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-box {
        flex-direction: column;
        align-items: center;
    }
    
    .search-box input {
        max-width: 100%;
        width: 100%;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .song-card {
        flex-direction: column;
        text-align: center;
    }
    
    .song-artwork {
        align-self: center;
    }
}

@media (max-width: 1024px) {
    .songs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .songs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .song-card {
        flex-direction: row;
        text-align: left;
    }
    
    .song-artwork {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .song-card {
        flex-direction: column;
        text-align: center;
    }
    
    .song-artwork {
        align-self: center;
    }
    
    .song-title, .song-artist, .song-album {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin: 30px 0 20px 0;
    }
    
    .registry-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        padding: 60px 0 30px 0;
        margin: 20px 0;
    }
    
    footer {
        padding: 40px 0 30px 0;
        margin: 20px 0;
    }
    
    .map-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .footer-image-container {
        padding: 0 30px;
    }
    
    section {
        padding: 25px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .footer-image-container {
        padding: 0 15px;
    }
    
    section {
        padding: 20px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .date {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .calligraphy-header {
        font-size: 2.2rem !important;
    }
}
