/* Montserrat Font Family */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Cormorant Garamond Font Family */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant_garamond/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant_garamond/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    /* --primary-burgundy: #5e1f3d; */
    --primary-burgundy: #640e19;
    --secondary-gold: #c9a961;
    /* --accent-rose: #9d2956; */
    --accent-rose: #5e1f3d;
    --neutral-cream: #f8f6f3;
    --neutral-charcoal: #2a2a2a;
    --neutral-grey: #6b6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--neutral-charcoal);
    background-color: var(--neutral-cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background-color: transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--primary-burgundy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-cream);
    letter-spacing: 2px;
}

.nav-link {
    /* color: var(--neutral-cream); */
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}



.nav-link:hover {
    color: var(--secondary-gold);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
/* Hero Slider */
.hero {
    position: relative;
    margin-top: 0;
}

.hero-slide {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item {
    transition: transform 1.5s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item.active .hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    /* font-size: 4.5rem; */
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 250px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    bottom: 30px;
       width: 10px;
    height: 9px;
}

.carousel-indicators button {
      width: 10px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0.6;
    
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

/* Filter Section */
/* .filter-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.filter-card {
    background: white;
    border-radius: 2px;
    padding: 3rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--secondary-gold);
}

.filter-title {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

.form-label {
    font-weight: 500;
    color: var(--neutral-charcoal);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-select,
.form-control {
    border: 1px solid #e0ddd9;
    border-radius: 0;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--neutral-cream);
}

.form-select:focus,
.form-control:focus {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
    background-color: white;
}

.btn-search {
    background-color: var(--primary-burgundy);
    color: white;
    border: none;
    border-radius: 0;
    padding: 1rem 3rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-search:hover {
    background-color: var(--accent-rose);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(94, 31, 61, 0.3);
}

.btn-reset {
    background-color: transparent;
    color: var(--neutral-grey);
    border: 1px solid #e0ddd9;
    border-radius: 0;
    padding: 1rem 3rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-reset:hover {
    border-color: var(--neutral-charcoal);
    color: var(--neutral-charcoal);
} */

.filter-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.filter-card {
    background: white;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--secondary-gold);
}

.filter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    /* color: #5e1f3d; */
    color: #640e19;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.form-select {
    border: 1px solid #e0ddd9;
    padding: 0.6rem 0.8rem;
    background-color: #f8f6f3;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-select:focus {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
    background-color: white;
}

.form-label {
    font-weight: 500;
    color: #2a2a2a;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    display: block;
}

.btn-search {
    width: 100%;
    background-color: var(--primary-burgundy);
    color: white;
    border: none;
    padding: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-search:hover {
    background-color: var(--accent-rose);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(94, 31, 61, 0.3);
}

.stats-divider {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #f0ede9;
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Wines Section */
.featured-section {
    padding: 8rem 0 6rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-burgundy);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    color: var(--neutral-grey);
    font-size: 1.1rem;
    margin-bottom: 5rem;
    font-weight: 300;
}

.wine-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    /* margin-bottom: 2rem; */
    border: 1px solid #f0ede9;
    height: 100%;
}

.wine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wine-image {

    position: relative;
    height: 150px;
    background: linear-gradient(to bottom, #f8f6f3, #ebe8e3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wine-image img {
    width: 120px;
}

.wine-image::before {
    /* content: '🍷'; */
    font-size: 6rem;
    opacity: 0.15;
}

.wine-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-gold);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.wine-content {
    /* padding: 1.5rem; */
    padding: 1rem 0.8rem;
}

.wine-details {
    font-size: 0.75rem;
    color: var(--neutral-grey);
    line-height: 1.4;
}

.wine-country {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.2rem;
}

.wine-country span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wine-region {
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wine-name {
    font-size: 1.1rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.wine-origin {
    color: var(--neutral-grey);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.wine-description {
    color: var(--neutral-charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* .wine-details {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ede9;
} */

.wine-detail {
    text-align: center;
}

.wine-detail-label {
    font-size: 0.75rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.wine-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--primary-burgundy);
    font-weight: 500;
}

/* Statistics Section */
.statistics-section {
    padding: 6rem 0;
    background-color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
} */

/* .stat-label {
    font-size: 0.95rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
} */

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--neutral-cream);
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    color: var(--secondary-gold);
}

.feature-icon svg {
    color: var(--secondary-gold);
    stroke: var(--secondary-gold);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon svg {
    color: var(--accent-rose);
    stroke: var(--accent-rose);
    transform: scale(1.1);
}

.feature-icon:hover {
    animation-play-state: paused;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature-text {
    color: var(--neutral-charcoal);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: #f0ede9;
    padding: 2rem 0;
    padding-bottom: 1rem;
    /*margin-top: 80px;*/
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--neutral-grey);
}

.breadcrumb-item.active {
    color: var(--primary-burgundy);
}

.breadcrumb-item a {
    color: var(--neutral-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-rose);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--neutral-grey);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--accent-rose) 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Content Section */
/*.content-section {*/
/*    padding: 4rem 0;*/
/*}*/

/* Country Card */
.country-card {
    background: white;
    border: 1px solid #f0ede9;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    /* margin-bottom: 2rem; */
    height: 100%;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.country-flag {
    height: 100px;
    background: linear-gradient(to bottom, #f8f6f3, #ebe8e3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
}

.country-flag .fi {
    /* width: 120px; */
    /* height: 90px; */
    /* width: 100%;
    height: 100%; */
    /* font-size: 120px; */
    /* border-radius: 4px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.country-card:hover .country-flag .fi {
    transform: scale(1.05);
}

.country-flag .flag-placeholder {
    font-size: 5rem;
}

.country-content {
    padding: .8rem;
}

.country-name {
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    /* margin-bottom: .3rem; */
    font-weight: 400;
}

.country-regions {
    display: inline-block;
    /* background-color: var(--neutral-cream); */
    padding: 0.3rem 0rem;
    font-size: 0.75rem;
    color: var(--neutral-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    /* margin-bottom: 1rem; */
}

.country-description {
    color: var(--neutral-grey);
    line-height: 1.7;
    font-size: 0.95rem;
}

.btn-view-2 {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 1px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-view {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 1px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--primary-burgundy);
    color: white;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    justify-content: center;
}

.page-link {
    border: 1px solid #e0ddd9;
    color: var(--neutral-charcoal);
    padding: 0.7rem 1.2rem;
    margin: 0 0.25rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.page-link:hover {
    background-color: var(--neutral-cream);
    color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

.page-item.active .page-link {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    border-radius: 40px;
}

/* Contact Form */
.contact-info {
    background: white;
    padding: 3rem;
    border-top: 3px solid var(--secondary-gold);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-gold);
    margin-right: 1rem;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-value {
    color: var(--neutral-charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Wine Detail Page */
.wine-detail-image {
    background: linear-gradient(to bottom, #f8f6f3, #ebe8e3);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.wine-detail-image::before {
    content: '🍷';
    font-size: 10rem;
    opacity: 0.15;
}

.wine-detail-content {
    padding: 3rem;
}

.wine-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0ede9;
}

.wine-detail-name {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.wine-detail-origin {
    font-size: 1.2rem;
    color: var(--neutral-grey);
    margin-bottom: 1rem;
}

.wine-detail-price {
    font-size: 2rem;
    color: var(--secondary-gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.wine-detail-section {
    margin-bottom: 2.5rem;
}

.wine-detail-section h3 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-weight: 400;
}

.wine-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wine-spec-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--neutral-cream);
}

.wine-spec-label {
    font-size: 0.8rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.wine-spec-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary-burgundy);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--primary-burgundy);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    /* margin-top: 6rem; */
}

.footer h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}


/* LOGIN */
.login-container {
    max-width: 450px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(to bottom, #f8f6f3, #ebe8e3);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 3px solid #c9a961;
}

.login-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    /* color: #5e1f3d; */
    color: #640e19;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.login-header p {
    color: #6b6b6b;
    font-size: 0.95rem;
}

.login-body {
    padding: 3rem 2rem;
}

.form-label {
    font-weight: 500;
    color: #2a2a2a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #e0ddd9;
    padding: 0.9rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: #f8f6f3;
}

.form-control:focus {
    border-color: #c9a961;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
    background-color: white;
}

.btn-login {
    /* background-color: #5e1f3d; */
    background-color: #640e19;
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-login:hover {
    background-color: #9d2956;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(94, 31, 61, 0.3);
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #e0ddd9;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #6b6b6b;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: grid;
    gap: 1rem;
}

.btn-social {
    padding: 0.9rem;
    border: 1px solid #e0ddd9;
    background: white;
    color: #2a2a2a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-social:hover {
    background: #f8f6f3;
    border-color: #c9a961;
    color: #2a2a2a;
}

.login-footer {
    text-align: center;
    padding: 2rem;
    background-color: #f8f6f3;
    border-top: 1px solid #e0ddd9;
}

.login-footer a {
    color: #5e1f3d;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    color: #9d2956;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6b6b6b;
}

.forgot-password {
    float: right;
    font-size: 0.9rem;
    color: #5e1f3d;
    text-decoration: none;
}

.forgot-password:hover {
    color: #9d2956;
}


/* Philosophy Page */
/* Content Sections */
/*.content-section {*/
/*    padding: 6rem 0;*/
/*}*/

.section-title {
    font-size: 3rem;
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.philosophy-text {
    font-size: 1.1rem;
    /* line-height: 1.9; */
    color: var(--neutral-charcoal);
    margin-bottom: 2rem;
}

.highlight-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent-rose);
    font-style: italic;
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--secondary-gold);
}

/* Beliefs List */
.beliefs-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.beliefs-list li {
    font-size: 1.2rem;
    padding: .75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--neutral-charcoal);
    line-height: 1.4;
}

.beliefs-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 8px;
    height: 8px;
    background: var(--secondary-gold);
    border-radius: 50%;
}

/* Criteria Cards */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid #f0ede9;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.criteria-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--secondary-gold));
}

.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.criteria-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.criteria-title {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-weight: 500;
}

.criteria-description {
    color: var(--neutral-grey);
    line-height: 1.7;
}

/* Image Parallax Section */
.parallax-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(rgba(42, 42, 42, 0.2), rgba(94, 31, 61, 0.3)),
        url('../imgs/homepage65.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    padding: 4rem 0;
    line-height: 1.5;
}

/* Art of Aging Section */
.aging-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #ebe8e3 100%);
    padding: 4rem 0;
}

.aging-content {
    background: white;
    padding: 2.5rem;
    border-left: 5px solid var(--secondary-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.aging-title {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-weight: 400;
}

.aging-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-charcoal);
    margin-bottom: 1rem;
}

/* About Page */
 /* Content Sections */
        .content-section {
            padding: 8rem 0;
        }
        
        .section-title {
            font-size: 3rem;
            color: var(--primary-burgundy);
            margin-bottom: 2rem;
            font-weight: 300;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: var(--secondary-gold);
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .story-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--neutral-charcoal);
            margin-bottom: 2rem;
        }
        
        .highlight-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--accent-rose);
            font-style: italic;
            margin: 3rem 0;
            padding-left: 2rem;
            border-left: 4px solid var(--secondary-gold);
        }
        
        /* Image Gallery Section */
        .image-gallery {
            position: relative;
            padding: 6rem 0;
            background: linear-gradient(rgba(42, 42, 42, 0.6), rgba(94, 31, 61, 0.7)),
                        url('../imgs/homepage46.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .gallery-overlay-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: white;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            padding: 4rem 0;
        }
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .value-card {
            background: white;
            padding: 2.5rem;
            border: 1px solid #f0ede9;
            border-top: 3px solid var(--secondary-gold);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .value-title {
            font-size: 1.5rem;
            color: var(--primary-burgundy);
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 500;
        }
        
        .value-description {
            text-align: center;
            color: var(--neutral-grey);
            line-height: 1.7;
        }
@media (max-width: 1024px) {

    .hero-slide {
        min-height: 60vh;
    }

    .parallax-section {
        padding: 4rem 0;
    }

    .parallax-text {
        padding: 3rem 0;
    }
    .hero h1
    {
        font-size: 3rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand img{width: 80px;}

    .parallax-section {
        padding: 2rem 0;
    }

    .parallax-text {
        font-size: 2rem;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-top: 180px;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .filter-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .wine-image {
        height: 100px;
    }

    .w-image .img-db {
        width: 80px;
    }

    .btn-search,
    .btn-reset {
        padding: 0.7rem 1rem;
    }

    .hero-slide {
        min-height: 50vh;
    }
    .aging-content {
                padding: 1.5rem;
            }
            .aging-title {
                font-size: 1.5rem;
            }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .filter-section {
        margin-top: -40px;
    }

    .country-flag {
        height: 120px;
    }

    .country-regions {
        padding: 0.5rem 1rem;
        font-size: .75rem;
        margin-bottom: 0rem;
    }

    .country-name {
        font-size: 1.3rem;
        margin-bottom: .5rem;
    }

    .wine-name {
        font-size: 1rem !important;
        min-height: 2.4rem !important;
    }

    .philosophy-text, .beliefs-list li
    {
        font-size: 1rem;
    }
    .philosophy-text
    {
        margin-bottom: 1rem;
    }
    .highlight-text
    {
        font-size: 1.3rem;
        margin:  0;
    }
    .beliefs-list li
    {
        padding-left: 1.2rem;
    }
    .section-subtitle
    {
        font-size: 1.1rem;
    }
    .beliefs-list li:before
    {
        top: 1.2rem;
    }
    .aging-text
    {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 380px) {
    .country-flag {
        height: 80px;
    }

    .country-content {
        padding: .4rem;
    }

    .country-regions {
        padding: 0.3rem;
        font-size: .6rem;
    }

    .country-name {
        font-size: 1.2rem;
    }
    
    .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 9px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
}