/* Retro Pop-up Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #F5E6D9;
    background-image: 
        linear-gradient(90deg, rgba(0,0,0,0.02) 50%, transparent 50%),
        radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px;
    min-height: 100vh;
    padding: 80px 0 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Navigation - Retro Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-bottom: 8px solid #E5A13F;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 
        0 0 20px rgba(229, 161, 63, 0.3),
        0 8px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 0 #E5A13F, 6px 6px 0 #D4512B;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
}

.logo .icon {
    margin-right: 8px;
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.logo:hover .icon {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.nav-link:hover {
    border-color: white;
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    background: #E5A13F;
    color: #1A1A1A;
    border-color: #D4512B;
    box-shadow: 0 0 0 3px #1B4D42, 0 5px 15px rgba(229, 161, 63, 0.4);
    font-weight: 900;
}

/* Retro Pop-up Style */
.retro-popup {
    background: #FFFFFF;
    border: 5px solid #1B4D42;
    border-radius: 0;
    box-shadow: 
        0 0 0 3px #E5A13F,
        0 0 0 6px #D4512B,
        0 20px 60px rgba(0,0,0,0.4);
    max-width: 100%;
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.retro-popup::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(212, 81, 43, 0.3);
    pointer-events: none;
}

.retro-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        #E66432,
        #E66432 20px,
        #BEA078 20px,
        #BEA078 40px
    );
}

.popup-header {
    background: linear-gradient(135deg, #D4512B 0%, #E5A13F 100%);
    color: #1A1A1A;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 6px solid #1B4D42;
    margin-top: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.popup-header::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #E5A13F,
        #E5A13F 15px,
        #D4512B 15px,
        #D4512B 30px
    );
}

.popup-icon {
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 2s infinite;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.popup-icon:hover {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(3px 3px 5px #321E0A);
}

.popup-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    flex: 1;
    font-family: 'Courier New', monospace;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.close-btn {
    background: #E66432;
    color: white;
    border: 3px solid #321E0A;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
    position: relative;
}

.close-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.close-btn:hover::before {
    width: 100%;
    height: 100%;
}

.close-btn:hover {
    background: #fff;
    color: #E66432;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.popup-content {
    padding: 30px 40px;
    background: #FFFFFF;
}

.retro-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: #1A1A1A;
    margin: 20px 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #D4512B 0%, #E5A13F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Alfa Slab One', 'Impact', 'Arial Black', sans-serif;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
}

.retro-corner {
    display: inline-block;
    margin: 0 20px;
    font-size: 36px;
    color: #D4512B;
}

.retro-subtitle {
    display: inline-block;
    background: #1B4D42;
    color: #F5E6D9;
    padding: 15px 50px;
    border: 6px solid #1A1A1A;
    border-radius: 0;
    font-size: 32px;
    font-weight: 900;
    margin: 20px auto;
    display: block;
    width: fit-content;
    box-shadow: 
        0 0 0 4px #E5A13F,
        0 0 0 8px #D4512B,
        0 15px 30px rgba(0,0,0,0.4);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.3);
}

