/* Daly Wood Designs - Custom Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --wood-brown: #8B4513;
    --light-wood: #D2B48C;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar / Header */
.site-header {
    padding: 0.75rem 0;
}

.site-brand-center {
    padding: 0 1rem;
}

.site-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1c1c1c;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: #7a7a6e;
    margin-top: 2px;
}

.site-nav-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.site-nav-link:hover {
    color: #c9a84c;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wood-brown) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Text */
.hero-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.9;
    color: #3a3a35;
    letter-spacing: 0.02em;
    border-left: 2px solid #c9a84c;
    padding-left: 1.25rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.hero-section h1 {
    color: var(--wood-brown);
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card .card-title {
    color: var(--wood-brown);
    font-weight: 600;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #dee2e6;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    min-height: 50px;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.4em 0.7em;
}

/* Footer */
.site-footer {
    background-color: #1a1a18;
    color: #e8e4de;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 300;
    color: #8a8a7e;
    letter-spacing: 0.04em;
}

.footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1rem;
}

.footer-links {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links a {
    color: #b0aba3;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: #c9a84c;
}

.footer-social-icon {
    font-size: 0.85rem;
    margin-right: 0.35rem;
}

.footer-divider {
    border-color: #2e2e2a;
}

.footer-copy {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #5a5a52;
}

/* Cart Badge */
#cart-badge {
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item.active {
    color: var(--wood-brown);
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Tables */
.table thead {
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Alert positioning for AJAX notifications */
.alert.position-fixed {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    max-width: 500px;
    z-index: 9999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .product-image {
        height: 200px;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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