/* 🌿 การเดินทางของคริสต์และเมย์ - Magazine Style */

:root {
    --coral: #FF6B6B;
    --cream: #FFF8F0;
    --gold: #FFB84D;
    --charcoal: #2D2D2D;
    --soft-gray: #F5F0EB;
    --accent: #FF8A5B;
}

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

body {
    font-family: 'Sarabun', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.8;
}

/* ========== DECORATIVE STICKERS ========== */
.floating-stickers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sticker {
    position: absolute;
    font-size: 2rem;
    animation: floatUp 15s linear infinite;
    opacity: 0.3;
}

.sticker:nth-child(1) { left: 10%; animation-delay: 0s; }
.sticker:nth-child(2) { left: 20%; animation-delay: 2s; font-size: 2.5rem; }
.sticker:nth-child(3) { left: 30%; animation-delay: 4s; }
.sticker:nth-child(4) { left: 40%; animation-delay: 6s; font-size: 1.8rem; }
.sticker:nth-child(5) { left: 50%; animation-delay: 8s; }
.sticker:nth-child(6) { left: 60%; animation-delay: 10s; font-size: 2.2rem; }
.sticker:nth-child(7) { left: 70%; animation-delay: 12s; }
.sticker:nth-child(8) { left: 80%; animation-delay: 14s; font-size: 2.5rem; }
.sticker:nth-child(9) { left: 90%; animation-delay: 16s; }

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Sticker badges */
.sticker-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Decorative dots background */
.deco-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--coral) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.05;
    pointer-events: none;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--coral) 0%, #FF8E8E 50%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hearts {
    margin-bottom: 20px;
}

.heart {
    font-size: 3rem;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
    display: inline-block;
}

.heart:nth-child(2) {
    animation-delay: 0.5s;
    font-size: 4rem;
    opacity: 0.8;
}

.heart:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.couple-names {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.15);
}

.couple-names span {
    display: block;
}

.ampersand {
    font-size: 0.7em;
    font-weight: 400;
    font-style: italic;
}

.trip-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: white;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
    letter-spacing: 2px;
}

.trip-dates {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1rem;
    color: white;
}

.trip-dates .divider {
    margin: 0 10px;
    opacity: 0.5;
}

.countdown {
    background: white;
    color: var(--coral);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.love-message {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

/* ========== STATS SECTION ========== */
.stats {
    background: white;
    padding: 50px 20px;
    border-top: 1px solid var(--soft-gray);
    border-bottom: 1px solid var(--soft-gray);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== ACCOMMODATION SECTION ========== */
.accommodation {
    padding: 80px 20px;
    background: var(--soft-gray);
}

.hotel-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hotel-header {
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: white;
    padding: 30px;
    text-align: center;
}

.hotel-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.hotel-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 8px;
}

.hotel-location {
    font-size: 1rem;
    opacity: 0.9;
}

.hotel-body {
    padding: 30px;
}

.hotel-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--soft-gray);
    border-radius: 12px;
}

.detail-item .icon {
    font-size: 1.5rem;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-text .label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-text .value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hotel-highlights {
    background: var(--soft-gray);
    padding: 20px;
    border-radius: 12px;
}

.hotel-highlights h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.hotel-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.hotel-highlights li {
    font-size: 0.95rem;
    padding: 8px 0;
}

/* ========== FLIGHT SECTION ========== */
.flight {
    padding: 80px 20px;
    background: white;
}

.flight-cards {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.flight-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--soft-gray);
}

.flight-card.return {
    border-color: var(--coral);
}

.flight-header {
    background: var(--soft-gray);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-card.return .flight-header {
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: white;
}

.flight-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.flight-airline {
    font-size: 0.9rem;
    opacity: 0.8;
}

.flight-body {
    padding: 25px;
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--soft-gray);
}

.airport {
    text-align: center;
}

.airport .code {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    display: block;
    line-height: 1;
}

.airport .city {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.arrow {
    font-size: 2rem;
    color: var(--coral);
    opacity: 0.3;
}

.flight-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail .label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.night-flight,
.morning-flight,
.afternoon-flight {
    grid-column: 1 / -1;
    background: var(--soft-gray);
    padding: 10px;
    border-radius: 10px;
}

.night-flight .value,
.morning-flight .value,
.afternoon-flight .value {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
}

/* ========== ITINERARY SECTION ========== */
.itinerary {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

.day-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.day-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.day-header {
    background: linear-gradient(135deg, var(--coral), var(--gold));
    padding: 25px;
    color: white;
    position: relative;
}

.day-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.2;
    position: absolute;
    right: 20px;
    top: 10px;
    line-height: 1;
}

.day-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.day-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.day-body {
    padding: 20px;
}

.activities {
    list-style: none;
}

.activities li {
    padding: 8px 0;
    border-bottom: 1px solid var(--soft-gray);
    font-size: 0.95rem;
}

.activities li:last-child {
    border-bottom: none;
}

/* ========== BUDGET SECTION ========== */
.budget {
    background: white;
    padding: 80px 20px;
}

.budget-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.budget-item {
    background: var(--soft-gray);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.budget-item:hover {
    transform: scale(1.05);
}

.budget-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.budget-item .amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral);
    display: block;
}

.budget-item .label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.budget-total {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: white;
    border-radius: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.budget-total p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

.per-person {
    margin-top: 10px;
    opacity: 0.9;
}

/* ========== PLACES & PHOTO SPOTS ========== */
.places {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.place-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.place-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-day-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.place-content {
    padding: 20px;
}

.place-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.place-name-th {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.place-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.photo-spots {
    background: var(--soft-gray);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.photo-spots h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.photo-spot {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.photo-spot:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.photo-spot img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.spot-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spot-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.spot-tip {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.checkin-tip {
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}

/* Info Section */
.place-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.info-icon {
    font-size: 1rem;
}

.info-link {
    color: var(--coral);
    text-decoration: underline;
    font-weight: 600;
}

.info-text {
    color: #666;
}

/* Restaurant Section */
.place-restaurants {
    background: var(--soft-gray);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.place-restaurants h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.restaurant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.restaurant-item:last-child {
    border-bottom: none;
}

.restaurant-name {
    font-weight: 600;
    color: var(--charcoal);
    flex: 1;
}

.restaurant-type {
    font-size: 0.8rem;
    color: #666;
    margin: 0 10px;
}

.restaurant-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coral);
}

/* Enhanced Photo Spots */
.photo-spot {
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid var(--coral);
}

.spot-time,
.spot-hours,
.spot-extra {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

/* ========== CTA SECTION ========== */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--coral) 0%, #FF8E8E 50%, var(--gold) 100%);
    color: white;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-style: italic;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .stats {
        padding: 30px 20px;
    }

    .day-cards {
        grid-template-columns: 1fr;
    }

    .budget-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2.5rem;
    }

    .budget-grid {
        grid-template-columns: 1fr;
    }
}
