/* 
ClashCGG - Handcrafted Accessories Brand
Main Stylesheet
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary-color: #624a2e;
    --primary-light: #8c6d4f;
    --primary-dark: #42331f;
    --secondary-color: #a67c52;
    --accent-color: #d9b38c;
    --text-color: #333333;
    --light-text: #777777;
    --background-color: #ffffff;
    --light-bg: #f8f5f2;
    --dark-bg: #2a2a2a;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --font-main: 'Lato', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 4px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --container-width: 1200px;
    --container-padding: 20px;
}

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style-position: inside;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    background-color: var(--primary-color);
    color: white;
}

.btn:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    width: 100%;
    max-width: 600px;
    margin-left: 10%;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.slide-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.slider-controls {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    z-index: 10;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    transition: all var(--transition-normal);
}

.slider-controls button:hover {
    background-color: white;
    transform: scale(1.1);
}

/* ===== WELCOME SECTION ===== */
.welcome {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.welcome .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-letter {
    max-width: 800px;
    padding: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
}

.welcome-letter::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.welcome-letter h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.welcome-letter p {
    margin-bottom: 1.5rem;
}

.welcome-letter .signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    text-align: right;
    margin-top: 3rem;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 8rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.product-info p {
    color: var(--light-text);
}

/* ===== RECENT POSTS ===== */
.recent-posts {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.post-info {
    padding: 2rem;
}

.post-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.post-info p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left var(--transition-normal);
}

.read-more:hover::after {
    margin-left: 1rem;
}

.view-all {
    margin-top: 5rem;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p svg {
    margin-right: 1rem;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: all var(--transition-normal);
}

.social-icons a svg {
    color: white;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(42, 42, 42, 0.95);
    color: white;
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 1.4rem;
}

.cookie-content a:hover {
    color: white;
}

/* ===== BLOG PAGE ===== */
.page-banner {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-banner p {
    font-size: 2rem;
}

.blog-content {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-post .post-image {
    height: 100%;
    min-height: 300px;
}

.blog-post .post-content {
    padding: 3rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.post-meta .date,
.post-meta .category {
    font-size: 1.4rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.post-meta .category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

/* ===== BLOG POST PAGES ===== */
.blog-post-header {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: white;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.blog-post-header .container {
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
}

.blog-post-header .post-meta {
    margin-bottom: 2rem;
}

.blog-post-header .post-meta .date,
.blog-post-header .post-meta .category {
    color: rgba(255, 255, 255, 0.8);
}

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    max-width: 800px;
}

.blog-post-content {
    padding: 6rem 0;
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.post-main-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow-sm);
}

.post-intro {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
}

.post-main-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 4rem 0 2rem;
    color: var(--primary-dark);
}

.post-main-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    color: var(--primary-dark);
}

.post-main-content p {
    margin-bottom: 2rem;
}

.post-main-content ul,
.post-main-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-main-content li {
    margin-bottom: 1rem;
}

.post-main-content strong {
    color: var(--primary-dark);
}

.post-image {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

figcaption {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: var(--light-text);
    text-align: center;
    font-style: italic;
}

blockquote {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

blockquote p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
}

.post-tags {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.post-tags span {
    font-weight: 600;
    color: var(--primary-dark);
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--light-bg);
    border-radius: 100px;
    font-size: 1.4rem;
    transition: all var(--transition-normal);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.post-share span {
    font-weight: 600;
    color: var(--primary-dark);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.post-share a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.post-share a:hover svg {
    color: white;
}

.post-navigation {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.prev-post,
.next-post {
    display: flex;
}

.prev-post a,
.next-post a {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    width: 100%;
}

.prev-post a:hover,
.next-post a:hover {
    background-color: var(--primary-light);
    color: white;
}

.prev-post a {
    text-align: left;
}

.next-post a {
    text-align: right;
}

.prev-post span,
.next-post span {
    display: block;
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.prev-post h4,
.next-post h4 {
    font-size: 1.6rem;
    font-weight: 600;
}

.post-sidebar {
    align-self: start;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.author-info p {
    color: var(--light-text);
}

.recent-posts ul {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-posts span {
    font-size: 1.3rem;
    color: var(--light-text);
}

.categories ul {
    list-style: none;
}

.categories li {
    margin-bottom: 1rem;
}

.categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.categories a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--light-text);
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.newsletter button {
    align-self: flex-start;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    padding: 8rem 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin: 4rem 0 2rem;
    color: var(--primary-dark);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 2rem;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-normal);
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(98, 74, 46, 0.1);
    border-radius: 50%;
}

.pillar h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.image-caption {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
}

.team-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: var(--light-text);
    font-size: 1.8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.member-info p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-bg);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.member-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.member-social a:hover svg {
    color: white;
}

.values-section {
    padding: 8rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.workshop-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.workshop-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.workshop-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.workshop-content p {
    margin-bottom: 2rem;
}

.workshop-content .btn {
    margin-top: 2rem;
}

.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.testimonials-section {
    padding: 8rem 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    margin: 0 2rem;
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    line-height: 1;
}

.testimonial-content p::before {
    left: 0;
    top: -1rem;
}

.testimonial-content p::after {
    right: 0;
    bottom: -2rem;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.author-location {
    color: var(--light-text);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-controls button {
    background-color: var(--light-bg);
    border: none;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-controls button:hover svg {
    color: white;
}

.cta-section {
    padding: 10rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/42.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 8rem 0;
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2,
.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.contact-info > p {
    margin-bottom: 3rem;
    color: var(--light-text);
}

.info-card {
    display: flex;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-right: 2rem;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.info-content p {
    color: var(--text-color);
}

.info-content .note {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
}

.business-hours,
.workshop-visits {
    margin-top: 4rem;
}

.business-hours h3,
.workshop-visits h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.business-hours li span {
    font-weight: 600;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group.newsletter-signup,
.form-group.privacy-policy {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.form-group.newsletter-signup input,
.form-group.privacy-policy input {
    width: auto;
    margin-top: 0.3rem;
}

.submit-btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 1rem;
}

.map-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.map-container {
    height: 450px;
    margin-top: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-overlay p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-section {
    padding: 8rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.toggle-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.toggle-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-item.active .toggle-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color var(--transition-normal);
}

.close-modal:hover {
    color: var(--primary-dark);
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thank-you-message h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.thank-you-message p {
    margin-bottom: 3rem;
    color: var(--light-text);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px = 1rem */
    }
    
    .posts-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px = 1rem */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 1001;
        padding: 8rem 3rem;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 2rem 0;
    }
    
    .welcome .container,
    .about-intro .container,
    .workshop-section .container,
    .contact-section .container {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content .container {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        display: none;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .posts-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-post .post-image {
        height: 250px;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slide-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 3.6rem;
    }
    
    .blog-post-header h1 {
        font-size: 3.2rem;
    }
    
    .workshop-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
}
