/* CSS/STYLE.CSS */
/* Breviax Cafe - Custom Styles */

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --dark-color: #2F1B14;
    --light-color: #FFF8DC;
    --text-color: #333;
    --gradient-primary: linear-gradient(135deg, #8B4513, #D2691E);
    --gradient-secondary: linear-gradient(135deg, #2F1B14, #8B4513);
    --gradient-accent: linear-gradient(135deg, #F4A460, #DEB887);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.accent-text {
    font-family: 'Dancing Script', cursive;
    color: var(--accent-color);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Navigation */
.custom-navbar {
    background: rgba(47, 27, 20, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    background: var(--dark-color) !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: white !important;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 27, 20, 0.8), rgba(139, 69, 19, 0.6));
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coffee-bean {
    position: absolute;
    width: 20px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.coffee-bean:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coffee-bean:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.coffee-bean:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    position: relative;
    background: var(--light-color);
}

.section-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    background-repeat: no-repeat;
    background-size: contain;
}

.section-decoration.left {
    top: 20%;
    left: -50px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="30" r="8" fill="%23D2691E"/><ellipse cx="50" cy="55" rx="25" ry="35" fill="%23D2691E"/></svg>');
}

.section-decoration.right {
    bottom: 20%;
    right: -50px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="30" r="8" fill="%23D2691E"/><ellipse cx="50" cy="55" rx="25" ry="35" fill="%23D2691E"/></svg>');
    transform: rotate(45deg);
}

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.featured-image img {
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.featured-content {
    padding: 2rem;
}

.featured-name {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.featured-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.featured-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.detail-item i {
    color: var(--secondary-color);
    width: 20px;
}

/* Daily Specials Section */
.specials-section {
    padding: 100px 0;
    background: var(--gradient-secondary);
    color: white;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.special-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.special-card.weekend {
    background: var(--gradient-accent);
    color: var(--dark-color);
}

.special-day {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.special-offer {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.special-card.weekend .special-price {
    color: var(--dark-color);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    position: relative;
    color: white;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1920&h=1080&fit=crop') center/cover no-repeat;
    z-index: -2;
}

.menu-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 27, 20, 0.85);
    z-index: -1;
}

.menu-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.menu-category h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
}

.item-price {
    font-weight: 600;
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: white;
}

.events-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.events-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.event-day {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    min-width: 100px;
    white-space: nowrap;
}

.event-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.event-details p {
    color: #666;
    margin: 0;
}

.events-image {
    position: relative;
}

.events-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

/* Facts Section */
.facts-section {
    padding: 100px 0;
    position: relative;
    color: white;
    text-align: center;
}

.facts-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
}

.facts-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(244, 164, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
}

.fact-item {
    padding: 2rem;
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.fact-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 2rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: var(--light-color);
}

.story-section {
    padding: 80px 0;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.pillar i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-top: 0.5rem;
}

.pillar h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pillar p {
    color: #666;
    margin: 0;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.culture-section {
    padding: 80px 0;
    background: var(--light-color);
}

.culture-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.culture-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.culture-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.value-item strong {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: var(--light-color);
}

.contact-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.hours-section {
    padding: 60px 0;
    background: var(--light-color);
}

.hours-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.hours-card h3 {
    color: var(--primary-color);
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.day-hours:hover {
    background: var(--light-color);
}

.day-hours.weekend {
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: 500;
}

.day-hours .day {
    font-weight: 500;
}

.day-hours .hours {
    font-weight: 600;
    color: var(--secondary-color);
}

.day-hours.weekend .hours {
    color: var(--dark-color);
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.contact-form-card h3 {
    color: var(--primary-color);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.1);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid, .form-select.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.map-section {
    padding: 0;
}

.map-section iframe {
    filter: grayscale(20%) brightness(0.95);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: none;
}

/* Policies Page Styles */
.policies-hero {
    padding: 120px 0 80px;
    background: var(--light-color);
}

.policies-nav {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    position: sticky;
    top: 100px;
}

.policies-nav h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policies-nav .nav-link {
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.policies-nav .nav-link:hover,
.policies-nav .nav-link.active {
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.policy-section h2,
.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policy-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section p,
.policy-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section strong {
    color: var(--primary-color);
}

.compliance-note {
    background: linear-gradient(135deg, #e8f5e8, #f0f8ff);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.compliance-note h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.compliance-note p {
    margin: 0;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-content {
        padding: 1rem;
        margin-top: 2rem;
    }

    .event-item {
        flex-direction: column;
        gap: 1rem;
    }

    .event-day {
        align-self: flex-start;
    }

    .mission-pillars {
        gap: 1.5rem;
    }

    .pillar {
        flex-direction: column;
        text-align: center;
    }

    .culture-values {
        gap: 1rem;
    }

    .value-item {
        padding: 1rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .hours-card {
        padding: 2rem;
    }

    .day-hours {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .detail-item {
        justify-content: center;
    }

    .footer-links {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .featured-image {
        margin-bottom: 2rem;
    }

    .price-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 1rem;
    }

    .special-card {
        padding: 1.5rem;
    }

    .menu-category {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .team-info {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .contact-form-card,
    .hours-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    border-radius: 15px;
    border: none;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-decoration,
    .section-decoration,
    .cookie-banner,
    .scroll-top {
        display: none !important;
    }

    .hero-section {
        height: auto;
        padding: 2rem 0;
    }

    .hero-background,
    .hero-overlay {
        display: none;
    }

    .hero-title,
    .hero-subtitle {
        color: var(--dark-color) !important;
    }

    section {
        padding: 1rem 0 !important;
        break-inside: avoid;
    }

    .page-title,
    .section-title {
        color: var(--primary-color) !important;
    }
}
    