
/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Main Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header Image */
.header-image {
    height: 200px;
    background: url('https://images.unsplash.com/photo-1524413840807-0c3cb6fa808d?q=80&w=2070&auto=format&fit=crop') center/cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* Heading */
h1 {
    text-align: center;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

/* Form Labels and Inputs */
label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

select[multiple] {
    height: 120px; /* Adjust height for multi-select */
    padding: 10px;
}


input:focus, select:focus {
    border-color: #007bff;
    outline: none;
}

/* City Selection - to span across columns if needed */
.city-selection {
    grid-column: 1 / -1; /* Span full width */
}

/* Activities Section */
.activities-section {
    margin-bottom: 30px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.activity-grid div {
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    margin-right: 8px;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button[type="submit"] {
    background-color: #007bff;
    color: #fff;
}

button[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

button[type="reset"] {
    background-color: #f1f1f1;
    color: #555;
    border: 1px solid #ddd;
}

button[type="reset"]:hover {
    background-color: #e0e0e0;
}

/* Itinerary Summary */
#itinerary-summary {
    text-align: center;
    margin: 30px 0;
    font-size: 1.1em;
    color: #333;
}

/* Itinerary Display */
.itinerary-container {
    margin-top: 20px;
}

.day-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.day-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2em;
}

.day-header span {
    color: #777;
    font-size: 0.9em;
}

.day-content {
    padding: 20px;
    line-height: 1.6;
}

.day-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.day-content li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.day-content p strong {
  color: #555;
}

/* Feedback Section */
.feedback-section {
    max-width: 800px;
    margin: 30px auto 0 auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feedback-section h2 {
    text-align: center;
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
}

.feedback-form label {
    margin-top: 15px;
}

.feedback-form input[type="email"],
.feedback-form textarea {
    margin-bottom: 20px;
}

.feedback-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
}
