/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff8f5;
    color: #444;
    text-align: center;
    padding: 40px 20px;
}

/* Container */
.thankyou-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
}

/* Heart Icon */
.heart-icon {
    font-size: 40px;
    color: #e88fa0;
    margin-bottom: 15px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Title */
h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    color: #d77b8b;
    margin-bottom: 10px;
}

/* Main Message */
.message {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0;
    color: #555;
}

/* Subtext */
.subtext {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
}

/* Optional Image */
.image-wrap {
    margin: 20px auto;
    width: 80%;
    max-width: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrap img {
    width: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

/* Social Share */
.share-section p {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.share-section a {
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 8px;
    font-size: 16px;
    color: #fff;
    background: #d77b8b;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.share-section a:hover {
    background: #bf5a6f;
}


/*Venue*/
/* Map container */
.map-container {
    width: 100%;
    margin: 18px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.1);
}

/* Apple / Google Map Links */
.apple-maps a,
.map-link a {
    font-size: 17px;
    color: #EB5E28;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 6px 0;
}

.apple-maps a:hover,
.map-link a:hover {
    text-decoration: underline;
}

.venue-tip {
    font-size: 15px;
    color: #555;
    margin-top: 12px;
}

/* Map Wrapper */
.venue-map-wrapper {
    margin-top: 25px;
}

/* Map Styling */
.venue-map {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border: 4px solid #fff;
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(10%) contrast(1.05);
}

/* Buttons Container */
.map-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* Common Button Style */
.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Apple Maps Button */
.map-btn.apple {
    background: linear-gradient(135deg, #000000, #2c2c2c);
    color: #ffffff;
}

/* Google Maps Button */
.map-btn.google {
    background: linear-gradient(135deg, #d93025, #ea4335);
    color: #ffffff;
}

/* Hover Effect */
.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.25);
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .venue-map {
        height: 260px;
    }

    .map-btn {
        width: 100%;
    }
}

s li {
    font-size: 16px;
    margin: 8px 0;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 22px 48px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.6px;

    color: #ffffff !important;
    text-decoration: none !important;

    /* SOLID fallback (VERY IMPORTANT) */
    background-color: #c0392b;

    /* Gradient on top */
    background-image: linear-gradient(
        135deg,
        #b83280,
        #d6336c,
        #e8598b
    );

    border-radius: 22px;
    border: 3px solid #ffffff;

    box-shadow:
        0 18px 45px rgba(184, 50, 128, 0.55),
        0 0 0 6px rgba(214, 51, 108, 0.18);

    transition: all 0.3s ease;
}

/* Hover */
.book-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 26px 60px rgba(184, 50, 128, 0.7),
        0 0 0 8px rgba(214, 51, 108, 0.25);
}

/* Click */
.book-btn:active {
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 600px) {
    .book-btn {
        width: 100%;
        padding: 24px 0;
        font-size: 20px;
    }
}
