/* ===== Gate Street Boutique — Custom Overrides (Bootstrap 5) ===== */

/* Typography */
body {
    font-family: 'Lora', 'Cormorant Garamond', serif;
    color: #2c2418;
}
h1, h2, h3, h4, h5, h6,
.site-logo,
.section-title,
.product-card-body h3,
.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
}

/* Custom color utilities */
.text-primary-dark { color: #2c2418 !important; }
.text-secondary-custom { color: #7a6f60 !important; }
.text-muted-custom { color: #5a4f40 !important; }
.bg-warm { background: #faf6f0 !important; }
.border-warm { border-color: #d4c8bb !important; }
.review-stars-gold { color: #d4a350 !important; }
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44,36,24,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(44,36,24,0.15);
}
.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.card-btn {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    border: 1.5px solid #2c2418;
    color: #2c2418;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}
.card-btn:hover {
    background: #2c2418;
    color: #fff;
}
.gradient-bg {
    background: linear-gradient(135deg, #fdf6f0 0%, #f9f0e8 100%);
}

/* Hero */
.hero {
    text-align: center;
    padding: 5rem 0 4rem;
}

/* Section headings */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #2c2418;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: #7a6f60;
    margin-bottom: 3rem;
}

/* Feature section */
.feature {
    text-align: center;
    padding: 2rem 1rem;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature h4 {
    font-size: 1.25rem;
    color: #2c2418;
    margin: 0 0 0.5rem;
}
.feature p {
    color: #7a6f60;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    background: #ddd6d0;
    padding: 4rem 0;
    text-align: center;
}
.newsletter-inner {
    max-width: 40rem;
    margin: 0 auto;
}
.newsletter h2 {
    font-size: 2rem;
    color: #2c2418;
    margin-bottom: 0.5rem;
}
.newsletter p {
    color: #7a6f60;
    margin-bottom: 2rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid #d4c8bb;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 18rem;
}
.newsletter-form button {
    padding: 0.75rem 2rem;
    background: #2c2418;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}
.newsletter-form button:hover {
    background: #4a3d2e;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #fdf6f0 0%, #f9f0e8 100%);
    padding: 1rem 0;
    border-bottom: 1px solid #e8dfd8;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.site-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c2418;
    text-decoration: none;
    flex-shrink: 0;
}
.site-nav a {
    color: #5a4f40;
    text-decoration: none;
    font-size: 0.95rem;
    margin-left: 1.25rem;
    transition: color 0.3s;
}
.site-nav a:hover,
.site-nav a.active {
    color: #2c2418;
}

/* Main content */
.page-content {
    min-height: 60vh;
}

/* Footer */
.site-footer {
    background: #2c2418;
    color: #fdfaf6;
    padding: 3rem 0 1.5rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #fdfaf6;
    margin: 0 0 0.75rem;
}
.footer-col p,
.footer-col a {
    color: #d4c8bb;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.35rem;
}
.footer-col a:hover {
    color: #fdfaf6;
}
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4a3d2e;
}
.footer-bottom p {
    color: #a89a8a;
    font-size: 0.85rem;
    margin: 0;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
}
