body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #121212;
    color: #e5e5e5;
}

header {
    background: #1a1a1a;
    color: #00bf63;
    text-align: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #2c2c2e;
}

h1 {
    margin: 0;
    font-size: 1.5rem;
    font-family: "Rye", serif;
}

h2 {
    margin: 0;
    font-size: 1.25rem;
    font-family: "Rye", serif;
}

p {
    margin: 0;
    font-family: PT Serif, serif;
    font-style: italic;
}

.rye-regular {
    font-family: "Rye", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-serif-bold {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
}

.pt-serif-regular-italic {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.pt-serif-bold-italic {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: italic;
}

.logo {
    scale: 1.25;
}

nav a {
    color: #e5e5e5;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

nav a:hover {
    text-decoration: underline;
    color: #0a84ff;
}

main {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    transition: background-color 0.3s ease;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    display: block;
    background: #1c1c1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card h3 {
    margin: 1rem 1rem 0.5rem;
    font-size: 1.25rem;
    color: #e5e5e5;
}

.card p {
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #00bf63;
    transition: color 0.3s ease;
}

.card-container {
    margin-bottom: 1rem;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    background: #2c2c2e;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, background-color 0.3s ease;
    padding: 0 1rem;
    margin-top: 0;
}

.expandable-content.open {
    max-height: 200px;
    padding: 1rem;
    border-top: 1px solid #3a3a3c;
}
.about-page {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #e5e5e5;
    transition: color 0.3s ease;
}

.about-page h2 {
    margin-top: 0;
    font-family: "Rye", serif;
    font-weight: 400;
    font-style: normal;
}

.about-page h3 {
    margin-bottom: 0;
    font-family: "Rye", serif;
    font-weight: 400;
    font-style: normal;
}
.about-page ul { 
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}


.page-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #e5e5e5;
    transition: color 0.3s ease;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: #1c1c1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

fieldset {
    border: 1px solid #3a3a3c;
    color: #e5e5e5;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    transition: border-color 0.3s ease;
}

legend {
    font-weight: bold;
    padding: 0 0.5rem;
    font-size: 1.1rem;
    color: #e5e5e5;
    transition: color 0.3s ease;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #e5e5e5;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #3a3a3c;
    background-color: #2c2c2e;
    color: #e5e5e5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a84ff;
    box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #e5e5e5;
}

.hint {
    font-size: 0.85rem;
    color: #e5e5e5;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.submit-btn {
    background-color: #0a84ff;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #0066cc;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    display: none;
}

.form-message .success {
    background-color: #1e3a2f;
    color: #6fcf97;
}

.form-message .error {
    background-color: #3a1a1a;
    color: #ff6b6b;
}

.date {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    padding: 0.6rem;
    border: 1px solid #3a3a3c;
    border-radius: 4px;
    background-color: #2c2c2e;
    color: #e5e5e5;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background-color: #2c2c2e;
    border: 1px solid #3a3a3c;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.select-options div {
    padding: 0.5rem;
    cursor: pointer;
    color: #e5e5e5;
    transition: background-color 0.2s ease;
}

.select-options div:hover {
    background-color: #3a3a3c;
}

.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #8e8e93;
    width: 20px;
    height: 20px;
}

.enhanced-date-input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 0.6rem;
    border: 1px solid #3a3a3c;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background-color: #2c2c2e;
    color: #e5e5e5;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.enhanced-date-input:focus {
    outline: none;
    border-color: #0a84ff;
    box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.2);
}

.enhanced-date-input.error {
    border-color: #ff3b30;
    background-color: #3a1a1a;
}

.enhanced-date-input.success {
    border-color: #34c759;
    background-color: #1e3a2f;
}

.flatpickr-calendar {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: inherit;
    background: #1c1c1e;
    border: 1px solid #3a3a3c;
}

.flatpickr-calendar .flatpickr-month,
.flatpickr-calendar .flatpickr-weekday {
    color: #e5e5e5;
}

.flatpickr-calendar .flatpickr-day {
    color: #e5e5e5;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
    background: #0a84ff;
    border-color: #0a84ff;
    color: #fff;
}

.flatpickr-day.today {
    border-color: #0a84ff;
}

.flatpickr-day.today:hover {
    background: #0a84ff;
    border-color: #0a84ff;
    color: #fff;
}

.flatpickr-day:hover {
    background: #3a3a3c;
    border-color: #3a3a3c;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #8e8e93;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #0a84ff;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .flatpickr-calendar.open {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 320px !important;
        z-index: 9999 !important;
    }
    
    .flatpickr-calendar .flatpickr-innerContainer,
    .flatpickr-calendar .flatpickr-rContainer,
    .flatpickr-days {
        width: 100%;
    }
    
    .dayContainer {
        width: 100%;
        min-width: auto;
    }
    
    .flatpickr-day {
        max-width: 40px;
        height: 40px;
        line-height: 40px;
        margin: 2px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #2c2c2e;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3c;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a4a4c;
}

/* Footer styling if you have one */
footer {
    background-color: #1a1a1a;
    color: #8e8e93;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

/* Links */
a:not(nav a) {
    color: #00bf63;
    text-decoration: none;
}

a:not(nav a):hover {
    color:#00bf63;
    opacity: .7;
    text-decoration: underline;
}

/* Navigation styling */
nav a,
nav a:link,
nav a:visited,
nav a:hover,
nav a:active {
  color: #eb109b;  /* Change this to your preferred color */
  text-decoration: none;
  background: none;
  border: none;
  transform: none;
  transition: none;
}

/* Optional: Add a subtle hover effect without size shift */
nav a:hover {
  color: #eb109b;  /* Or keep same color */
  opacity: 0.7;
}