/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Css reset */

/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styles */
.Header1 {
    background-color: #2196F3;
    padding: 15px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 1rem 1rem;
    text-align: center;
}

.center-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    padding: 15px;
}

header h1 a {
    color: #fff;
    text-decoration: none;
}

.header-icon {
    font-size: 2rem;
    color: #fff;
    margin-left: 10px;
}

/* Navigation Styles */
#navbar ul {
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
    margin-top: 10px;
}

#navbar li {
    color: #333;
    font-size: 20px;
    text-align: center;
    margin: 0 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #2196F3;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

#navbar li:hover {
    background-color: #1769c4;
}

#navbar a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
}

/* Main Content Styles */
.main-content {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.main-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.main-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
}

.main-content .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2196F3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s;
}

.main-content .btn:hover {
    background-color: #1769c4;
}

/* Featured Destinations Styles */
.featured-destinations {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.featured-destinations h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.destination-card {
    display: inline-block;
    width: 300px;
    padding: 20px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    background-color: #fff;
}

.destination-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.destination-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.destination-card p {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.destination-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    background-color: #f0f0f0;
}

/* Newsletter Styles */
.newsletter {
    padding: 20px;
    text-align: center;
    background-color: #2196F3;
    color: #fff;
}

.newsletter h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter form {
    margin: 20px 0;
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #2196F3;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.newsletter .btn:hover {
    background-color: #1769c4;
    color: #fff;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

footer p {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .center-children {
        flex-direction: column;
    }
    #navbar ul {
        margin-top: 0;
    }
    .destination-card {
        width: 100%;
        margin: 10px 0;
    }
}



