@import url('/css/shared-shell.css');

:root {
    --primary-color: #F9F7F2; /* Cream/White */
    --secondary-color: #D4AF37; /* Gold */
    --accent-color: #1E4B35; /* Deep Green */
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: var(--accent-color);
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #eee;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Home feed: show full post images (no crop) + medium icons on desktop */
.home-page .home-post-media {
    height: auto;
    background-color: #fff;
}

.home-page .home-post-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
    background-color: var(--primary-color);
}

.home-page .home-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 0.92rem;
}

.home-page .home-post-meta--reactions {
    margin-bottom: 1rem;
}

.home-page .home-post-meta--stats {
    margin-bottom: 12px;
}

.home-page .home-post-meta i {
    margin-right: 6px;
}

@media (min-width: 900px) {
    .home-page .home-post-meta {
        font-size: 1rem;
    }
    .home-page .home-post-meta i {
        font-size: 1.05rem;
    }
}

/* Forms */
.order-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.form-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.measurements-container {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-top: 1rem;
}

.hidden {
    display: none;
}

/* Steps */
.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.step {
    flex: 1;
    min-width: 200px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
}
