@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap');

body {
    font-family: 'Raleway', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a, img, data, span, input, button, select, ion-icon, textarea {
    display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
    height: auto;
}

input, button, select, textarea {
  background: none;
  border: none;
  font: inherit;
}

input, select, textarea {
  width: 100%;
  outline: none;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: rgb(218, 218, 218);
  color: black;
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.85em;
  overflow: hidden;
}

body.loaded {
    overflow: overlay;
}

body.nav-active {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: hsl(20, 9%, 26%);;
}


/* Preload */
.preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(20, 9%, 26%);
    z-index: 10;
    display: grid;
    place-content: center;
    justify-items: center;
    transition: 500ms ease;
}

.preload > * {
    transition: 250ms ease;
}

.preload.loaded > * {
    opacity: 0;
}

.preload.loaded {
    transition-delay: 250ms;
    transform: translateY(100%);
}

.circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 3px solid white;
    border-block-start-color: black;
    margin-block-end: 45px;
    animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(1turn);
    }
  }

.preload .text {
    background-image: linear-gradient(90deg, transparent 0% 16.66%, black 33.33% 50%,  transparent 66.66% 75%);
    background-size: 500%;
    font-size: calc(2rem + 3vw);
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 16px;
    text-align: center;
    /* padding-inline-start: 16px; */
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 0.5px black;
    animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
    0% { background-position: 100%; }
    100% { background-position: 0%; }
  }

/* Top Bar */
.topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    border-block-end: 1px solid black;
    transition: 250ms ease;
    background-color: rgba(0, 0, 0, 0.501);
    color: white;
    z-index: 1000;
}

.topbar .top-container, .topbar-item {
    display: flex;
    align-items: center;
}

.topbar .top-container {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-item {
    gap: 6px;
    margin-bottom: 0px;
}
.topbar-item ion-icon {
    -ionicon-stroke-width: 60px;
}

.topbar-item .span {
    font-size: 1.5rem;
}

.topbar .link {
    transition: 250ms ease;
}


/* NAV BAR */

nav,
.nav-links {
    display: flex;
    flex-wrap: wrap;
}

nav {
    justify-content: space-around;
    align-items: center;
    min-height: 15rem;
    background-color: hsl(20, 9%, 26%);
}

.nav-links {
    gap: 3rem;
    list-style: none;
    font-size: 2rem;
    padding-top: 5rem;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    width: 0;
    height: 3px;
    background: rgb(212, 212, 212);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    height: 90%;
    color: white;
    padding-top: 5rem;
}

.logo img {
    max-height: 100%;
}

.logo:hover {
    cursor: default;
}

/* HAMBURGER MENU */

#hamburger-nav {
    display: none;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 23px;
    width: 35px;
    cursor: pointer;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.75 ease-in-out;
}

.menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: hsla(20, 9%, 26%, 0.886);
    opacity: 100%;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 2rem;
    /* padding: 3rem;
    border: rgb(255, 255, 255) 0.25rem solid; */
}

.menu-links a {
    display: block;
    padding: 3rem;
    padding-left: 6rem;
    padding-right: 6rem;
    text-align: center;
    font-size: 2rem;
    justify-content: space-between;
    color: white;
    transition: all 0.3s ease-in-out;
}

.menu-links li {
    list-style: none;
}

.menu-links.open {
    max-height: 1500px;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
    transform: none;
}

.hamburger-icon span:first-child {
    opacity: 1;
}

.hamburger-icon span:first-child {
    transform: none;
}

.menu-links a {
    color: white;
    text-decoration: none;
    position: relative;
}

.menu-links a:hover {
    color: black;
}



/* HERO SECTION */

section {
    margin: 0;
    box-sizing: border-box;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 250ms ease;
    background-image: url(assets/herocanvas.png);
    background-size: cover;
    background-position: 0%;
    box-shadow: 0 0.5rem 1rem rgb(105, 105, 105);
    border-radius: 2rem;
    background-color: hsl(20, 9%, 26%);
    margin: 4rem;
    animation: zoom 10s ease-in-out forwards;
}

@keyframes zoom {
    0% {
        background-size: 100%; /* Initial size */
    }
    100% {
        background-size: 115%; /* Zoomed size */
    }
}

.section__pic-container {
    display: flex;
    max-width: 100%;
    align-self: center;
    justify-content: center;
    flex: 1;
    margin-right: 20px;
}

.section__pic-container img {
    width: 600px;
    height: auto;
    align-self: center;
    justify-content: center;
    text-align: center;
}


.section__text {
    text-align: center;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.523);
    padding: 2rem;
    border-radius: 2rem;
    animation: fadeIn 1.5s ease-in-out;
    margin: 2rem;
    position: relative;
}

.section__text p {
    font-weight: 600;
    position: relative;
}

