/* 
  Srkin Club - Premium Massage & Wellness Salon
  Main Stylesheet
*/

/* =================== 
   Base Styles
=================== */
:root {
    --primary-color: #5d4037;
    --primary-light: #8b6b61;
    --primary-dark: #321911;
    --secondary-color: #81c784;
    --secondary-light: #b2fab4;
    --secondary-dark: #519657;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --text-muted: #757575;
    --background-light: #fff;
    --background-off-white: #f9f7f6;
    --background-accent: #f0ebe9;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 12px var(--shadow-color);
    --transition: all 0.3s ease;
    
    --container-width: 1200px;
    --container-padding: 0 2rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    margin-top: 0.5rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.btn.secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn.secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

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

.btn.tertiary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* =================== 
   Layout Components
=================== */

/* Header & Navigation */
header {
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

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

nav ul {
    display: flex;
}

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

nav ul li a {
    padding: 0.5rem;
    font-weight: 600;
    position: relative;
}

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

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

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer-links h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links ul li a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-light);
}

.footer-newsletter h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-newsletter p {
    margin-bottom: 1rem;
}

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

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.social-media {
    display: flex;
    margin-top: 1.5rem;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin-right: 0.75rem;
}

.social-media a:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

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

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(40, 40, 40, 0.95);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin-bottom: 1rem;
}

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

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-policy a {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* Thank You Modal */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thank-you-modal h2 {
    margin-bottom: 1rem;
}

.thank-you-modal p {
    margin-bottom: 2rem;
}

/* =================== 
   Home Page Sections
=================== */

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Popular Services Section */
.popular-services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-muted);
}

.service-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* Event Countdown */
.event-countdown {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.event-countdown h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.event-countdown p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    min-width: 100px;
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 1rem;
}

