
:root {
  --navy: #10294d;
  --navy-deep: #0a1d38;
  --gold: #f0a93a;
  --cream: #f7f5f0;
  --slate: #5b6b82;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: #fff;
}

.brand-font {
  font-family: 'Playfair Display', serif;
}

<style>
/*
 * ============================================================
 * RESORT SANDUSKY NAVBAR OVERRIDES
 *
 * This block intentionally overrides the legacy site's navbar
 * styles without requiring changes to the old stylesheet.
 *
 * IMPORTANT:
 * Place this <style> block AFTER the legacy CSS.
 * ============================================================
 */


/* ------------------------------------------------------------
   Main navbar
   ------------------------------------------------------------ */

nav.navbar.navbar-custom {
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #eee;
    min-height: 78px;
}


/* ------------------------------------------------------------
   Navbar UL

   Legacy CSS adds:
   - right padding
   - positioning
   - z-index
   - white box shadow

   Remove all of that.
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav {
    position: static;
    z-index: auto;

    padding: 0;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}


/* ------------------------------------------------------------
   Remove legacy decoration underneath the nav
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav:before,
nav.navbar.navbar-custom ul.nav.navbar-nav:after {
    content: none;
    display: none;
}


/* ------------------------------------------------------------
   Main navigation links

   Legacy CSS currently forces:
       color: #fff;
       padding: 27px 18px;
       font-weight: bold;

   Override those here.
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav > li > a {
    position: relative;

    color: #10294d;

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: .5px;

    padding: 16px 9px;

    background: transparent;

    text-decoration: none;
}


/* ------------------------------------------------------------
   Remove legacy uppercase transformation
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav a {
    font-weight: 600;
    text-transform: none;
}


/* ------------------------------------------------------------
   Link hover/focus
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav > li > a:hover,
nav.navbar.navbar-custom ul.nav.navbar-nav > li > a:focus {
    color: #f0a93a;
    background: transparent;
    text-decoration: none;
}


/* ------------------------------------------------------------
   Remove separators between nav items

   Legacy CSS creates these using :after and an image.
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav > li:not(:first-child):after {
    content: none;
    display: none;

    width: 0;
    height: 0;

    background: none;
}


/* ------------------------------------------------------------
   Remove any legacy labels/badges above navigation links
   ------------------------------------------------------------ */

nav.navbar.navbar-custom ul.nav.navbar-nav > li > span {
    position: static;
    padding: 0;

    font-size: inherit;
    color: inherit;

    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}

nav.navbar.navbar-custom ul.nav.navbar-nav > li > span:after {
    content: none;
    display: none;
}


/* ------------------------------------------------------------
   Logo
   ------------------------------------------------------------ */

nav.navbar.navbar-custom .navbar-brand {
    height: auto;
    margin: 0;
    padding: 9px 15px;
}

nav.navbar.navbar-custom .navbar-brand img {
    display: block;
    width: auto;
    height: 58px;
}


/* ------------------------------------------------------------
   Hamburger
   ------------------------------------------------------------ */

nav.navbar.navbar-custom .navbar-toggle {
    margin-top: 20px;
    margin-right: 15px;

    padding: 9px 10px;

    border: 0;
    background: transparent;
}

nav.navbar.navbar-custom .navbar-toggle:hover,
nav.navbar.navbar-custom .navbar-toggle:focus {
    background: transparent;
}

nav.navbar.navbar-custom .navbar-toggle .icon-bar {
    width: 26px;
    height: 3px;

    background-color: #10294d;
}


/* ------------------------------------------------------------
   Navbar collapse
   ------------------------------------------------------------ */

nav.navbar.navbar-custom .navbar-collapse {
    box-shadow: none;
}


/* ============================================================
   DESKTOP / TABLET
   768px and wider
   ============================================================ */

