/*
 * Honeymoon Planner Directory - Custom Stylesheet
 * Version 1.3
 */

/* --- Color Palette --- */
:root {
    --hpd-primary: #B95D4A;
    --hpd-primary-dark: #9A4C3D;
    --hpd-secondary: #f8f9fa;
    --hpd-text: #343a40;
    --hpd-serif: 'Georgia', 'Times New Roman', serif;
}

body {
    color: var(--hpd-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hpd-serif);
}

/* --- Button Styling --- */
.btn-primary {
    background-color: var(--hpd-primary);
    border-color: var(--hpd-primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--hpd-primary-dark);
    border-color: var(--hpd-primary-dark);
}

/* --- Link Styling --- */
a {
    color: var(--hpd-primary);
}

a:hover {
    color: var(--hpd-primary-dark);
}

/* --- Navbar Styling --- */
.navbar-custom {
    background-color: var(--hpd-primary);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    font-family: var(--hpd-serif);
    color: white;
}

.navbar-custom .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Badge Styling --- */
.badge.bg-info {
    background-color: #e9ecef !important;
    color: #333 !important;
}

/* --- Card Styling --- */
.card-header {
    font-family: var(--hpd-serif);
}

/* --- Footer Styling --- */
.footer-custom {
    background-color: var(--hpd-primary);
    color: white;
}

.footer-custom a {
    color: white;
    text-decoration: underline;
}

.footer-custom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* --- NEW: Segmented Control / Toggle Button Styling --- */
.segmented-control {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.segmented-control .btn {
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    color: var(--hpd-text);
}

.segmented-control .btn.active {
    background-color: var(--hpd-primary);
    color: white;
    border-color: var(--hpd-primary);
}

/* --- NEW: Consent Banner Styles --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1050;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-consent-banner p a {
    color: #a2c5e8;
    text-decoration: underline;
}

.cookie-consent-banner .btn-accept {
    background-color: #a2756a;
    border-color: #a2756a;
    color: #fff;
    margin-left: 20px;
    min-width: 100px;
}