:root {
    --gold: #646e65;
    --darkGreen: #50715a;
    --green: #67996c;
    --lightGreen: #79c471;
    --lighterGreen: #c0f4bb;
    --gray: #f3f3f3;
    --dark: #333;
    --white: #ffffff;
    --swiper-navigation-color: var(--gold);
    --darkBlue: #1c122e;
    --lighterBlue: #c5b0ea;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--gray);
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: var(--white);
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .socials {
            display: flex;
            gap: 10px;
        }
    }
}

.logo-wrapper {
    align-items: center;
    display: flex;
    gap: 20px;

    a {
        color: var(--dark);
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
    }
}

.logo {
    max-width: 105px;
    height: auto;
}

main {
    padding: 40px 0;
}

.intro, .content {
    margin-bottom: 40px;
}

h1, h2, h3 {
    color: var(--darkBlue);
    font-weight: bold;
    text-transform: uppercase;
}

h3 {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 10px;
}

.carousel-wrapper {
    .swiper {
        aspect-ratio: 3 / 1;
        width: 100%;
    }

    .swiper-slide {
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        span {
            background-color: rgba(255, 255, 255, 0.75);
            bottom: 12px;
            color: var(--darkBlue);
            display: block;
            font-size: 10px;
            left: 10px;
            padding: 10px;
            position: absolute;
            text-align: center;
            width: calc(100% - 20px);

            h4 {
                font-size: 16px;
                margin: 0 0 10px;
            }
        }
    }
}

.google-map {
    .placeDiv {
      z-index: 1;
      position: absolute;
    }

    .map-container {
      position: relative;
    }

    .map-wrapper {
      height: 300px;
      width: 100%;
    }

    .placecard__container {
      box-shadow: rgba(0, 0, 0, 0.298039) 0 1px 4px -1px;
      max-width: 330px;
      width: 100%;
      background: rgb(255, 255, 255) none repeat scroll 0% 0%/auto padding-box border-box;
      border-radius: 2px 2px 2px 2px;
      font: normal normal normal normal 11px/normal Roboto, Arial, sans-serif;
      margin: 10px;
      padding: 9px 4px 9px 11px;
      overflow: hidden;
    }
    .placecard__left {
      float: left;
      width: 75%;
    }
    .placecard__right {
      text-align: center;
      float: left;
      width: 25%;
    }
    .placecard__business-name {
      cursor: default;
      height: 19px;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 200px;
      perspective-origin: 100px 9.5px;
      transform-origin: 100px 9.5px;
      font: normal normal 500 normal 14px/normal Roboto, Arial;
      overflow: hidden;
      margin: 0;
    }
    .placecard__info {
      color: rgb(91, 91, 91);
      cursor: default;
      height: 32px;
      width: 200px;
      column-rule-color: rgb(91, 91, 91);
      perspective-origin: 100px 16px;
      transform-origin: 100px 16px;
      border: 0 none rgb(91, 91, 91);
      font: normal normal normal normal 12px/normal Roboto, Arial;
      margin: 6px 0 0;
      outline: rgb(91, 91, 91) none 0px;
    }
    .placecard__direction-icon {
      background-color: #FFFFFF;
      background-image: url("https://maps.gstatic.com/mapfiles/embed/images/entity11.png");
      background-repeat: no-repeat;
      height: 22px;
      width: 22px;
      margin-right: auto;
      margin-left: auto;
    }
    .placecard__direction-link {
      color: rgb(58, 132, 223);
      display: block;
      height: 43px;
      text-decoration: none;
      width: 54.7344px;
    }
    .placecard__view-large {
      display: block;
      margin-top: 10px;
      color: rgb(58, 132, 223);
      text-decoration: none;
    }
}

footer {
    background-color: var(--darkBlue);
    color: var(--white);
    padding: 20px 0;
    border-top: 2px solid var(--dark);

    .socials {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    a {
        color: var(--lighterBlue);
        font-weight: bold;
        text-decoration: none;
    }
}

.footer-info {
    margin-bottom: 10px;
    text-align: center;

    table {
        margin: 0 auto;
    }
}

.socials a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Responsive styling */
@media (max-width: 600px) {
    .carousel-wrapper {
        .swiper {
            aspect-ratio: 1 / 1;
        }
    }
}
