/* General Styles */
body {
    font-family: 'Playfair Display', serif; /* Sophisticated serif font */
    background-color: #eaecee; /* Light elegant background */
    color: #4a4a4a; /* Neutral text color */
    overflow-x: hidden;
}

/* Custom link styling */
.nice-link {
    color: #006d77; /* Deep teal */
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nice-link:hover, .nice-link:focus {
    color: #83c5be; /* Softer teal */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: underline;
}

.nice-link:active {
    color: #005f6b; /* Darker teal */
    text-shadow: none;
}

.nice-link:visited {
    color: #468189; /* Muted teal */
}

.header {
    background-color: #fefae0; /* Warm cream */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header img {
    max-width: 10%;
    height: auto;
}

.navbar {
    background-color: #006d77; /* Deep teal */
    padding: 10px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #fefae0 !important; /* Cream text */
    margin-right: 20px;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #83c5be !important; /* Softer teal */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: #83c5be !important;
    background-color: #006d77;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, #83c5be, #006d77);
    color: #fefae0; /* Cream text */
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-section::after {
    content: '';
    background: url('img/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: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px #4a4a4a;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif; /* Clean modern sans-serif */
    font-weight: 600;
}

.hero-section a.btn {
    background-color: #4a4a4a;
    color: #fefae0;
    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: #333;
}

.features-section {
    padding: 60px 20px;
    background-color: #fefae0; /* Warm cream */
    text-align: center;
}

.features-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #006d77; /* Deep teal */
    font-family: 'Playfair Display', serif;
}

.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: #4a4a4a; /* Neutral text */
}

.feature-item p {
    font-size: 1.25rem;
}

.dining-section {
    padding: 60px 20px;
    background-color: #eaecee; /* Light elegant background */
    text-align: center;
}

.dining-section h2 {
    font-size: 3rem;
    color: #006d77; /* Deep teal */
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.events-section {
    padding: 60px 20px;
    background-color: #fefae0;
    text-align: center;
}

.events-section h2 {
    font-size: 3rem;
    color: #006d77;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.news-section {
    padding: 60px 20px;
    background-color: #83c5be; /* Softer teal */
    text-align: center;
}

.news-section h2 {
    font-size: 3rem;
    color: #fefae0; /* Cream text */
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.about-section {
    padding: 80px 20px;
    background-color: #eaecee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #006d77;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    width: 100%;
}

.about-text {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    line-height: 1.8;
    flex: 1;
    padding: 20px;
}

.about-image {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.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: #fefae0;
}

.testimonials-section h2 {
    font-size: 3rem;
    color: #006d77;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.testimonial-item {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-item img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
}

.btn-primary {
    background-color: #006d77;
    color: #fefae0;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #005f6b;
    color: #fefae0;
}

.card {
    background-color: #fefae0;
    border: 1px solid #83c5be;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #006d77;
}

.card-title a {
    color: #006d77;
    text-decoration: underline;
}

.card-title a:hover {
    text-decoration: none;
}

.card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: #4a4a4a;
}

.footer {
    background-color: #006d77; /* Deep teal */
    padding: 40px 0;
    color: #fefae0; /* Cream text */
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #fefae0;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fefae0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #83c5be;
}

.footer p {
    margin: 0;
    font-size: 0.875rem;
    color: #fefae0;
}

@media (max-width: 576px) {
    .header img {
        max-width: 30%;
    }
}