.section__text__p1  {
    text-align: center;
    color: hsl(20, 9%, 26%);
    font-size: 3rem;
    padding-bottom: 1rem;
    line-height: 1;
}

.section__text__p2  {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 4rem;
    text-align: center;
    color: black;
    padding-bottom: 2rem;
    line-height: 1;
}

/* BUTTONS */

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.btn {
    font-weight: 400;
    transition: all 300ms ease;
    padding: 1rem;
    border-radius: 0.5em;
}

.btn-color-1, .btn-color-2 {
    border: hsl(20, 9%, 26%) 0.1rem solid;
}

.btn-color-1:hover, .btn-color-2:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.btn-color-1, .btn-color-2:hover {
    background: #1d1f24;
    color: white;
}

.btn-color-1:hover {
    background: #434549;
    color: rgb(255, 255, 255)
}

.btn-color-2 {
    background: #434549;
    color: rgb(255, 255, 255);
}
.btn-color-2:hover {
    border: hsl(20, 9%, 26%) 0.1rem solid;
}

.btn-container {
    gap: 1rem;
}

.fa-angles-down {
    position: absolute;
    right: 2rem;
    bottom: 2.5rem;
    color: black;
    font-size: 3rem;
    cursor: pointer;
}

/* SLIDESHOW SECTION */

#slideshow {
    padding: 4rem;
    filter: grayscale(25%);
}

.slider-wrapper {
    position: relative;
    max-width: 100%;
    max-height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    box-shadow: 0 0.5rem 1rem rgb(105, 105, 105);
    border-radius: 2rem;
    margin-bottom: 4rem;
    /* scrollbar-width: none; Firefox */
    /* -ms-overflow-style: none; Microsoft Edge */
}

.slider::-webkit-scrollbar {
    /* display: none; Chrome, Safari, Opera */
}

.slider img {
    max-width: 400px;
    max-height: 400px;
}

/* VIDEO */

#video {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
}

.intro-video {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.intro-video iframe {
    width: 400px;
}

/* MAP */

#map {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map {
    width: 90%;
    height: 500px;
    background: white;
    overflow: hidden;
    position: relative;
    height: 400px;
    filter: grayscale(75%);
    border-radius: 2rem;
    margin-top: 2rem;
    box-shadow: 0 0.5rem 1rem rgb(105, 105, 105);
    border: 0;
}

.map iframe {
    border: 0;
}

/* FOOTER */

