/* General Styles */
body {
    font-family: 'Cabin', sans-serif;
    background-color: #282c34;
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom link styling */
.nice-link {
    color: #ffd700; /* Accent color */
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover and focus states */
.nice-link:hover, .nice-link:focus {
    color: #ff69b4; /* Primary color on hover */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: underline;
}

/* Active state */
.nice-link:active {
    color: #20b2aa; /* Secondary color */
}

/* Visited state */
.nice-link:visited {
    color: #ffd700; /* Accent color */
}

.header {
    background-color: #20b2aa;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header img {
    max-width: 450px;
    height: auto;
}

.navbar {
    background-color: #ff69b4;
    padding: 10px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin-right: 20px;
    font-weight: bold;
}
        
.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    transition: color 0.3s ease;
}
        
.navbar-nav .nav-link.active {
    color: #ffd700 !important;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, #ff69b4, #20b2aa);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-section::after {
    content: '';
    background: url('pattern.png') repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 4rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px #333;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
}

.hero-section a.btn {
    background-color: #333;
    color: #ffd700;
    padding: 15px 30px;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    border: none;
}

.hero-section a.btn:hover {
    background-color: #555;
}

.features-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ffd700; /* Accent color */
    font-family: 'Orbitron', sans-serif;
}

.features-section ul {
    color: #333;
    font-family: 'Cabin', sans-serif;
    list-style-type: none;
    margin-bottom: 15px;
}

.features-section p {
    color: #333;
    font-family: 'Cabin', sans-serif;
    list-style-type: none;
    margin-bottom: 15px;
}

.feature-item {
    margin-bottom: 30px;
    padding: 20px;
}

.feature-item img {
    max-width: 320px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    font-size: 1.25rem;
}

.dining-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.dining-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ffd700; /* Accent color */
    font-family: 'Orbitron', sans-serif;
}

.events-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.events-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ffd700; /* Accent color */
    font-family: 'Orbitron', sans-serif;
}

.news-section {
    padding: 60px 20px;
    background-color: #ffd700;
    text-align: center;
}

.news-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ffd700; /* Accent color */
    font-family: 'Orbitron', sans-serif;
}

.about-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.about-section h2 {
    text-align: center;    
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ffd700; /* Accent color */
    font-family: 'Orbitron', sans-serif;
}

.about-section .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    padding: 20px;
    color: #333;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: 'Cabin', sans-serif;
    color: #333;
}

.about-text ul {
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: 'Cabin', sans-serif;
    list-style-type: none;
}

.about-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    padding: 60px 20px;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
    font-family: 'Bungee', cursive;
}

.testimonial-item {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-item img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
    font-size: 1.25rem;
    color: #666;
    font-family: 'Cabin', sans-serif;
}

.testimonial-item h4 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #333;
    font-family: 'Cabin', sans-serif;
}

.footer {
    background-color: #20b2aa;
    padding: 40px 0;
    color: #fff;
}

.footer h5 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: #ffd700; /* Accent color */
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #333;
}

