* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff8f0;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #ff6b35, #ff8e35);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
}

h1 {
    font-size: 28px;
    margin: 0;
}

h2 {
    color: #d32f2f;
    margin-bottom: 15px;
}

section {
    background-color: white;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
}

nav.desktop-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #ff8e35, #ffb347);
    padding: 15px;
}

nav.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav.desktop-menu a:hover {
    text-decoration: underline;
}

#toggle-menu {
    display: none;
}

.burger-icon {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.burger-icon span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50px;
    right: 20px;
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 15px 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
}

.mobile-menu a {
    color: #fff;
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: #555;
}

#toggle-menu:checked ~ .mobile-menu {
    transform: translateY(0);
}

#toggle-menu:checked + .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#toggle-menu:checked + .burger-icon span:nth-child(2) {
    opacity: 0;
}

#toggle-menu:checked + .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }

    .burger-icon {
        display: flex;
    }
}

nav {
    background: linear-gradient(135deg, #ff8e35, #ffb347);
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

section {
    background-color: white;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
}

h2, h3 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.tour-hero {
    text-align: center;
    padding: 40px;
    background: url('https://i.pinimg.com/736x/1b/98/88/1b988822076454c4afc212c68d0a5884.jpg') center/cover;
    color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tour-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.tour-hero p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.price-box {
    background: linear-gradient(135deg, #ff6b35, #ff8e35);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.rating {
    color: #ffb347;
    font-size: 18px;
    margin: 10px 0;
}

.btn {
    background: linear-gradient(135deg, #ff6b35, #ff8e35);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    margin: 10px 0;
}

.btn:hover {
    background: linear-gradient(135deg, #e55a2b, #ff7a2b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.highlight-card {
    background-color: #fff8f0;
    border: 2px solid #ffb347;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: #ff8e35;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 142, 53, 0.2);
}

.program-day {
    background-color: #fff8f0;
    border: 2px solid #ffb347;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
}

.day-title {
    font-size: 18px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #333;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.included-item {
    background-color: #fff8f0;
    border: 1px solid #ffb347;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.info-box {
    background-color: #fff8f0;
    border: 2px solid #ffb347;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ffb347;
}

.info-item:last-child {
    border-bottom: none;
}

.special-offer {
    background: linear-gradient(135deg, #d32f2f, #ff6b35);
    color: white;
    padding: 15px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

footer {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .highlights {
        flex-direction: column;
    }
    
    .included-grid {
        flex-direction: column;
    }
    
    section {
        margin: 10px;
        padding: 20px;
    }
}