@font-face {
    font-family: 'Brilon';
    src: url('../fonts/Brilon-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RoyalSignage';
    src: url('../fonts/RoyalSignage-Rg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ViaodaLibre';
    src: url('../fonts/ViaodaLibre-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --secondary-color: #FF9E6D;
    /* --secondary-color: #F15B2A; */
    --primary-color: #44d8cc;
    --accent-color: #FFC3A1;
    --dark-color: #287c75;
    --light-color: #FFF5ED;
    --text-color: #4A3528;
}

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

body {
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
}

.header-banner {
    background-color: var(--primary-color);
    padding: 2rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.header-banner img {
    max-width: fit-content;
}

.logo-signage {
    padding: 30px;
    flex-grow: 1;
}
.logo-signage:after {
    display: block;
    padding-bottom: 100%;
}

header {
    margin: auto;
    color: white;
    text-align: center;
    position: relative;
    flex-grow: 3;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'RoyalSignage', 'Pacifico', cursive;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
}

nav {
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 1rem;
    width: 100%;
    height: 100%;
    text-align: center;
}
    
.navbar-button:hover {
    background-color: var(--dark-color);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2rem;
    font-family: 'RoyalSignage';
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    p {
        padding: 2rem;
    }
}

.about-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    padding: 1rem;
    border-radius: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    padding: 1rem;
    background-color: white;
    font-weight: bold;
    text-align: center;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-box i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
    margin-top: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--dark-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

.instagram-feed {
    margin-top: 2rem;
    text-align: center;
}

.instagram-container {
    max-width: 600px;
    margin: 0 auto;
    /* border: 1px solid #ddd; */
    background-color: white; */
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.instagram-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.instagram-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
}

.instagram-header h3 {
    font-size: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    img {
        transition: -webkit-transform 0.25s ease;
        transition: transform 0.25s ease;
    }

    img:active {
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

.instagram-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.instagram-media {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.instagram-media a {
    background:#FFFFFF;
    line-height:0;
    padding:0 0;
    text-align:center;
    text-decoration:none; 
    width:100%;
}

.info-box {
    .info-link {
        color: var(--text-color);
    }
}

footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    .contact-link {
        color: white;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--accent-color);
    text-decoration: none;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 390px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .mobile-hide{ display: none !important; }
}