/* ===================================
   MOBILE-FIRST DESIGN
   Base styles are for mobile devices
   Media queries add complexity for larger screens
   =================================== */

/* Scramble Font (anti-scraping) */
@font-face {
    font-family: 'SF';
    src: url('/fonts/scramble.woff2') format('woff2');
    font-display: block;
}

.sf {
    font-family: 'SF', sans-serif;
    -webkit-user-select: none;
    user-select: none;
    font-size: 1rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3e2f;
    background-color: #f5f7f5;
    font-size: 16px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation - Mobile First */
header {
    background-color: #3d5a40;
    color: #f5f7f5;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(61, 90, 64, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Hamburger Menu Button (Mobile Only) */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    width: 2rem;
    height: 0.25rem;
    background-color: #f5f7f5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Navigation Wrapper - Slides from right on mobile */
.nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background-color: #3d5a40;
    transition: right 0.3s ease;
    padding-top: 4rem;
    box-shadow: -2px 0 10px rgba(61, 90, 64, 0.2);
    overflow-y: auto;
}

.nav-wrapper.active {
    right: 0;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background-color: #588157;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
}

.lang-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.875rem;
    font-weight: 600;
}

.lang-link:hover,
.lang-link.active {
    background-color: #588157;
}

.lang-separator {
    color: rgba(255,255,255,0.5);
}

hr {
    margin-top: 2.0rem;
    margin-bottom: 2.0rem;
    border: none;
    border-top: 2px solid #d4e5d4;
}

/* Main Content */
main {
    background-color: #ffffff;
    margin: 1rem auto;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(61, 90, 64, 0.08);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 0; /* Remove bottom margin on mobile to eliminate gap */
}

.hero-content {
    text-align: center;
    order: 2;
}