.retro-text-box {
    background: #F5E6D9;
    border: 4px solid #1B4D42;
    border-radius: 0;
    padding: 25px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: inset 0 0 20px rgba(212, 81, 43, 0.2);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.retro-text-box p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #2C2C2C;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.retro-description {
    text-align: center;
    font-size: 18px;
    color: #2C2C2C;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.retro-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.retro-btn-primary,
.retro-btn-secondary {
    padding: 15px 35px;
    border: 4px solid #321E0A;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    box-shadow: 
        0 0 0 2px white,
        0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.retro-btn-primary::before,
.retro-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.retro-btn-primary:hover::before,
.retro-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.retro-btn-primary {
    background: #D4512B;
    color: #F5E6D9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.retro-btn-primary:hover {
    background: #E5A13F;
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 3px #1B4D42,
        0 0 0 6px #1A1A1A,
        0 12px 30px rgba(212, 81, 43, 0.5);
}

.retro-btn-secondary {
    background: #1B4D42;
    color: #F5E6D9;
    border-color: #1B4D42;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.retro-btn-secondary:hover {
    background: #1A1A1A;
    border-color: #D4512B;
    transform: translateY(-3px);
    box-shadow: 0 0 0 4px #E5A13F, 0 12px 30px rgba(27, 77, 66, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
}

.hero-popup {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Content Sections */
.content-section {
    padding: 20px 0;
}

/* Cards */
.retro-card {
    background: #FFFFFF;
    border: 4px solid #1B4D42;
    border-radius: 0;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 0 0 3px #E5A13F,
        0 0 0 6px #D4512B,
        0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.retro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,215,0,0.05) 10px,
        rgba(255,215,0,0.05) 20px
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.retro-card:hover::before {
    opacity: 1;
}

.retro-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 0 0 3px #E5A13F,
        0 0 0 6px #D4512B,
        0 20px 40px rgba(0,0,0,0.4);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 5px solid #1A1A1A;
    border-radius: 0;
    margin-bottom: 15px;
    filter: contrast(1.1) saturate(1.2);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4512B;
    color: #F5E6D9;
    padding: 8px 15px;
    border: 4px solid #1A1A1A;
    border-radius: 0;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 0 0 3px #E5A13F, 0 5px 15px rgba(0,0,0,0.3);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.card-info h3 {
    color: #1A1A1A;
    font-size: 24px;
    margin: 15px 0 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 rgba(229, 161, 63, 0.5);
}

.card-info p {
    color: #2C2C2C;
    line-height: 1.6;
    font-size: 14px;
}

.location-tag {
    display: inline-block;
    background: #1B4D42;
    color: #F5E6D9;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 900;
    border: 2px solid #1A1A1A;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.location-tag::after {
    content: '📍';
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
}

.location-tag:hover {
    transform: scale(1.1);
    background: #D4512B;
    padding-right: 30px;
}

.location-tag:hover::after {
    opacity: 1;
    right: 5px;
}

/* Grid Layouts */
.destination-grid,
.kuliner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.extra-destinations {
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.retro-feature-card {
    background: #FFFFFF;
    border: 4px solid #1B4D42;
    border-radius: 0;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 0 3px #E5A13F, 0 0 0 6px #D4512B;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.retro-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
    transition: left 0.5s;
}

.retro-feature-card:hover::after {
    left: 100%;
}

.retro-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 3px #BEA078,
        0 0 0 6px #E66432,
        0 15px 35px rgba(0,0,0,0.3);
}

.retro-feature-card.highlighted {
    background: white;
    border-color: #321E0A;
    border-width: 5px;
}

.retro-feature-card.highlighted .feature-icon {
    filter: drop-shadow(3px 3px 0 #321E0A);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(3px 3px 0 #321E0A);
    transition: all 0.5s ease;
    display: inline-block;
    cursor: pointer;
}

.feature-icon:hover {
    transform: scale(1.3) rotateY(360deg);
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.retro-feature-card h3 {
    color: #1A1A1A;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 rgba(212, 81, 43, 0.4);
}

.retro-feature-card.highlighted h3 {
    color: #D4512B;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.retro-feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.retro-feature-card.highlighted p {
    color: #666;
}

/* Tim Section */
.tim-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.tim-card {
    background: white;
    border: 4px solid #321E0A;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: all 0.3s;
    box-shadow: 
        0 0 0 2px #BEA078,
        0 0 0 4px #E66432,
        0 10px 25px rgba(0,0,0,0.2);
    position: relative;
}

.tim-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed #BEA078;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tim-card:hover::before {
    opacity: 0.5;
}

.tim-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 
        0 0 0 3px #BEA078,
        0 0 0 6px #E66432,
        0 20px 40px rgba(0,0,0,0.3);
}

.tim-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 5px solid #321E0A;
    box-shadow: 
        0 0 0 3px white,
        0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #E66432 0%, #BEA078 100%);
}

.tim-avatar:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 0 0 5px white,
        0 0 0 8px #BEA078,
        0 15px 30px rgba(0,0,0,0.4);
}

