
body {
	font-family: Arial, sans-serif;
	margin: 0;
	line-height: 1.6;
	color: #333;
}

header {
    background-color: #0077cc;
    color: white;
    padding: 20px;
}

header h1 {
	margin: 0 0 20px 0;
	font-size: 2.5rem;
}
header p {
	font-size: 1.2rem;
}
header a {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 25px;
	background-color: #ff9900;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}
section {
	padding: 40px 20px;
}
h2 {
	color: #0077cc;
	margin-bottom: 20px;
}
.destination-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}
.destination-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
	transition: transform 0.3s;
}
.destination-card:hover {
	transform: scale(1.02);
}
.destination-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
.destination-card h3 {
	margin: 15px 0 10px 0;
}
.destination-card p {
	margin: 0 0 15px 0;
	padding: 0 10px;
	font-size: 0.95rem;
}
.btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0077cc;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	margin-bottom: 20px;
}
footer {
	background-color: #f4f4f4;
	padding: 30px 20px;
	text-align: center;
	font-size: 0.9rem;
}
.newsletter input[type="text"], .newsletter input[type="email"] {
	padding: 10px;
	margin: 5px 0;
	width: 250px;
	max-width: 90%;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.newsletter button {
	padding: 10px 20px;
	background-color: #ff9900;
	border: none;
	color: white;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}
.newsletter button:hover {
	background-color: #e68a00;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}



.hero-text {
    text-align: center;
    padding: 40px 20px;
}
