* {
    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;
    }
}

h1 {
    font-size: 28px;
    margin: 0;
}


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);
}

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;
}


.hero {
    text-align: center;
    padding: 40px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}


.btn, button {
    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);
}

.btn:hover, button:hover {
    background: linear-gradient(135deg, #e55a2b, #ff7a2b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}


.tour {
    border: 2px solid #ffb347;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    transition: all 0.3s ease;
}

.tour:hover {
    border-color: #ff8e35;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 142, 53, 0.2);
}

.tour img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.tour h3 {
    color: #d32f2f;
    margin-top: 0;
    margin-bottom: 10px;
}

.tour .price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
    text-decoration: none;
}

.tour .rating {
    color: #ffb347;
    margin-top: 5px;
}

.tour p {
    color: #000000;
}




ul {
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}


.reviews {
    background: linear-gradient(135deg, #d32f2f, #ff6b35);
    color: white;
    text-align: center;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.reviews h2 {
    color: white;
}

.review {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 16px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    object-fit: cover;
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #d32f2f;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffb347;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

textarea {
    height: 80px;
    resize: vertical;
}


footer {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}


@media (max-width: 768px) {
    section {
        margin: 10px;
        padding: 20px 15px;
    }
    
    header {
        padding: 15px 10px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    nav {
        padding: 15px 10px;
    }
    
    nav a {
        display: block;
        margin: 10px 0;
        font-size: 14px;
    }
    
    .hero {
        padding: 25px 15px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .tour {
        padding: 15px;
    }
    
    .tour img {
        height: 150px;
    }
    
    .tour .price {
        font-size: 18px;
    }
}