.testimonial-content {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.client {
    display: flex;
    align-items: center;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.client-info h4 {
    margin-bottom: 0.25rem;
}

.client-info p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-style: normal;
}

/* Recent Blog Section */
.recent-blog {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* =================== 
   Services Page
=================== */

.services-intro {
    padding: 5rem 0;
}

.services-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

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

.service-categories {
    padding-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--background-accent);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.services-list {
    padding-bottom: 5rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    padding: 2rem;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.service-meta span {
    display: flex;
    align-items: center;
}

.service-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.service-details ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.membership {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.plan-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.plan-header h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.plan-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

.gift-cards {
    padding: 5rem 0;
}

.gift-cards .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-content h2 {
    margin-bottom: 1.5rem;
}

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

.faq {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

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

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

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* =================== 
   Blog Page
=================== */

.blog-intro {
    padding: 4rem 0;
}

.featured-post {
    padding-bottom: 5rem;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-details {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.featured-details h2 {
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.5rem;
}

.blog-posts {
    padding-bottom: 5rem;
}

.blog-image {
    position: relative;
}

.blog-image .post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    margin-bottom: 0;
}

.blog-categories {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
    color: var(--text-light);
}

.category-card:hover h3 {
    color: var(--text-light);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-card:hover .category-icon {
    color: var(--text-light);
}

.category-card h3 {
    margin-bottom: 0.5rem;
}

.category-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter {
    padding: 5rem 0;
    background-color: var(--primary-light);
    color: var(--text-light);
}

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

.newsletter-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.privacy-note a {
    color: var(--text-light);
    text-decoration: underline;
}

/* =================== 
   Blog Post Page
=================== */

.blog-post-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
}

.blog-post-header h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
    max-width: 800px;
}

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

.post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.featured-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.post-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body ul {
    list-style: disc;
}

.post-body ol {
    list-style: decimal;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-image {
    margin: 2.5rem 0;
    text-align: center;
}

.post-image img {
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.image-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.practice-box, .technique-box {
    background-color: var(--background-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.practice-box h4, .technique-box h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.key-takeaways {
    background-color: var(--primary-light);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.key-takeaways h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.key-takeaways ul {
    padding-left: 1.5rem;
}

.key-takeaways li {
    margin-bottom: 0.5rem;
}

.oil-profile {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background-color: var(--background-off-white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.oil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oil-details {
    padding: 1.5rem;
}

.oil-details h3 {
    margin-bottom: 0.5rem;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tool-item {
    background-color: var(--background-off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.tool-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tool-item p {
    margin-bottom: 0;
}

.author-box {
    display: flex;
    align-items: center;
    background-color: var(--background-off-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.author-image {
    width: 100px;
    margin-right: 1.5rem;
}

.author-image img {
    border-radius: 50%;
}

.author-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.author-info h4 {
    margin-bottom: 0.75rem;
}

.author-info p {
    margin-bottom: 0;
}

.post-tags {
    margin-bottom: 2rem;
}

.post-tags span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.post-tags a {
    display: inline-block;
    background-color: var(--background-off-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin: 0.25rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.share-post {
    margin-bottom: 3rem;
}

.share-post h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-share {
    display: flex;
    gap: 0.75rem;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-off-white);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.prev-post, .next-post {
    max-width: 45%;
}

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

.prev-post p, .next-post p {
    margin-bottom: 0;
    font-weight: 600;
}

.related-posts {
    margin-bottom: 3rem;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h4 {
    padding: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.comments-section {
    margin-bottom: 3rem;
}

.comments-section h3 {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    margin-bottom: 2rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
}

.comment-avatar img {
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-meta h4 {
    margin-bottom: 0;
}

.comment-meta span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comment p {
    margin-bottom: 0.75rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-actions a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comment-actions a:hover {
    color: var(--primary-color);
}

.comment.reply {
    margin-left: 3rem;
    margin-top: 1.5rem;
}

.comment-form h3 {
    margin: 2rem 0 1.5rem;
}

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

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

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

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.author-profile {
    text-align: center;
}

.author-profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.author-profile h4 {
    margin-bottom: 0.5rem;
}

.author-profile p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-off-white);
}

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

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post a {
    display: flex;
    gap: 1rem;
}

.popular-post img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.popular-post span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.categories ul li {
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.categories ul li:last-child {
    border-bottom: none;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
}

.categories ul li a span {
    color: var(--text-muted);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    display: inline-block;
    background-color: var(--background-off-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.sidebar-widget.cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.sidebar-widget.cta h3 {
    color: var(--text-light);
}

.sidebar-widget.cta h3::after {
    background-color: var(--text-light);
    left: 50%;
    transform: translateX(-50%);
}

.sidebar-widget.cta p {
    margin-bottom: 1.5rem;
}

/* =================== 
   About Page
=================== */

.about-intro {
    padding: 5rem 0;
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

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

.core-values {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.our-story {
    padding: 5rem 0;
}

.our-story .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.story-content h2 {
    margin-bottom: 1.5rem;
}

.our-team {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.team-grid {
    display: grid;
    grid-gap: 3rem;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-credentials {
    margin-top: 1.5rem;
}

.member-credentials span {
    display: block;
    background-color: var(--background-off-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.our-space {
    padding: 5rem 0;
}

.gallery-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.gallery-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.space-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: var(--background-off-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    margin-bottom: 0;
}

.our-partners {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner img {
    max-width: 150px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.community-impact {
    padding: 5rem 0;
}

.community-impact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-content h2 {
    margin-bottom: 1.5rem;
}

.impact-list {
    margin: 2rem 0;
}

.impact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.impact-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 30px;
}

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

/* =================== 
   Contact Page
=================== */

.contact-info-section {
    padding: 5rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1rem;
}

.contact-card a.btn {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-off-white);
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact-main {
    padding-bottom: 5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-form-container p {
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 2rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.location-details h3 {
    margin-bottom: 1.5rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.transport-option {
    display: flex;
    align-items: flex-start;
}

.transport-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 30px;
    margin-top: 0.25rem;
}

.transport-option h4 {
    margin-bottom: 0.5rem;
}

.transport-option p {
    margin-bottom: 0;
}

.booking-info {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.booking-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.booking-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.booking-card h3 {
    margin-bottom: 1rem;
}

.booking-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.opening-hours {
    padding: 5rem 0;
}

.opening-hours .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hours-content h2 {
    margin-bottom: 2rem;
}

.hours-table {
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.hours-note {
    color: var(--text-muted);
    font-style: italic;
}

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

.faq-contact {
    padding: 5rem 0;
    background-color: var(--background-off-white);
}

/* =================== 
   Media Queries
=================== */

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .services-intro .container,
    .our-story .container,
    .gift-cards .container,
    .community-impact .container,
    .opening-hours .container,
    .about-intro .container {
        grid-template-columns: 1fr;
    }
    
    .intro-image, .story-image, .gift-image, .impact-image, .hours-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .post-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    #countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .member-image img {
        height: 300px;
    }
    
    .oil-profile {
        grid-template-columns: 1fr;
    }
    
    .oil-image img {
        height: 200px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-bottom: 1rem;
    }
    
    .comment.reply {
        margin-left: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.25rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
