/* Custom Color Palette - Inspired by the screenshot */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');

:root {
    --primary-color: #f8f9fa;
    --color-bg-custom: rgb(214, 220, 226);
    --buttons-color: rgb(180, 190, 195);
    --secondary-color: #e9ecef;
    --accent-color: #6c757d;
    --text-dark: #343a40;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --overlay-bg: rgba(0, 0, 0, 0.3);
    --border-light: #dee2e6;
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display SC", serif;
    
}

/* Header Styles */
.header-top {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar {
    background-color: var(--white);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 15px 20px;
    margin-right: 40px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
    background-color: var(--light-bg);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Banner */
.hero-banner {
    
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/2149367126.jpg') center/cover;
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    text-transform: uppercase;
     text-align: center;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

/* Button Styles */
.btn-custom {
    background-color: var(--buttons-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-custom:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-custom:hover::before {
    left: 100%;
}


.btn-custom-light {
    background-color: transparent;
    color: var(--text-dark);
    padding: 12px 30px;
    border: 1px solid var(--text-dark);
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-custom-light:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}


/* Section Styles */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Image with overlay effect */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.image-overlay:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay:hover img {
    transform: scale(1.05);
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-bg);
    opacity: 0;
    transition: var(--transition);
}

.image-overlay:hover::after {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--text-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: var(--white);
}

/* Background Image Section */
.bg-image-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('images/2149367137.jpg') center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.bg-image-section .section-title,
.bg-image-section .section-subtitle {
    color: var(--white);
}

/* Statistics Section */
.stats-section {
    background-color: var(--secondary-color);
}

.stat-item {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Article Cards */
.article-card {
    background: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.article-card img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

.article-card:hover img {
    transform: scale(1.1);
}

.article-card .card-body {
    padding: 2rem;
}

.article-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-card .card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
    padding: 15px;
    margin-bottom: 1rem;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--accent-color);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup .btn {
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-banner {
        padding: 80px 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gloss Effect */
.gloss-effect {
    position: relative;
    overflow: hidden;
}

.gloss-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.gloss-effect:hover::before {
    opacity: 1;
    animation: gloss 0.6s ease-in-out;
}

@keyframes gloss {
    0% { transform: rotate(45deg) translate(-100%, -100%); }
    100% { transform: rotate(45deg) translate(100%, 100%); }
}

/* Article-specific styles for blog pages */
.blog-content {
    font-size: 1rem;
    line-height: 1.7;
}

.blog-content h2, 
.blog-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--buttons-color);
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.content-section {
    margin-bottom: 3rem;
}

.product-review {
    transition: var(--transition);
}

.product-review:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.rating i {
    font-size: 1rem;
}

.pros-cons h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.pros-cons ul {
    list-style: none;
    padding: 0;
}

.pros-cons li {
    padding: 0.25rem 0;
}

/* Widget styling */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar .card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.sidebar .card:hover {
    box-shadow: var(--hover-shadow);
}

/* Table styling */
.table {
    border-radius: 0;
}

.table thead th {
    background-color: var(--color-bg-custom);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.table tbody tr:hover {
    background-color: var(--light-bg);
}

/* Alert styling */
.alert {
    border-radius: 0;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-light);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a:hover {
    color: var(--buttons-color);
}

.badge-custom{
    background-color: var(--buttons-color);
    padding: 4px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.breadcrumb-item a{
    color: var(--text-dark);
    text-decoration: none;
}

.allergen-card h5{
    color: #d4ac27ff;
}

.criteria-item, .room-card, .coffee-type-card, .tip-card, .safety-card, .important-notes, .sport-card, .tip-card{
    border-top: 3px solid rgb(210, 215, 235);
    box-shadow: 0 2px 10px rgb(210, 215, 235);
}