/* Lucide Icons Font Face */
@font-face {
  font-family: 'LucideIcons';
  /* Load Lucide icons font */
  src: url(https://cdn.jsdelivr.net/npm/lucide-static@latest/font/lucide.ttf) format('truetype');
}

/* Basic body styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f8f4; /* Off-white background */
  color: #333;
}

/* Serif heading styles */
.serif-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.main-serif-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.sub-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Course title styles */
.course-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85em;
    color: #666;
}

/* Lucide icon base styles */
.lucide {
    font-family: 'LucideIcons';
    font-size: 1.2em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
}
/* Lucide star icon styles */
.lucide-star {
    font-family: 'LucideIcons';
    font-size: 1.1em;
    display: inline-block;
    vertical-align: text-bottom;
    color: #eab308; /* Gold color */
    margin-right: 0.1rem;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Menu divider style */
hr.menu-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
    margin: 1rem auto;
    width: 50%;
}

/* Menu item name style */
.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.3em;
    color: #2d5a3d; /* Dark green */
}

/* Pairing text style */
.pairing-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95em;
    color: #555;
}

/* Review quote style */
.review-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #444;
    position: relative;
    padding-left: 2.5rem; /* Space for quote mark */
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
/* Quote mark pseudo-element */
.review-quote::before {
    content: '\201C'; /* Unicode for left double quote */
    font-size: 3.5em;
    color: #a3b18a; /* Muted green */
    position: absolute;
    left: 0rem;
    top: -0.3em;
    line-height: 1;
    z-index: -1; /* Place behind text */
    opacity: 0.8;
}
/* Review source style */
.review-source {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #3a5a40; /* Medium green */
}
/* Reviewer name style */
.review-reviewer {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #588157; /* Main green */
    font-size: 1em;
}

/* --- Modal Styles --- */
/* Base modal overlay style */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
    padding: 1rem; /* Padding for smaller screens */
}
/* Base modal content style */
.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 400px; /* Max width for the modal */
    position: relative; /* For positioning the close button */
}
/* Modal close button style */
.modal-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #aaa; /* Light grey */
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease; /* Smooth hover effect */
}
.modal-close-btn:hover {
    color: #333; /* Darker grey on hover */
}
/* Modal title style */
.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d; /* Dark green */
    margin-bottom: 1rem;
}
/* Modal text style */
.modal-text {
    font-size: 1.1rem;
    color: #555; /* Medium grey */
    line-height: 1.6;
}

/* --- Progress Bar Modal Specific Styles --- */
.progress-modal-content {
    max-width: 350px; /* Slightly smaller width */
    border: 2px solid #a3b18a; /* Muted green border */
}
.progress-bar-container {
    width: 100%;
    height: 10px; /* Height of the progress bar track */
    background-color: #e0e0e0; /* Light grey track */
    border-radius: 5px; /* Rounded corners for the track */
    overflow: hidden; /* Keep inner bar contained */
    margin-top: 1.5rem; /* Space above the progress bar */
    position: relative; /* Needed for positioning the inner bar */
}
.progress-bar-indeterminate {
    width: 50%; /* Width of the moving indicator */
    height: 100%;
    background-color: #588157; /* Main green color */
    border-radius: 5px; /* Rounded corners for the indicator */
    position: absolute;
    top: 0;
    left: 0;
    /* Animation definition */
    animation: indeterminate-progress 2s infinite linear;
}
/* Indeterminate Progress Bar Animation */
@keyframes indeterminate-progress {
    0% {
        left: -50%; /* Start off-screen left */
    }
    100% {
        left: 100%; /* End off-screen right */
    }
}

/* --- April Fools' Modal Specific Styles --- */
.april-fools-modal-content {
     border: 2px solid #588157; /* Main green border */
}

/* Video container styling */
.video-container {
    max-width: 800px;
    position: relative;
    transition: transform 0.3s ease;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.video-container:hover {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
}