* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Crimson Pro', sans-serif;
    color: #000;
}

body {
    width: 100%;
    /* background-image: 
    linear-gradient(rgba(68, 51, 53, 0.55), rgba(26, 20, 21, 0.55)), url('images/website_background.jpg'); */
    background-color: #fdf8f3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-bg {
    background: #fdf8f3;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
}

a:hover {
    color: #A1AAB2;
    
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: rem;
    padding: 3rem 1rem;
    transition: all 0.5s;
}

.header-scrolled {
    background-color: rgba(254, 232, 201, 0.9); 
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 3rem;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .links a {
    font-size: 1.75rem;
    font-weight: bold;
}

.navbar .toggle_btn {
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background-color: #fcad3b;
    color: #000;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover {
    scale: 1.05;
    color: #fff
}

.action_btn:active {
    scale: 0.95;
}

/* DROPDOWN MENU */
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 80px;
    height: 0;
    width: 300px;
    background-color: #fee8c9;
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 200px;
}

.dropdown_menu a {
    font-size: 1.25rem;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* MAIN_CONTENT */
.main_content {
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    gap: 60px;
    margin-top: 7rem;
}

.main_content h1 {
    margin-bottom: 10px;
}

.page_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 7rem 6rem 3rem 6rem;
}

.text_content {
    font-size: 1.5rem;
    color: #000;
    max-width: 600px;
}

.text_content h3 {
    margin-bottom: 10px;
}

.main_image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
}

.main_content .action_btn {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.storefront_image {
    width: 600px;
    border-radius: 20px;
}

.announcements {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    gap: 60px;
    margin: 5rem 0 4rem 0;
}

.linktree_banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fee8c9;
    padding: 2rem;
    font-size: 1.5rem;
}

.linktree_banner h2 {
    margin-bottom: 1rem;
    color: #000;
}

.linktree_banner .action_btn {
    font-size: 1.5rem;
}

/* ABOUT SECTION */
.about_container {
    display: flex;
    gap: 30px;
}

.about_image {
    width: 600px;
    border-radius: 5%;
}

/* TESTIMONIAL SECTION */
.review_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.review_preview {
    max-width: 700px;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #000;
    font-size: 1.5rem;
    text-align: center;
}

.review_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 20px;
}

.review_bubble {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
}

/* GALLERY SECTION */
.page_container .page_header {
    width: 30%;
    padding-bottom: 50px;
}

.page_container .page_header h3 {
    font-size: 3rem;
    font-weight: bolder;
    padding-bottom: 20px;
    border-bottom: 3px solid #fee8c9;
    color: #000;
}

.page_container .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
}

.page_container .box .photos {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.page_container .box .photos img {
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}

/* FOOTER */
.footer_container {
    width: 100%;
    background-color: #fee8c9;
    padding: 4rem 0 4rem 0;
    margin-top: 1rem;
}

.footer {
    width: 80%;
    height: auto;
    color: #EEEAE0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer_heading {
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
}

.footer_heading hr {
    margin: 1rem 0 1rem 0;
    border-top: 1px solid #000;
}

.footer_heading h4 {
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.footer_heading.footer_1 a {
    background-color: #fcad3b;
    color: #000;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.footer_heading.footer_1 a:hover {
    scale: 1.05;
    color: #fff;
}

.footer_heading.footer_1 a:active {
    scale: 0.95;
}

.footer_column {
    display: flex;
    gap: 1rem;
}

.days_column, .times_column {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social_icons {
    display: flex;
    gap: 0.5rem;
}

.social_icons i {
    background-color: #fcad3b;
    padding: 0.75rem;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #000;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input {
    border-radius: 3px;
    width: 80%;
    height: 30px;
    border: 0;
    padding: 0 20px;
    margin: 0 0 0.5rem 0;
    color: #000;
}

.newsletter button {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    height: 20px;
    padding: 0px 28px;
    width: 40%;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: ease 0.25s;
    background-color: #fff;
    color: #000;
}

.newsletter button:hover {
    color: #fff;
    background-color: #889CAB;
}

.footer_bottom {
    background-color: #fdf8f3;
    padding: 20px;
    text-align: center;
    gap: 20px;
}

.footer_bottom p {
    color: 000;
}
.hours_grid {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1 part for day, 2 parts for time */
  gap: 0.5rem 1rem;
}

.hours_grid div {
  color: #000;
  font-size: 1rem;
  word-break: break-word;
}

/* RESPONSIVE DESIGN */
@media(max-width: 1364px) {
    .footer_heading.footer_4 h2 {
        margin-top: 2rem;
    }
    .about_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about_image {
        width: 500px;
    }
}

@media(max-width: 1150px) {
    .navbar .logo a {
        font-size: 2rem;
    }
    
    .navbar .links a {
        font-size: 1.5rem;
    }
}

@media(max-width: 997px) {
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }

    .footer {
        flex-direction: column;   
    }

    .footer_heading h2 {
        margin-top: 2rem;
    }

    .footer_heading.footer_1 a {
        width: 50%;
    }

    .main_content {
        margin: 2rem 0 2rem 0;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .announcements {
        margin: 2rem 1rem 2rem 1rem;
        flex-direction: column;
        gap: 20px;
    }

    .main_image {
        margin-top: 7rem;
        width: 80%;
        height: auto;
    }

    .storefront_image {
        width: 90%;
    }

    .text_content {
        text-align: center;
    }

    .page_container {
        margin: 7rem auto;
        width: 80%;
    }

    .page_container .box {
        flex-direction: column;
        width: 100%;
    }

    .page_container .box .photos {
        width: 100%;
    }

    .page_container .page_header {
        width: 100%;
    }

    .page_container .page_header h3 {
        font-size: 2rem;
        margin-top: 3rem
    }

    .about_container {
        flex-direction: column;
    }

    .newsletter button {
        width: 50%;
        height: 2rem;
    }
}

@media(max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }

    .footer {
        flex-direction: column;   
    }

    .footer_heading h2 {
        margin-top: 2rem;
    }

    .main_content {
        margin: 2rem 0 2rem 0;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .text_content {
        text-align: center;
    }

    .about_image {
        width: 40vh;
    }

    .linktree_banner {
        font-size: 1rem;
    }
}