.footer .social-links img {
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer hr {
    border-top: 1px solid #fff;
    margin: 30px 0;
}

.footer p {
    margin: 0;
    font-size: 0.875rem;
    color: #fff;
}

.footer .col-md-3 {
    margin-bottom: 30px;
}

/* Button Styles */
.btn-primary {
    background-color: #333;
    color: #ffd700;
    border: none;
    border-radius: 50px;
    font-family: 'Bungee', cursive;
    font-size: 1.25rem;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover, 
.btn-primary:focus {
    background-color: #555;
    color: #ffd700;
    transform: translateY(-2px);
}

.btn-primary:active {
    background-color: #111;
    transform: translateY(2px);
}

.btn-secondary {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Bungee', cursive;
    font-size: 1.25rem;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover, 
.btn-secondary:focus {
    background-color: #e85b4f;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary:active {
    background-color: #c94a42;
    transform: translateY(2px);
}

/* Card Styles */
.card {
    background-color: #fff;
    border: 2px solid #ffd700;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-family: 'Bungee', cursive;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 15px;
}

.card-text {
    font-family: 'Cabin', sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 20px;
}

.card-footer {
    background-color: #ff6f61;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Bungee', cursive;
    border-top: 2px solid #ffd700;
}

.category {
    margin-top: 30px;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ff6f61;
    font-family: 'Bungee', cursive;
}

.shop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.name {
    font-size: 1.2rem;
    font-weight: bold;
    flex-grow: 1;
    margin-right: 20px;
    margin-bottom: 5px;
    text-align:left;
    color: #ff6f61;
    font-family: 'Bungee', cursive;
}

.description {
    font-size: 1rem;
    flex-grow: 2;
    margin-right: 20px;
    margin-bottom: 10px;
}

.location {
    font-size: 1.2rem;
    font-weight: bold;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 100px;
    text-align: right;
}

/* Apply styles to links within the .hero-link paragraph */
.hero-link a {
    color: #f0f0f0;
    font-weight: bold!important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 80%;
}

.hero-link a:hover,
.hero-link a:focus {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.hero-link a:active {
    color: #e0e0e0;
}

.name a {
    color: #ffffff;
    font-weight: 700;
    background-color: #ff6f61;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.name a:hover,
.name a:focus {
    background-color: #ff8561;
    color: #ffffff;
}

.search {
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff6f61;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.search:focus {
    border-color: #ff8561;
    box-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
}

/* Title Styling */
.menu-title {
    font-size: 2.5rem;
    font-family: 'Bungee', cursive;
    color: #ff6f61;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
}

/* Subtitle Styling */
.menu-subtitle {
    font-size: 1.8rem;
    font-family: 'Cabin', sans-serif;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Menu Items Container */
.menu-item {
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

/* Menu Item Title */
.menu-item-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Cabin', sans-serif;
}

/* Menu Item Description */
.menu-item-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Cabin', sans-serif;
}

/* Menu Item Price */
.menu-item-price {
    font-size: 1.4rem;
    color: #ff6f61;
    font-weight: bold;
    font-family: 'Cabin', sans-serif;
    text-align: right;
}

@media (max-width: 768px) {
    .header img {
        max-width: 200px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.25rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .features-section h2 {
        font-size: 2.5rem;
    }
            
    .feature-item img {
        max-width: 260px;
        margin-bottom: 20px;
    }

    .feature-item h3 {
        font-size: 1.5rem;
    }

    .feature-item p {
        font-size: 1rem;
    }
            
    .dining-section h2 {
        font-size: 2.5rem;
    }
            
    .events-section h2 {
        font-size: 2.5rem;
    }
            
    .news-section h2 {
        font-size: 2.5rem;
    }

    .about-section h2 {
        font-size: 2.5rem;
    }

    .about-section .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

    .about-text p {
        font-size: 1rem;
    }

    .testimonials-section h2 {
        font-size: 2.5rem;
    }

    .testimonial-item p {
        font-size: 1rem;
    }

    .testimonial-item h4 {
        font-size: 1.25rem;
    }

    .footer .col-md-3 {
        text-align: center;
    }
    
    .category {
        font-size: 2rem;
        margin-top: 20px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .shop {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .name {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 5px;
        text-align: left;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: left;
    }

    .location {
        font-size: 1.2rem;
        font-weight: bold;
        text-align: left;
    }
    
    .info-text {
        margin-top: 40px;
    }
    
    .search {
        padding: 10px;
        font-size: 1.2rem;
    }
    
    .menu-title {
        font-size: 2rem;
    }

    .menu-subtitle {
        font-size: 1.5rem;
    }

    .menu-item {
        padding: 15px;
    }

    .menu-item-title {
        font-size: 1.4rem;
    }

    .menu-item-description {
        font-size: 1.1rem;
    }

    .menu-item-price {
        font-size: 1.3rem;
        text-align: center;
        margin-top: 10px;
    }

    /* Stack title, description, and price vertically */
    .menu-item-title, .menu-item-description, .menu-item-price {
        display: block;
        width: 100%;
    }
}