/* Renee Roszel Romantic Theme */
/* Warm, elegant color palette: blush, rose, gold, cream */

:root {
    --primary-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
    
    /* Romantic Color Palette */
    --rose: #c85a7e;
    --blush: #d4a5a5;
    --gold: #d4af37;
    --cream: #faf8f3;
    --rose-light: #f5e6eb;
    --rose-dark: #8b3a52;
    --gold-light: #f4e4b9;
    --text-dark: #3d2c2a;
    --text-light: #6b5553;
}

html {
    background-color: var(--cream);
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.title, .subtitle {
    font-family: var(--primary-font);
    color: var(--rose-dark);
}

.title.is-1 {
    color: var(--rose);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title.is-2, .title.is-3 {
    color: var(--rose);
}

.subtitle {
    color: var(--text-light);
}

/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 2px 12px rgba(200, 90, 126, 0.08);
}

.navbar-brand a.navbar-item {
    font-family: var(--primary-font);
    color: var(--rose) !important;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-item {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.75rem !important;
}

.navbar-item:hover {
    color: var(--rose) !important;
}

.navbar-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--rose), var(--gold));
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.navbar-item.is-active {
    color: var(--rose) !important;
    font-weight: 700;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(200, 90, 126, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(200, 90, 126, 0.2);
}

.card-header {
    background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    border-bottom: 2px solid var(--gold);
    padding: 1.5rem;
}

.card-header-title {
    color: var(--rose);
    font-family: var(--primary-font);
    font-weight: 600;
}

.card-image {
    padding: 2rem 1.5rem;
    background-color: var(--cream);
    border-bottom: 1px solid #e8dcc8;
}

.card-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-image img:hover {
    transform: scale(1.02);
}

.card-content {
    padding: 2rem 1.5rem;
}

.card-footer {
    background-color: var(--cream);
    border-top: 1px solid #e8dcc8;
}

.card-footer-item {
    color: var(--rose) !important;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.card-footer-item:hover {
    background-color: var(--rose-light);
    color: var(--rose-dark) !important;
}

/* Boxes and Containers */
.box {
    background: linear-gradient(135deg, var(--rose-light), white);
    border-left: 5px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(200, 90, 126, 0.08);
}

.box.highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--rose-light));
    border-left-color: var(--rose);
}

/* Buttons */
.button {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.button.is-danger,
.button.is-primary {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    border-color: var(--rose);
    color: white;
}

.button.is-danger:hover,
.button.is-primary:hover {
    background: linear-gradient(135deg, var(--rose-dark), #6b2f42);
    box-shadow: 0 4px 15px rgba(200, 90, 126, 0.3);
    transform: translateY(-2px);
}

.button.is-info {
    background: linear-gradient(135deg, var(--blush), var(--rose-light));
    border-color: var(--blush);
    color: white;
}

.button.is-info:hover {
    background: linear-gradient(135deg, #c4959a, #e8c8d4);
    box-shadow: 0 4px 15px rgba(196, 149, 154, 0.3);
}

.button.is-light {
    background-color: var(--rose-light);
    color: var(--rose-dark);
    border-color: var(--rose);
}

.button.is-light:hover {
    background-color: var(--blush);
    border-color: var(--rose);
}

/* Tags */
.tag {
    border-radius: 20px;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.tag.is-danger {
    background-color: var(--rose);
    color: white;
}

.tag.is-info {
    background-color: var(--blush);
    color: white;
}

.tag.is-light {
    background-color: var(--rose-light);
    color: var(--rose-dark);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--rose) !important;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--rose-dark) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #faf8f3, white);
    border-top: 3px solid var(--gold);
    padding: 3rem 1.5rem;
}

.footer p {
    color: var(--text-dark);
}

.footer strong {
    color: var(--rose);
}

/* Notification and Content Boxes */
.notification {
    border-radius: 8px;
    border-left: 4px solid;
    padding: 1.5rem;
}

.notification.is-danger {
    background-color: var(--rose-light);
    border-left-color: var(--rose);
    color: var(--rose-dark);
}

.notification.is-info {
    background-color: var(--gold-light);
    border-left-color: var(--gold);
    color: var(--text-dark);
}

/* Content */
.content {
    color: var(--text-dark);
}

.content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content a {
    color: var(--rose) !important;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.content a:hover {
    color: var(--rose-dark) !important;
    border-bottom-color: var(--rose);
}

/* Dividers */
hr {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    border: none;
    height: 2px;
    margin: 2rem 0;
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.hero.is-small {
    padding: 2rem 1.5rem;
}

.hero-body {
    padding: 2rem 1.5rem;
}

/* Columns and Layout */
.section {
    padding: 3rem 1.5rem;
    background-color: var(--cream);
}

.section.has-background-light {
    background: linear-gradient(135deg, var(--cream), white);
}

/* Images */
img {
    border-radius: 6px;
    transition: transform 0.3s ease;
}

img.is-rounded {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(200, 90, 126, 0.2);
}

.shadow {
    box-shadow: 0 6px 20px rgba(200, 90, 126, 0.15) !important;
}

.shadow:hover {
    box-shadow: 0 8px 30px rgba(200, 90, 126, 0.25) !important;
}

/* Forms */
.input, .textarea, .select {
    border-color: #e8dcc8 !important;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus, .textarea:focus, .select:focus {
    border-color: var(--rose) !important;
    box-shadow: 0 0 0 0.125em rgba(200, 90, 126, 0.1);
}

.label {
    color: var(--text-dark) !important;
    font-weight: 600;
}

/* Tables */
.table {
    background-color: white;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(200, 90, 126, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    color: var(--rose-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr:hover {
    background-color: var(--rose-light);
}

/* Container */
.container {
    max-width: 1200px;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    .title.is-1 {
        font-size: 2rem;
    }
    
    .title.is-2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
}

/* Loading and Transitions */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .navbar, .footer {
        display: none;
    }
}