@media (min-width: 768px) {

    nav.navbar.navbar-custom .navbar-header {
        float: left;
        min-height: 77px;
    }

    nav.navbar.navbar-custom .navbar-toggle {
        display: none;
    }

    nav.navbar.navbar-custom .navbar-collapse {
        display: block !important;

        height: auto !important;

        padding-top: 0;
        padding-bottom: 0;

        overflow: visible !important;

        border-top: 0;

        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    nav.navbar.navbar-custom .navbar-collapse.collapse {
        display: block !important;
    }


    /*
     * Horizontal desktop navigation
     */

    nav.navbar.navbar-custom ul.nav.navbar-nav {
        float: right;

        margin-top: 14px;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;

        padding: 0;

        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    nav.navbar.navbar-custom ul.nav.navbar-nav > li {
        float: left;
    }

    nav.navbar.navbar-custom ul.nav.navbar-nav > li > a {
        color: #10294d;

        font-size: 14px;
        font-weight: 600;

        padding: 16px 9px;
    }

}


/* ============================================================
   SMALLER DESKTOP / TABLET

   Tighten navigation slightly so all seven links fit.
   ============================================================ */

@media (min-width: 768px) and (max-width: 1199px) {

    nav.navbar.navbar-custom ul.nav.navbar-nav > li > a {
        font-size: 12px;

        padding-left: 6px;
        padding-right: 6px;
    }

}


/* ============================================================
   MOBILE
   Below 768px
   ============================================================ */

@media (max-width: 767px) {

    nav.navbar.navbar-custom {
        min-height: 70px;
    }


    /* Header */

    nav.navbar.navbar-custom .navbar-header {
        float: none;
        min-height: 69px;
    }


    /* Logo */

    nav.navbar.navbar-custom .navbar-brand {
        padding-top: 8px;
        padding-bottom: 7px;
    }

    nav.navbar.navbar-custom .navbar-brand img {
        height: 54px;
    }


    /* Hamburger */

    nav.navbar.navbar-custom .navbar-toggle {
        display: block;
        margin-top: 17px;
    }


    /* Collapsed menu container */

    nav.navbar.navbar-custom .navbar-collapse {
        border-top: 1px solid #eee;

        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    nav.navbar.navbar-custom .navbar-collapse.collapse {
        display: none !important;
    }

    nav.navbar.navbar-custom .navbar-collapse.collapse.in {
        display: block !important;
    }


    /* Vertical mobile menu */

    nav.navbar.navbar-custom ul.nav.navbar-nav {
        position: static;

        float: none !important;

        margin: 0 -15px;
        padding: 0;

        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    nav.navbar.navbar-custom ul.nav.navbar-nav > li {
        float: none;
    }

    nav.navbar.navbar-custom ul.nav.navbar-nav > li > a {
        display: block;

        color: #10294d;

        font-size: 14px;
        font-weight: 600;

        padding: 13px 20px;

        border-bottom: 1px solid #f3f3f3;

        background: #fff;
    }

    nav.navbar.navbar-custom ul.nav.navbar-nav > li > a:hover,
    nav.navbar.navbar-custom ul.nav.navbar-nav > li > a:focus {
        color: #f0a93a;
        background: #fafafa;
    }


    /*
     * Make absolutely sure legacy generated decorations
     * aren't displayed on mobile.
     */

    nav.navbar.navbar-custom ul.nav.navbar-nav:before,
    nav.navbar.navbar-custom ul.nav.navbar-nav:after,
    nav.navbar.navbar-custom ul.nav.navbar-nav > li:before,
    nav.navbar.navbar-custom ul.nav.navbar-nav > li:after {
        content: none !important;
        display: none !important;
        background: none !important;
    }

}

/* =========================================================
   FORCE NEW NAVBAR BACKGROUND TO WHITE
   Overrides legacy theme navbar backgrounds
   ========================================================= */

html body nav.navbar.navbar-custom,
html body nav.navbar.navbar-default.navbar-custom {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;

    filter: none !important;

    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid #eee !important;

    box-shadow: none !important;
}


/* Navbar container */

html body nav.navbar.navbar-custom > .container,
html body nav.navbar.navbar-custom > .container-fluid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}


/* Header / logo area */

html body nav.navbar.navbar-custom .navbar-header {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}


/* Navigation collapse area */

html body nav.navbar.navbar-custom .navbar-collapse {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}


/* UL navigation */

html body nav.navbar.navbar-custom ul.nav.navbar-nav {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}


/* Individual menu items */

html body nav.navbar.navbar-custom ul.nav.navbar-nav > li {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}


/* Links */

html body nav.navbar.navbar-custom ul.nav.navbar-nav > li > a {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #10294d !important;
}


/* Hover / focus */

html body nav.navbar.navbar-custom ul.nav.navbar-nav > li > a:hover,
html body nav.navbar.navbar-custom ul.nav.navbar-nav > li > a:focus {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #f0a93a !important;
}

/* =========================================================
   Navbar
   ========================================================= */

.navbar-custom {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  margin-bottom: 0;
  min-height: 78px;
}

.navbar-custom .container {
  position: relative;
}

.navbar-custom .navbar-header {
  min-height: 77px;
}

.navbar-custom .navbar-brand {
  height: auto;
  padding: 9px 15px;
  margin: 0;
}

.navbar-custom .navbar-brand img {
  display: block;
  height: 58px;
  width: auto;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1.1;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--slate);
  font-weight: 600;
}

.lighthouse-icon {
  font-size: 34px;
  color: var(--navy);
}


/* Desktop nav links */

.navbar-custom .navbar-nav > li > a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  background: transparent;
}

.navbar-custom .navbar-nav > li > a:hover,
.navbar-custom .navbar-nav > li > a:focus {
  color: var(--gold);
  background: transparent;
}


/* Hamburger */

.navbar-custom .navbar-toggle {
  margin-top: 20px;
  margin-right: 15px;
  border: 0;
  background: transparent;
}

.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
  background: transparent;
}

.navbar-custom .navbar-toggle .icon-bar {
  background: var(--navy);
  width: 26px;
  height: 3px;
}


/* Collapsed nav */

.navbar-custom .navbar-collapse {
  box-shadow: none;
}


