/* pacific.css */

/* Global styles */
body {
    background-color: #FFFFFF;
    color: #666666;
    margin: 0; /* Set margin to 0 to collapse empty space */
    font-family: Arial, Helvetica, sans-serif; /* Task 1: Font typeface */
}

/* Header styles */
header {
    background-color: #002171;
    color: #FFFFFF;
    margin-bottom: 0; /* Set bottom margin of header to 0 */
    background-image: url('sunset.jpg'); /* Task 2: Background image */
    background-position: right;
    background-repeat: no-repeat;
    line-height: 400%; /* Task 2: Line height */
    text-indent: 1em; /* Task 2: Text indent */
}
/* Navigation styles */
nav {
    background-color: #BBDEFB;
    font-weight: bold; /* Task 3: Bold text */
}

/* Navigation link styles */
nav a {
    text-decoration: none; /* Task 4: Remove underline for links */
}

/* Heading styles */
h1, h2, h3 {
    margin-bottom:0;
    font-family: Georgia, 'Times New Roman', serif; /* Tasks 5, 6, 7: Font typeface */
}

h2 {
    color: #1976D2;
}

h3 {
    color: #000033; /* Task 7: Text color */
}

/* List styles */
ul {
    list-style-image: url('marker.gif'); /* Task 8: List marker image */
}

/* Footer styles */
footer {
    font-size: 75%; /* Task 9: Font size */
    font-style: italic; /* Task 9: Italic font style */
    text-align: center; /* Task 9: Centered text */
    font-family: Georgia, 'Times New Roman', serif; /* Task 9: Font typeface */
}
dt {
    color: #002171;
}
/* Resort class styles */
.resort {
    font-weight: bold; /* Task 10: Bold text */
    color: #1976D2;
}

/* Contact id styles */
#contact {
    font-size: 90%; /* Task 11: Font size */
}
