@charset "utf-8";

/* IMPORTED STUFFS */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@800&display=swap');


/* GLOBAL STYLES */
html, body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url("images/brickwallbackground.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;

    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}


/* TEXT & TITLES= */
.title-h1,
.title-h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: #eae3c4;
    background-color: #b32a38;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* WRAPPER */
.wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.body {
    flex: 1;
}

.mobile {
    display: none;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}


/* HEADER STUFFS */
.header {
    height: 120px;
    background-color: #eae3c4;
    border-bottom: 4px solid #b32a38;
    opacity: 0.8;
}


/* NAVIGATION STUFFS */
.header ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.header li {
    list-style: none;
}


/* PIE TIME LOGO */
.logo {
    height: 80px;
    margin-right: 30px;
    display: block;
}

.logo-item {
    margin-right: 40px;
}


/* LINKS */
.header a {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    color: #b32a38;
    text-decoration: none;
    transition: 0.3s;
}

.header a:hover {
    color: #7a1c26;
}

.header a:active {
    color: #4a1018;
}

.header a.live {
    border-bottom: 3px solid #b32a38;
}


/* HERE/TITLES */
.left h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    color: #7a1c26;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(234, 227, 196, 0.85);
}


/* WEBSITE COMPONENTS */
.home-content-card {
    background-color: black;
    border: 10px solid #673251;
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    color: white;
    transition: 0.3s ease;
}


/* MENU GRID */
.menu-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
}

.menu-box {
    background: linear-gradient(135deg, #eae3c4, #e16249);
    color: #ff8c00;
    padding: 20px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 250px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
}

.menu-box p,
.menu-box h1,
.menu-box strong {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    color: #b32a38;
}

.menu-box p {
    margin-bottom: 15px;
}

.menu-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}


/* DROPDOWN MENU STUFF */
.dropdown {
    display: none;
    position: absolute;
    background-color: #eae3c4;
    padding: 10px;
    list-style: none;
}

.logo-item:hover .dropdown {
    display: block;
}

.dropdown li {
    margin: 10px 0;
}


/* BANNER */
.pizza-banner {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
}

.pizza-banner img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.pizza-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7a1c26;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(234, 227, 196, 0.6);
}


/* FORMS & BUTTONS STYLES */
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 3px solid #ccc;
    border-radius: 14px;
    box-sizing: border-box;
}

form, fieldset {
    background-color: #b32a38;
    color: #eae3c4;
    padding: 25px;
    border-radius: 12px;
    border: none;
    max-width: 600px;
    margin: 30px auto;
}

legend {
    color: #eae3c4;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
}

label {
    color: #eae3c4;
    margin-right: 15px;
}

.customerInfo {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
    background-color: #f5f1dc;
    color: #333;
}

input[type="radio"] {
    margin-right: 5px;
}


/* BUTTONS SPECIFICALLY */
.submit-btn {
    background-color: #eae3c4;
    color: #b32a38;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background-color: #d6cfb0;
    background-radius: 5px;
}

.submit-btn:active {
    background-color: #c2bb9c;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    color: #b32a38;
    border: 2px solid #b32a38;
    background-color: #eae3c4;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
}

.book-now-btn:hover {
    color: #eae3c4;
    background-color: #b32a38;
}


/* IMAGE STYLES*/
.responsive-peel {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.owners-portrait {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}


/* FLEX STUFF */
.row.align-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.row.align-center .col-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* FOOTER STUFFS */
footer {
    flex-shrink: 0;
}


/* RESPONSIVE STUFFS */
@media only screen and (max-width: 900px) {
    .menu-box {
        flex: 1 1 48%;
    }
}

@media only screen and (max-width: 600px) {
    .menu-box {
        flex: 1 1 100%;
    }
}

@media only screen and (max-width: 45em) {

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .header ul li:not(:first-child) {
        display: none;
    }

    .dropdown {
        position: absolute;
        display: none;
    }

    .logo-item:hover .dropdown {
        display: block;
    }
}

@media only screen and (max-width: 45em) {
    .logo-text {
        display: none;
    }
}