@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('location.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --color-primary-1: #fff9ea;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #f8d477;
    --color-primary-4: #ffe100;
    --color-primary-5: #ffcb45;
    --color-primary-6: #e9a209;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 1.75rem 8%; /* 28px 8% */
    padding-top: 3.75rem; /* 60px */
    margin-top: -3.75rem; /* -60px */
    scroll-margin-top: 3.75rem; /* 60px */
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E6D7B3;
    border-radius: 0.75rem; /* 12px */
    padding: 0.625rem 0.875rem; /* 10px 14px */
    font-weight: 600;
    box-shadow: 0 0 0.625rem 0.125rem rgba(0, 0, 0, 0.1); /* 10px 2px */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-default:hover {
    background-color: #512615;
}

.social-media-buttons {
    display: flex;
    gap: 1.125rem; /* 18px */
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8125rem; /* 45px */
    height: 2.5rem; /* 40px */
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 0.625rem; /* 10px */
    text-decoration: none;
    color: var(--color-neutral-1);
    box-shadow: 0 0 0.75rem 0.25rem rgba(0, 0, 0, 0.1); /* 12px 4px */
    transition: box-shadow 0.3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0 0 0.75rem 0.5rem rgba(0, 0, 0, 0.1); /* 12px 8px */
}

.section-title {
    color: #512615;
    font-size: 1.563rem; /* 25px */
}

.section-subtitle {
    font-size: 2.1875rem; /* 35px */
}
