* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fffef7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sketch-header {
    background: #fffef7;
    padding: 2rem 0;
    border-bottom: 3px dashed #2c2c2c;
}

.sketch-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
    text-decoration: underline wavy;
}

.sketch-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.sketch-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px dashed #2c2c2c;
    transition: all 0.3s;
}

.sketch-nav a:hover {
    background: #ff6b6b;
    color: white;
    border-style: solid;
}

.sketch-hero {
    padding: 4rem 0;
    background: #fffef7;
}

.sketch-hero-content {
    text-align: center;
}

.sketch-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
    transform: rotate(-2deg);
}

.sketch-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
    transform: rotate(1deg);
}

.sketch-hero-content img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border: 5px dashed #2c2c2c;
    border-radius: 20px;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}

.sketch-tours {
    padding: 4rem 0;
    background: #f0f0f0;
}

.sketch-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
    text-decoration: underline wavy;
    transform: rotate(-1deg);
}

.sketch-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sketch-card {
    background: white;
    border: 3px dashed #2c2c2c;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: rotate(1deg);
    transition: transform 0.3s;
}

.sketch-card:nth-child(even) {
    transform: rotate(-1deg);
}

.sketch-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.sketch-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed #ff6b6b;
    pointer-events: none;
}

.sketch-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sketch-card-content {
    padding: 2rem;
}

.sketch-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #4ecdc4;
    transform: rotate(-1deg);
}

.sketch-card-content p {
    color: #666;
    margin-bottom: 1rem;
}

.sketch-price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.sketch-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4ecdc4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 3px solid #2c2c2c;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sketch-btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.sketch-contact {
    padding: 4rem 0;
    background: #fffef7;
}

.sketch-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.sketch-contact-info {
    background: white;
    padding: 2rem;
    border: 3px dashed #2c2c2c;
    border-radius: 15px;
}

.sketch-contact-info p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.sketch-contact-info strong {
    color: #ff6b6b;
}

.sketch-form {
    background: white;
    padding: 2rem;
    border: 3px dashed #2c2c2c;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sketch-form input,
.sketch-form textarea {
    padding: 12px;
    border: 2px dashed #2c2c2c;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 5px;
}

.sketch-footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px dashed white;
}

@media (max-width: 768px) {
    .sketch-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sketch-contact-content {
        grid-template-columns: 1fr;
    }
    
    .sketch-card {
        transform: rotate(0deg) !important;
    }
}

