/**
 * Main CSS file for the FungusHead theme
 */

 @font-face {
    font-family: 'Babes Neue';
    src: url('../fonts/BabesNeue.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
:root {
    --color-primary: #ff69b4; /* accent-1 - pink */
    --color-background: #f9f4e8; /* accent-3 - light beige */
    --color-text: #333333;
    --color-text-light: #000000; /* accent-4 */
    --color-text-lighter: #000000;
    --color-highlight: #ffffc2; /* yellow-50 */
    --border-radius: 0;
    --box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.8);
    --box-shadow-hover: 10px 10px 0px 0px rgba(255,105,180,0.8);
    --font-heading: "bebas-neue", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --border-width: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #000;
    line-height: 1.6;
    background-color: white;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: black;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: normal;
    line-height: 0.95;
    font-weight: bold;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.container {
    max-width: 1585px;
    margin: 10px auto;
    padding: 0 15px;
    margin-top: 50px;
}

/* Layout */
.site-content {
    margin: 0px;
}

.content-area {
    width: 100%;
}

@media (min-width: 768px) {
    .content-area {

    }
    
    .widget-area {
        width: 30%;
        float: right;
    }
    
    .site-content::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.announcement-bar {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

.logo img {
    height: 40px;
}

.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 32px;
    height: 40px;
    border-radius: var(--border-radius);
    border: var(--border-width) solid black;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-highlight);
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.8);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
}

.btn-secondary {
    background-color: white;
    color: black;
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.8);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #f9f9f9;
    box-shadow: 8px 8px 0px 0px rgba(255,105,180,0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
}

.section-description {
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    margin: 0 auto 12px;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* Blog Styles */
.post-card {
    border: var(--border-width) solid black;
    margin-bottom: 2rem;
    padding: 24px;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-card:hover .post-featured-image {
    transform: scale(1.05);
}

.entry-title {
    margin-bottom: 0.5rem;
    font-size: 50px;
}

.entry-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: var(--color-primary);
}

.entry-meta {
    color: black;
    font-size: 14px;
    margin-bottom: 1rem;
}

.entry-meta a {
    color: black;
}

.entry-meta a:hover {
    color: var(--color-primary);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-link svg {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: black;
    text-decoration: underline;
}

.read-more-link:hover svg {
    transform: translateX(4px);
}

/* Widget Styles */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

/* Responsive Media Queries */
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* WooCommerce Styles */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.woocommerce-result-count,
.woocommerce-ordering {
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Newsletter Section */
.newsletter-section {
    padding: 50px 0;

}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: #FFD1DC;
    border: 4px solid #000;
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
}

.newsletter-content {
    text-align: center;
}

.newsletter-title {
    font-family: "bebas-neue", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-form-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form-row input {
    flex: 1;
    max-width: 350px;
    padding: 12px 15px;
    border: 4px solid #000;
    border-radius: 0;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    border: 4px solid #000;
    border-radius: 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
}

.newsletter-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.feature-icon {
    font-weight: bold;
}

@media (max-width: 768px) {
    .newsletter-container {
        padding: 25px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-form-row {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form-row input {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
.about-us-page .about-hero-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    border-bottom: var(--border-width) solid black;
}

.about-us-page .about-hero-section .container {
    background-color: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: var(--border-radius);
    display: inline-block;
    border: var(--border-width) solid black;
    box-shadow: var(--box-shadow);
}

.about-us-page .about-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-us-page .about-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #f0f0f0;
}

.about-us-page section:not(.about-hero-section) .container {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    border: var(--border-width) solid black;
    box-shadow: var(--box-shadow);
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-us-page section {
    padding: 20px 0;
}

.about-us-page .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-us-page .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-us-page .section-subtitle {
    font-size: 1.1rem;
    color: black;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Story/Mission Section */
.about-story-mission-section .story-mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-story-mission-section .story-mission-text {
    flex: 1;
}

.about-story-mission-section .story-mission-image {
    flex-basis: 40%;
    max-width: 400px;
}

.about-story-mission-section .story-mission-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: var(--border-width) solid black;
}

/* Values Section */
.about-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-values-section .value-item {
    text-align: center;
    padding: 20px;
    border: var(--border-width) solid black;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.about-values-section .value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.about-values-section .value-icon {
    max-width: 60px;
    margin-bottom: 15px;
}

.about-values-section .value-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* Team Section */
.about-team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-team-section .team-member {
    text-align: center;
    padding: 20px;
    border: var(--border-width) solid black;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.about-team-section .team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.about-team-section .team-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 15px;
    border: var(--border-width) solid black;
}

.about-team-section .team-member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.about-team-section .team-member-role {
    color: black;
    margin-bottom: 10px;
}

/* CTA Section */
.about-cta-section .container {
    background-color: var(--color-primary) !important;
    color: #fff;
}

.about-cta-section .cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.about-cta-section .cta-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #fff;
}

.about-cta-section .cta-button {
    background-color: #fff;
    color: #000;
    border-color: black;
}

.about-cta-section .cta-button:hover {
    background-color: #f0f0f0 ;
    color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-story-mission-section .story-mission-content {
        flex-direction: column;
    }
    .about-story-mission-section .story-mission-image {
        margin-top: 30px;
        max-width: 100%;
    }
    .about-us-page .about-hero-title {
        font-size: 2.5rem;
    }
    .about-us-page .section-title {
        font-size: 2rem;
    }
} 