.hero-content p {
    margin-bottom: 1.5rem;
    color: #4a5f4c;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

.hero-content a {
    color: #3d5a40;
    text-decoration: none;
    font-weight: 600;
    transition: text-decoration 0.3s;
}

.hero-content a:hover {
    text-decoration: underline;
}

.hero-image {
    order: 1;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(61, 90, 64, 0.12);
}

.hero h1 {
    font-size: 1.75rem;
    color: #3d5a40;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tagline {
    font-size: 1rem;
    color: #6b8e70;
    font-style: italic;
    line-height: 1.6;
}

/* Services Section */
.services {
    margin: 3rem 0;
    padding: 3rem 0;
    text-align: center;
    background-color: #edf3ed;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.services h2 {
    font-size: 1.75rem;
    color: #3d5a40;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(61, 90, 64, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(61, 90, 64, 0.12);
}

.service-icon {
    color: #588157;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #3d5a40;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #4a5f4c;
    line-height: 1.6;
}

/* Values Section */
.values {
    margin: 3rem 0;
    padding: 2rem 0;
    text-align: center;
}

.values h2 {
    font-size: 1.75rem;
    color: #3d5a40;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background-color: #edf3ed;
    border-radius: 12px;
    border-left: 4px solid #588157;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #3d5a40;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #4a5f4c;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid #d4e5d4;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    color: #3d5a40;
}

/* About Content (About Page) */
.about-content {
    padding: 2rem 0;
    margin-bottom: 0; /* Remove bottom margin on mobile to eliminate gap */
}

.about-content.sub {
    padding: 0 0 2rem 0;
}

.about-content.calendar {
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-image {
    margin-bottom: 2rem;
    text-align: center;
}

.offer-image {
    display: none; /* Hidden on mobile for offer pages only */
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(61, 90, 64, 0.12);
}

.about-content h1,
.about-text h1 {
    font-size: 1.75rem;
    color: #3d5a40;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-text h2 {
    color: #3d5a40;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text.sub h2 {
    margin-top: 0rem;
}

.about-text h3 {
    color: #3d5a40;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.about-text h4 {
    color: #3d5a40;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-text h5,
.about-text h6 {
    color: #3d5a40;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.about-text {
    padding-bottom: 1.5rem; /* Add padding on mobile to contain the link spacing */
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a5f4c;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-text p:has(+ ul),
.about-text p:has(+ ol) {
    margin-bottom: 0;
}

.about-text a {
    color: #3d5a40;
    text-decoration: none;
    font-weight: 600;
    transition: text-decoration 0.3s;
}

.about-text a:hover {
    text-decoration: underline;
}

.about-text p.intro {
    font-size: 1.1rem;
    color: #4a5f4c;
    font-weight: 500;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-text ul li {
    color: #4a5f4c;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-text ol {
    margin-left: 1.0rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.about-text ol li {
    color: #4a5f4c;
    line-height: 1.7;
    font-size: 1.05rem;
}

.offer-list,
.qualifications-list {
    list-style: none;
    margin-left: 0;
}

.offer-list li,
.qualifications-list li {
    padding-left: 1.5rem;
    position: relative;
}

.offer-list li:before,
.qualifications-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #588157;
    font-weight: bold;
}

/* Offer Related Links */
.offer-intro {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #3d5a40;
}

.offer-related-links {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #888;
}

.offer-related-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.offer-related-links a:hover {
    color: #588157;
    text-decoration: underline;
}

/* Secondary content (smaller text) */
.secondary {
    font-size: 0.9rem;
}

.secondary h2 {
    font-size: 1.1rem;
}

.secondary p,
.about-text .secondary ul li,
.about-text .secondary ol li {
    font-size: 0.9rem;
}

/* ===================================
   Shop
   =================================== */

.shop-grid-section {
    padding: 2rem 0;
}

.shop-grid-section h1 {
    color: #3d5a40;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.shop-intro {
    color: #4a5f4c;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.shop-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(61, 90, 64, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 90, 64, 0.15);
}

.shop-card-body {
    padding: 1.25rem;
}

.shop-card-body h2 {
    color: #3d5a40;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.shop-card-body p {
    color: #4a5f4c;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3d5a40;
}

.shop-product-detail {
    padding: 2rem 0;
}

.shop-product-detail {
    .sf {
        font-size: 0.9rem;
    }
}

.shop-back-link {
    display: inline-block;
    color: #588157;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.shop-back-link:hover {
    text-decoration: underline;
}

.shop-product-detail h1 {
    color: #3d5a40;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.product-detail-description p {
    color: #4a5f4c;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.product-info-box {
    background: #f5f7f5;
    border-left: 3px solid #588157;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.product-info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-info-box li {
    color: #4a5f4c;
    font-size: 0.95rem;
    line-height: 1.8;
}

.product-price-box {
    margin-bottom: 1.5rem;
}

.product-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3d5a40;
    margin-bottom: 0.25rem;
}

.product-price-vat {
    color: #888;
    font-size: 0.85rem;
}

.shop-order-btn {
    display: inline-block;
    margin-bottom: 1rem;
}

.shop-terms-link {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2rem;
}

.shop-terms-link a {
    color: #888;
    text-decoration: none;
}

.shop-terms-link a:hover {
    color: #588157;
    text-decoration: underline;
}

.product-how-to-buy {
    background: #edf3ed;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.product-how-to-buy h3 {
    color: #3d5a40;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.product-how-to-buy ol {
    margin: 0;
    padding-left: 1.25rem;
}

.product-how-to-buy li {
    color: #4a5f4c;
    font-size: 0.95rem;
    line-height: 1.8;
}

.shop-seller-info {
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.shop-seller-info h3 {
    color: #4a5f4c;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.shop-seller-info p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Shop Order Form */
.order-form-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.order-form-section h2 {
    color: #3d5a40;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

.order-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #588157;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5f4c;
}

.checkbox-group span a {
    color: #588157;
    text-decoration: none;
}

.checkbox-group span a:hover {
    color: #3d5a40;
    text-decoration: underline;
}

.g-recaptcha {
    margin: 1rem 0;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #588157;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(61, 90, 64, 0.15);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover:not(:disabled) {
    background-color: #4a6e49;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 90, 64, 0.2);
}

.btn-primary:disabled,
.btn-primary:disabled:hover {
    background-color: #b0b0b0;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Call to Action */
.cta {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: #edf3ed;
    margin: 3rem -1.5rem -1.5rem -1.5rem;
    border-radius: 0 0 12px 12px;
}

.cta h2 {
    color: #3d5a40;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta p {
    margin-bottom: 2rem;
    color: #4a5f4c;
    font-size: 1.05rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #588157;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(61, 90, 64, 0.15);
}

.btn:hover {
    background-color: #4a6e49;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 90, 64, 0.2);
}

.btn-secondary {
    background-color: #6b8e70;
}

.btn-secondary:hover {
    background-color: #5a7a5f;
}

/* LinkedIn Link */
.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
    margin: 0.5rem 0;
}

.linkedin-link:hover {
    background-color: #006399;
    transform: translateY(-2px);
}

.linkedin-link::before {
    content: "in";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: white;
    color: #0077b5;
    border-radius: 2px;
    text-align: center;
    line-height: 1.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Footer */
footer {
    background-color: #3d5a40;
    color: #f5f7f5;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

footer p {
    font-size: 0.875rem;
}

/* Placeholder Content */
.placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b8e70;
}

.placeholder h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #3d5a40;
}

.placeholder h2 {
    color: #3d5a40;
}

/* Calendar Page */
.calendar-intro {
    padding-top: 3rem;
    margin-bottom: 2rem;
    color: #6b8e70;
}

.calendar-intro h2 {
    font-size: 1.5rem;
    color: #3d5a40;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.calendar-intro h2:first-child {
    margin-top: 0;
}

.calendar-intro p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.calendar-intro a {
    color: #3d5a40;
    text-decoration: none;
    font-weight: 500;
}

.calendar-intro a:hover {
    text-decoration: underline;
}

.calendar-widget {
    /*margin: 0 -1.5rem 0 -1.5rem;*/
    /*background-color: #edf3ed;*/
    /*border-radius: 0 0 12px 12px;*/
}

/* ===================================
   TABLET BREAKPOINT (768px and up)
   =================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    /* Hide hamburger on tablet and desktop */
    .hamburger {
        display: none;
    }

    /* Reset navigation wrapper for desktop */
    .nav-wrapper {
        position: static;
        height: auto;
        width: auto;
        max-width: none;
        background-color: transparent;
        padding-top: 0;
        box-shadow: none;
        overflow-y: visible;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo a {
        font-size: 1.25rem;
    }

    .nav-menu {
        flex-direction: row;
        gap: 0.3rem;
        width: auto;
        padding: 0;
        font-size: 0.875rem;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }

    .lang-switcher {
        padding: 0;
        border-top: none;
        margin-top: 0;
    }

    main {
        margin: 2rem auto;
        padding: 2.5rem;
    }

    .hero {
        display: block; /* Remove flexbox for float layout */
        padding: 3rem 0;
        margin-bottom: 3rem; /* Restore margin on tablet/desktop */
    }

    .hero::after {
        content: "";
        display: table;
        clear: both;
    }

    .hero-content {
        text-align: left;
    }

    .hero-image {
        float: right;
        width: 32%;
        margin-left: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .services {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

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

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

    .cta {
        padding: 4rem 2rem;
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        margin-bottom: -2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content {
        display: block; /* Remove grid for float layout */
        padding: 3rem 0;
        margin-bottom: 3rem; /* Restore margin on tablet/desktop */
    }

    .about-content.calendar {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .about-content::after {
        content: "";
        display: table;
        clear: both;
    }

    .about-image {
        float: left;
        width: 32%;
        margin-right: 3rem;
        margin-bottom: 1.5rem;
    }

    .about-image img {
        max-width: 100%;
    }

    .offer-image {
        display: block; /* Show on tablet and desktop for offer pages */
    }

    .about-text {
        padding-bottom: 0; /* Reset padding on tablet/desktop */
    }

    .about-content h1,
    .about-text h1 {
        font-size: 2.25rem;
    }

    .offer-related-links {
        margin-bottom: 0.5rem; /* Minimal margin on tablet/desktop */
    }

    .cta {
        padding: 3rem 2rem;
        margin: 2rem -2.5rem -2.5rem -2.5rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .placeholder {
        padding: 4rem 2rem;
    }

    .placeholder h1 {
        font-size: 2rem;
    }

    .calendar-widget {
        /*margin: 0 -2.5rem 0 -2.5rem;*/
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-product-detail {
        max-width: 700px;
    }
}

/* ===================================
   DESKTOP BREAKPOINT (1024px and up)
   =================================== */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }

    .nav-menu {
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .about-content h1,
    .about-text h1 {
        font-size: 2.75rem;
    }

    .services h2,
    .values h2 {
        font-size: 2rem;
    }

    .service-card h3,
    .value-card h3 {
        font-size: 1.35rem;
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
