@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap');

/* General Body Styles */
body {
    background-color: #FFFFFF;
    color: #333333;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Navigation Bar */
header {
    padding: 1em 0;
    border-bottom: 1px solid #EAEAEA;
    text-align: center;
}

nav a {
    color: #555555;
    text-decoration: none;
    font-weight: 600;
    margin: 0 1em;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

nav a:hover {
    color: #000000;
}

/* Main Content Container */
.container,
.about-container,
.contact-container,
.blog-container,
.store-container {
    max-width: 700px;
    margin: 3em auto;
    padding: 0 1.5em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #000000;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h1 {
    font-size: 2.8em;
}

h2 {
    font-size: 2.2em;
}

/* Blog Post List Styling */
.blog-post {
    padding-bottom: 2em;
    margin-bottom: 2em;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.blog-post-content {
    flex: 1;
}

.blog-post-image {
    flex-basis: 220px;
    flex-shrink: 0;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-post-image .video-preview {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.blog-post-image .video-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-post h2 a {
    text-decoration: none;
    color: #000000;
}

.blog-post h2 a:hover {
    text-decoration: underline;
}

.blog-post p {
    margin-bottom: 1em;
}

.blog-post em {
    color: #888888;
    font-size: 0.9em;
}


/* Single Blog Post Styles */
.single-blog-post h1 {
    font-size: 3em;
    margin-bottom: 0.25em;
}

.post-meta {
    color: #888888;
    margin-bottom: 2em;
    font-style: italic;
}

.post-content p {
    font-family: 'Lora', serif;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.post-content h2, .post-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.post-content a {
    color: #D9534F;
    text-decoration: underline;
}

.post-content blockquote {
    border-left: 3px solid #D9534F;
    margin-left: 0;
    padding-left: 1.5em;
    font-style: italic;
    color: #555555;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}

/* Form Styling */
label {
    display: block;
    margin-top: 1.5em;
    font-weight: 600;
    font-size: 0.9em;
}

input, textarea {
    width: 100%;
    padding: 0.8em;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
    margin-top: 0.5em;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
}

button {
    margin-top: 1.5em;
    padding: 0.8em 1.5em;
    border-radius: 6px;
    border: none;
    background: #D9534F;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

button:hover {
    background: #C9302C;
}

/* Lists */
ol, ul {
    padding-left: 2em;
}

hr {
    border: 0;
    border-top: 1px solid #EAEAEA;
    margin: 3em 0;
}

/* Store Specific Styles */
.store-container {
    max-width: 900px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 1.5em;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1em;
}

.product-title {
    font-family: 'Lora', serif;
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #333333;
}

.product-price {
    font-size: 1.15em;
    color: #D9534F;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.star-rating {
    color: #F0AD4E;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.product-desc {
    font-size: 1em;
    color: #555555;
}


/* Home Page Hero Blocks */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin: 3em auto;
    max-width: 1200px;
    padding: 0 1.5em;
}

.hero-block {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.hero-block a {
    display: block;
    text-decoration: none;
    color: #FFFFFF;
}

.hero-block img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.hero-block:hover img {
    transform: scale(1.05);
}

.hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5em;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    font-family: 'Lora', serif;
    font-size: 2em;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive Video Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 2em 0;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}