footer {
    background-color: hsl(20, 9%, 26%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    position: absolute;
    width: 100%;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.footer-logo img {
    height: 200px;
    max-width: 100%;
}

.social {
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 20px;
    padding: 5px;
    max-width: 100%;
}

.social i {
    font-size: 45px;
    margin: 0 20px;
    cursor: pointer;
    transition: transform 0.3s ease;

}

.social i:hover {
    transform: scale(1.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    list-style: none;
    font-size: 2.5rem;
    padding: 4rem;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    position: relative;
}

.footer-links a::after {
    content: '';
    width: 0;
    height: 3px;
    background: rgb(212, 212, 212);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    padding-top: 2rem;
}

.copyright p {
    text-align: center;
    font-size: 1.75rem;
    color: white;
}

.copyright a {
    text-align: center;
    font-size: 1.75rem;
    color: white;
    background-color: rgb(50, 45, 45);
    border-radius: 2rem;
    padding: 1rem;
}

.copyright a:hover {
    background-color: #000000;
}


/* CONTACT PAGE */

#hero-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 250ms ease;
}

.contact-img {
    width: 94%;
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgb(0, 0, 0);
    justify-content: center;
    overflow: hidden;
    margin: 4rem;
}


.contact-img img {
    width: 100%;
    height: 500px;
    border-radius: 2rem;
    object-fit: cover;
    animation: zoomIn 10s ease-in-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.info-containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.social-container, .hours, .contact-info {
    flex: 1;
    margin: 1rem;
    align-content: center;
    text-align: center;
}

.social-container h1, .hours h1 {
    font-size: 3.5rem;
    color: black;
    padding: 4rem;
}

.contact-info h1 {
    padding: 2rem;
    font-size: 3.5rem;
    color: black;
}

.social-container .social i {
    color: rgb(60, 60, 60);
    padding-bottom: 4rem;
}


.hours h3 {
    font-size: 2.25rem;
    color: rgb(60, 60, 60);
    padding-bottom: 1rem;
}

.hours p {
    font-size: 2.25rem;
    padding-bottom: 3rem;
}

.contact-heading {
    font-size: 2.25rem;
    color: rgb(60, 60, 60);
    padding: 2rem;
}

.contact-item {
    font-size: 2.25rem;
    padding-bottom: 1rem;
}

.contact-item:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
    margin-top: -150px;
    position: relative;
    z-index: 1;
}

.contact-form h2 {
    text-align: center;
    font-size: 4rem;
    padding: 4rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
}

.contact-form button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.photo-row {
    display: flex;
    flex-wrap: wrap;
    margin: 4rem auto;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.photo-container {
    flex: 1;
    border-radius: 2rem;
    margin: 4rem;
}

.photo-container img {
    width: 400px;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

/* ABOUT PAGE */

#hero-about {
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 250ms ease;
    margin: 4rem;
}

.about-img {
    width: 100%;
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgb(0, 0, 0);
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}


.about-img img {
    width: 100%;
    height: 500px;
    border-radius: 2rem;
    object-fit: cover;
    filter: grayscale(50%);
    animation: zoomIn 10s ease-in-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.about-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
    margin: 4rem 0;
}

.about-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about-p {
    position: absolute;
    top: 0;
    background-color: rgba(26, 26, 26, 0.75);
    padding: 4rem;
    border-radius: 2rem;
}

.about-p h1 {
    padding-bottom: 2rem;
    color: white;
}

.about-p p {
    font-size: 2rem;
    color: white;
}

.reviews {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.518);
    border-radius: 2rem;
    padding-top: 2rem;
}

.reviews h1 {
    font-size: 3rem;
}


/* MENU PAGE */

#hero-menu {
    position: relative;
    transition: all 250ms ease;
    margin: 4rem;
}

.menu-img {
    width: 100%;
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgb(0, 0, 0);
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
    align-items: center;
}


.menu-img img {
    width: 100%;
    height: 500px;
    border-radius: 2rem;
    object-fit: cover;
    object-position: center bottom;
    animation: zoomIn 10s ease-in-out forwards;
    opacity: 0.8;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.tuesday-menu-announcement {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.tuesday-menu-button {
    background-color: #434549;
    border-radius: 0.5em;
    max-width: 100%;
    padding: 1.5rem;
    margin-top: 2rem;
}

.tuesday-menu-button a {
    color: white;
    text-align: center;
}

.tuesday-menu-button:hover {
    background-color:  #1d1f24;
    transition: all 0.3
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5em;
}

.menu {
    font-size: 14px;
}

.menu-group-heading {
    margin: 0;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ccc;
}

.menu-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 1.5em 0;
}

.menu-item {
    display: flex;
}

.menu-item-text {
    flex-grow: 1;
}

.menu-item-heading {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.menu-item-name {
    margin-right: 1.5em;
}

.menu-item-description {
    line-height: 1.6;
}

/* DROPDOWN MENU */

.dropdown {
    max-width: 90%;
    margin: 80px auto 0;
    width: 100%;
    position: absolute;
    top: -0.25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(26, 26, 26);
    border-radius: 0.5em;
    z-index: 1;
    justify-content: center;
}

.dropdown-btn {
    background-color: #00000073;
    font-size: 3rem;
    width: 100%;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0.5em;
    cursor: pointer;
}

.arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: transform ease-in-out 0.3s;
}

.dropdown-content {
    list-style: none;
    position: absolute;
    top: 6.5rem;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-1em);
    transition: transform ease 0.3s;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25em;
    justify-content: center;
    line-height: 1;
}

input[type="checkbox"]:checked ~ .dropdown-content {
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    background: #2f3238;
    border-radius: 0.5em;
    justify-content: center;
    max-width: 200px;
    min-width: 200px;
}

input[type="checkbox"]:checked + label > .arrow {
    transform: rotate(180deg);
}

input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

input[type="checkbox"]:focus + label {
    box-shadow: 0 0 20px rgb(83, 83, 83);
}

.dropdown-content li:hover {
    background: #1d1f24;
}

.dropdown-content li a {
    display: block;
    padding: 1rem;
    color: #fff;
    margin: 0.1em 0;
    text-decoration: none;
    text-align: center;
}

.back-to-top {
    background-color: #434549;
    width: 150px;
    border-radius: 0.5em;
    padding: 0.5rem;
    margin: 2rem 0;
}

.back-to-top a {
    color: white;
    text-align: center;
}

.back-to-top:hover {
    background-color:  #1d1f24;
    transition: all 0.3s ease;
}

/* SUCCESS PAGE */
#hero-success {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    transition: all 250ms ease;
    padding: 4rem;
    box-sizing: border-box;
}

.success {
    text-align: center;
}

.success h2 {
    font-size: 3rem;
    padding: 2rem;
}

.success p {
    font-size: 2rem;
    padding: 1rem;
}


.success a {
    background-color: #8a8a8a;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 2rem;
    text-align: center;
    display: inline-block;
    margin: 2rem;
    text-decoration: none;
}

.success a:hover {
    background-color: #2f3238;
    transition: all 500ms ease;
}

.success-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgb(0, 0, 0);
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
    align-items: center;
}

.success img {
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    object-fit: cover;
    animation: zoomIn 10s ease-in-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}
