body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfaf6;
    color: #333;
}
.brand-font {
    font-family: 'Permanent Marker', cursive;
}
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}
.menu-item {
    transition: transform 0.3s ease;
    opacity: 0;
}
.menu-item:hover {
    transform: translateY(-5px);
}
.chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    z-index: 99;
    display: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.chat-header {
    background-color: #e25822;
    padding: 15px;
    color: white;
    font-weight: bold;
}
.chat-messages {
    height: 370px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
}
.chat-input {
    padding: 10px;
    background-color: white;
    border-top: 1px solid #eee;
}
.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}
.user-message {
    background-color: #e25822;
    color: white;
    margin-left: auto;
}
.bot-message {
    background-color: #eee;
}
.section-title {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #e25822;
}
.bbq-primary {
    background-color: #e25822;
}
.bbq-primary-text {
    color: #e25822;
}
.bbq-secondary {
    background-color: #5c2c06;
}
.bbq-secondary-text {
    color: #5c2c06;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}
.button-hover-animation {
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.button-hover-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.button-hover-animation:hover::before {
    left: 100%;
}
.pulse {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(226, 88, 34, 0.7);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(226, 88, 34, 0);
    }
}
.animate-background {
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading-logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    color: #e25822;
    margin-bottom: 1rem;
}
.loading-bar {
    width: 200px;
    height: 6px;
    background-color: #f3f3f3;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.loading-progress {
    position: absolute;
    height: 100%;
    width: 0%;
    background-color: #e25822;
    border-radius: 3px;
}
.gallery-item {
    opacity: 0;
    transform: scale(0.8);
}
.testimonial-card {
    opacity: 0;
    transform: translateX(-30px);
}
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 40;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Video aspect ratio */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.aspect-w-16 > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
