/* CSS Document */

/* ==============================
   RESET
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f7f9fb;
}

/* ==============================
   HEADER (HERO)
============================== */
header {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

header h1,
header p {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

/* Page Background Images */
.home header {
    background-image: url('../images/345738-Traverse-City.jpg');
}

.explore header {
    background-image: url('../images/pierce_stocking_view.jpg');
}

.stay header {
    background-image: url('../images/suite-350-1.webp');
}

.events header {
    background-image: url('../images/cherryfestcrowd.jpg');
}

.contact header {
    background-image: url('../images/Frankfort-Pier-Lighthouse.jpg');
}

/* ==============================
   NAVIGATION
============================== */
nav {
    background-color: #004c6d;
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

.menu li a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu li a:hover {
    background-color: #0077a6;
}

/* ==============================
   MAIN GRID (CARDS)
============================== */
.main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 10%;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ==============================
   THREE COLUMN LAYOUT
============================== */
.content-three-column {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding: 60px 10%;
    background: white;
}

.column h2 {
    margin-bottom: 15px;
    color: #004c6d;
}

.column p {
    margin-bottom: 15px;
    font-size: 17px;
}

.column ul {
    list-style: none;
}

.column ul li {
    margin-bottom: 8px;
}

.column ul li a {
    text-decoration: none;
    color: #004c6d;
}

.column ul li a:hover {
    text-decoration: underline;
}

/* ==============================
   FOOTER
============================== */
footer {
    background: #003049;
    color: white;
    padding: 40px 10%;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #f4d35e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {

    header h1 {
        font-size: 32px;
    }

    .content-three-column {
        grid-template-columns: 1fr;
    }

    .main-grid {
        padding: 40px 5%;
    }

    .content-three-column {
        padding: 40px 5%;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li a {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        width: 100%;
        text-align: center;
    }
	
	html {
  scroll-behavior: smooth;
}
	
}

