body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

.width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


.header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
}


.footer {
    background-color: #111827;
    color: #f9fafb;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-radius: 10px 10px 0 0;
}

.footer p {
    margin: 0;
    font-size: 0.875rem;
}


.cta-button {
    display: inline-block;
    background-color: #f59e0b;
    color: #111827;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

.placeholder-box {
    background-color: #e5e7eb;
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: #6b7280;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-title {
    text-align: center;
    padding: 3rem 0 1rem 0;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin: 0;
}


.top {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), #3b82f6;
    color: white;
    padding: 5rem 0;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 10px 10px;
    margin-bottom: 2rem;
}

.top h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.top p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.section {
    padding: 2rem 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 2rem;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.feature h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-top: 0;
}


.places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.place {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.img {
    height: 200px;
    background-color: #d1d5db;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: #4b5563;
    font-size: 1rem;
    text-align: center;
}

.info {
    padding: 1.5rem;
}

.info h3 {
    color: #3b82f6;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.info a {
    display: inline-block;
    background-color: #f59e0b;
    color: #111827;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding-bottom: 3rem;
}

.pic {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.75rem;
    font-size: 0.9rem;
}


.about {
    padding: 3rem 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.about h1 {
    font-size: 2.5rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.details {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 0 2rem;
}

.text {
    flex: 2;
}

.text h2 {
    color: #3b82f6;
    font-size: 1.75rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-top: 0;
}


.contact {
    padding: 3rem 0;
}

.form {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form h1 {
    font-size: 2rem;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    box-sizing: border-box;
}

.field input:focus,
.field textarea:focus {
    border-color: #3b82f6;
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #f59e0b;
    color: #111827;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}


@media (max-width: 800px) {
    .details {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top h1, .page-title h1 {
        font-size: 2rem;
    }
    .top p {
        font-size: 1rem;
    }
    
    .form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}