﻿@font-face {
    font-family: "Gotham";
    src: url("../assets/fonts/GothamNarrow-Ultra.otf") format("opentype");
}

:root {
    --fry-time-yellow: #F4AA13;
    --fry-time-bright-yellow: #fbaf13;
    --fry-time-dark-yellow: #c1860f;
    --fry-time-dark-orange: #D37724;
    --fry-time-red: #851815;
    --fry-time-black: #11100C;
    --fry-time-white: #F8F9F9;
}

* {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
}

*::selection{
    color: white;
    background-color: cadetblue;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.navbar {
    padding-left: 3rem;
    padding-right: 3rem;
    background-color: var(--fry-time-red);
    font-size: 24px;
}

.navbar-brand {
    margin-right: 20px;
}

.nav-link {
    color: var(--fry-time-yellow);
    font-size: 20px;
    text-decoration: none;
    min-width: 100px;
    padding: 10px 20px;
    margin: 0 5px;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

    .nav-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background-color: var(--fry-time-yellow);
        transition: width 0.3s ease-in-out;
        z-index: 0;
    }

    .nav-link:hover::before {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--fry-time-black);
    }

    .nav-link:after {
        color: var(--fry-time-yellow);
    }

    .nav-link span {
        position: relative;
        z-index: 1;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(244, 170, 19, 1)' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 35px;
    height: 35px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

h1 {
    transition: 0.3s;
    color: var(--fry-time-black);
}

a {
    text-decoration: none;
    color: var(--fry-time-yellow);
    transition: 0.3s;
}

    a:hover {
        color: var(--fry-time-dark-yellow);
    }

.location {
    font-size: 30px;
    margin-right: 24px;
    color: var(--fry-time-yellow);
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons.a{
    color: red;
}

.social-icon {
    font-size: 30px;
    margin-right: 24px;
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        color: var(--fry-time-yellow);
    }


@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

    .navbar {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.footer-section {
    background-color: var(--fry-time-red);
    color: var(--fry-time-white);
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-section h5{
    color: var(--fry-time-bright-yellow);
}

.footer-logo {
    max-width: 160px;
    height: auto;
}

.footer-section p {
    margin: 0;
    font-size: 1rem;
}

.social-link {
    font-size: 1.5rem;
    color: var(--fry-time-white);
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--fry-time-yellow);
    }

.footer-bottom {
    background-color: var(--fry-time-black);
    color: silver;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}