/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 50px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  background:
    linear-gradient(
      180deg,
      rgba(10, 29, 56, .55) 0%,
      rgba(10, 29, 56, .35) 40%,
      rgba(10, 29, 56, .65) 100%
    ),
    url('assets2/cedar-point-gatekeeper-2.jpg')
    center center / cover no-repeat;

  color: #fff;
}


.hero h1 {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.4;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  max-width: 980px;
  margin: 0 auto 16px;
}

.hero p.lead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 42px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.hero-buttons {
  text-align: center;
}

.hero-buttons .btn {
  margin: 0 6px;
}


/* =========================================================
   Buttons
   ========================================================= */

.btn-navy {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 14px 26px;
  border-radius: 4px;
}

.btn-navy:hover,
.btn-navy:focus,
.btn-navy:active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 13px 26px;
  border-radius: 4px;
}

.btn-outline-hero:hover,
.btn-outline-hero:focus,
.btn-outline-hero:active {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: #fff;
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 13px;
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--navy);
  color: #fff;
}


/* =========================================================
   Section headings
   ========================================================= */

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
}


/* =========================================================
   Rental cards
   ========================================================= */

.rental-card {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.rental-img {
  height: 230px;
  object-fit: cover;
  width: 100%;
}

.rental-body {
  padding: 24px;
}

.rental-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.rental-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  font-size: 14px;
  color: #333;
  margin-bottom: 9px;
}

.rental-feature i {
  color: var(--navy);
  width: 18px;
  text-align: center;
  margin-right: 10px;
}


/* =========================================================
   Why guests love section
   ========================================================= */

.why-section {
  background: var(--cream);
  padding: 48px 0;
}

.why-item {
  text-align: center;
}

.why-item i {
  font-size: 29px;
  color: var(--navy);
  margin-bottom: 10px;
  display: block;
}

.why-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}


/* =========================================================
   Testimonials
   ========================================================= */

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 29px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(16, 41, 77, .06);
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
}

.carousel-arrow {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 22px;
}


/* =========================================================
   Mobile CTA
   ========================================================= */

.mobile-cta {
  position: sticky;
  bottom: 0;
  z-index: 1030;
  background: linear-gradient(90deg, #0b254c, #214d9d);
  color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .16);
}

.mobile-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  min-height: 64px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile-cta a i {
  margin-right: 10px;
}

.mobile-cta .split {
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.call-btn {
  background: var(--navy-deep);
  color: #fff;
}

.avail-btn {
  background: #2c4f85;
  color: #fff;
}

.call-btn:hover,
.avail-btn:hover {
  opacity: .92;
  color: #fff;
}


/* =========================================================
   Desktop/tablet navigation
   768px and wider
   ========================================================= */

@media (min-width: 768px) {

  .navbar-custom .navbar-header {
    float: left;
  }

  .navbar-custom .navbar-toggle {
    display: none;
  }

  .navbar-custom .navbar-collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    border-top: 0;
    box-shadow: none;
  }

  .navbar-custom .navbar-collapse.collapse {
    display: block !important;
  }

  .navbar-custom .navbar-nav {
    float: right;
    margin: 14px 0 0;
  }

  .navbar-custom .navbar-nav > li {
    float: left;
  }

  .navbar-custom .navbar-nav > li > a {
    padding: 16px 9px;
  }
}


/* =========================================================
   Medium screens
   ========================================================= */

@media (max-width: 1199px) and (min-width: 768px) {

  .navbar-custom .navbar-nav > li > a {
    font-size: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero h1 {
    font-size: 52px;
  }
}


/* =========================================================
   Tablet / smaller desktop
   ========================================================= */

@media (max-width: 991px) {

  .hero h1 {
    font-size: 44px;
  }
}


/* =========================================================
   Mobile navigation
   Below 768px
   ========================================================= */

@media (max-width: 767px) {

  .navbar-custom {
    min-height: 70px;
  }

  .navbar-custom .navbar-header {
    float: none;
    min-height: 69px;
  }

  .navbar-custom .navbar-brand {
    padding-top: 8px;
    padding-bottom: 7px;
  }

  .navbar-custom .navbar-brand img {
    height: 54px;
  }

  .navbar-custom .navbar-toggle {
    display: block;
    margin-top: 17px;
  }

  .navbar-custom .navbar-collapse {
    border-top: 1px solid #eee;
  }

  .navbar-custom .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-custom .navbar-collapse.collapse.in {
    display: block !important;
  }

  .navbar-custom .navbar-nav {
    float: none !important;
    margin: 0 -15px;
  }

  .navbar-custom .navbar-nav > li {
    float: none;
  }

  .navbar-custom .navbar-nav > li > a {
    display: block;
    font-size: 14px;
    padding: 13px 20px;
    border-bottom: 1px solid #f3f3f3;
  }

  .hero {
    min-height: 540px;
  }

  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero p.lead {
    font-size: 16px;
    margin-bottom: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 12px;
  }
}


.ct-category:after {
content: "";
position: absolute;
display: block;
width: 100%;
bottom: 0;
left: 0;
height: 0;
background-color: none;
}