.tim-card h4 {
    color: #D4512B;
    font-size: 20px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 0 rgba(229, 161, 63, 0.5);
}

.tim-role {
    color: #D4512B;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: 2px solid #E5A13F;
    display: inline-block;
    padding-bottom: 5px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.tim-desc {
    color: #321E0A;
    font-size: 13px;
    line-height: 1.5;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-card {
    background: white;
    border: 4px solid #321E0A;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 0 2px #BEA078, 0 0 0 4px #E66432;
}

.stat-card:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 0 3px #BEA078,
        0 0 0 6px #E66432,
        0 15px 35px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(3px 3px 0 #321E0A);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.stat-icon:hover {
    transform: scale(1.3) rotateZ(15deg);
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.4));
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.stat-number {
    color: #D4512B;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(229, 161, 63, 0.6);
    display: block;
}

.stat-label {
    color: #1A1A1A;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(212, 81, 43, 0.3);
}

/* Food Labels */
.food-label {
    display: inline-block;
    background: #E66432;
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    border: 3px solid #321E0A;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.food-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

.food-label:hover::before {
    left: 100%;
}

.food-label:hover {
    transform: translateY(-2px) scale(1.05);
    background: #BEA078;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.price-tag {
    background: #BEA078;
    color: #E66432;
    padding: 10px 20px;
    border: 3px solid #321E0A;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
    text-shadow: 1px 1px 0 white;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Retro List */
.retro-list {
    list-style: none;
    padding: 20px 0;
}

.retro-list li {
    padding: 15px 20px;
    margin: 10px 0;
    background: white;
    border: 3px solid #000;
    border-radius: 10px;
    border-left: 8px solid #8B0000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.retro-list li:hover {
    transform: translateX(10px);
    border-left-color: #ff3333;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.retro-list li::before {
    content: '▸';
    margin-right: 10px;
    color: #E66432;
    font-weight: bold;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-popup {
    background: #FFFFFF;
    margin: 5% auto;
    border: 6px solid #1B4D42;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 0 0 4px #E5A13F,
        0 0 0 8px #D4512B,
        0 30px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease-out;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 5px solid #321E0A;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-rating {
    display: inline-block;
    background: #D4512B;
    color: #F5E6D9;
    padding: 10px 20px;
    border: 4px solid #1A1A1A;
    border-radius: 0;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 3px #E5A13F;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.modal-section {
    margin-bottom: 25px;
    background: #F5E6D9;
    padding: 20px;
    border: 4px solid #1B4D42;
    border-radius: 0;
}

.modal-section h3 {
    color: #1A1A1A;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    text-shadow: 3px 3px 0 rgba(229, 161, 63, 0.6);
}

.modal-section p {
    color: #2C2C2C;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 600;
}

#map {
    border: 4px solid #1A1A1A !important;
    border-radius: 0;
    box-shadow: inset 0 0 20px rgba(212, 81, 43, 0.2);
}

/* CTA Section */
.cta-popup {
    background: linear-gradient(135deg, #D4512B 0%, #E5A13F 100%);
    color: #1A1A1A;
}

.cta-popup .popup-content {
    background: transparent;
}

.cta-popup h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #000;
}

.cta-popup p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #000;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 70px 0 0;
    }
    
    .popup-content {
        padding: 20px 25px;
    }

    .retro-title {
        font-size: 24px;
    }

    .retro-subtitle {
        font-size: 18px;
        padding: 10px 25px;
    }

    .retro-card {
        border-width: 3px;
    }

    .tim-grid {
        flex-direction: column;
        align-items: center;
    }

    .tim-card {
        max-width: 100%;
    }

    .destination-grid,
    .kuliner-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .retro-popup {
        border-width: 4px;
        margin: 20px 0;
        width: 100%;
        max-width: 100%;
    }

    .popup-header {
        padding: 15px 20px;
        font-size: 14px;
    }

    .popup-title {
        font-size: 14px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 5px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
}
