/* Import Google Fonts for better typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fefefe;
    font-size: 16px;
    transition: overflow 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Wide screen container adjustments */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 60px;
    }
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #1a4d20 0%, #2d6b35 50%, #4a9c59 100%);
    box-shadow: 0 4px 20px rgba(26, 77, 32, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100px;
}

/* Wide screen navigation adjustments */
@media (min-width: 1600px) {
    .nav-container {
        max-width: 1600px;
        padding: 1.2rem 3rem;
    }
}

@media (min-width: 1920px) {
    .nav-container {
        max-width: 1800px;
        padding: 1.2rem 4rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 12px rgba(0,0,0,0.15));
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}

/* Language Switch */
.language-switch {
    display: flex;
    gap: 5px;
    margin-left: auto;
    margin-right: 2rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lang-btn:hover,
.lang-btn.active {
    background: #fff;
    color: #1a4d20;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-radius: 0 0 15px 15px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Wide screen adjustments */
@media (min-width: 1600px) {
    .nav-menu {
        width: 450px;
        right: -20px; /* Move further to the right */
    }
}

@media (min-width: 1920px) {
    .nav-menu {
        width: 500px;
        right: -50px; /* Even further right on very wide screens */
    }
}

.nav-section {
    padding: 2rem;
}

.nav-section h3 {
    color: #1a4d20;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4a9c59;
    padding-bottom: 0.5rem;
}

.nav-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-category-item {
    padding: 0.8rem 1rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.nav-category-item:hover {
    color: #1a4d20;
    border-left-color: #4a9c59;
    background: rgba(74, 156, 89, 0.1);
    transform: translateX(5px);
}

.nav-category-item:active {
    transform: translateX(3px);
}

/* Old styles (kept for backward compatibility if needed) */
.nav-category {
    margin-bottom: 1.5rem;
}

.nav-category h4 {
    color: #2d6b35;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nav-category ul {
    list-style: none;
    margin-left: 1rem;
}

.nav-category li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 0.5rem;
}

.nav-category li:hover {
    color: #1a4d20;
    border-left-color: #4a9c59;
}

/* Hero Visual Section */
.hero-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a4d20;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-brand {
    background: linear-gradient(135deg, #1a4d20 0%, #2d6b35 30%, #4a9c59 60%, #5bb96b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a6741;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 300;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #1a4d20;
    min-height: 60px;
    width: 100%;
    box-sizing: border-box;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.highlight-item i {
    color: #1a4d20;
    font-size: 1.2rem;
    width: 20px;
}

.highlight-item span {
    font-weight: 500;
    color: #2a2a2a;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #1a4d20 0%, #2d6b35 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 20px rgba(26, 77, 32, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 32, 0.4);
    background: linear-gradient(135deg, #2d6b35 0%, #1a4d20 100%);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateY(3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.featured-embroidery {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.4s ease;
    max-width: 400px;
    width: 100%;
    cursor: pointer;
}

.featured-embroidery:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.featured-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.featured-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-category {
    display: inline-block;
    background: #1a4d20;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
}

.featured-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.featured-embroidery:hover .featured-nav-overlay {
    opacity: 1;
    pointer-events: all;
}

.featured-prev,
.featured-next {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #1a4d20;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.featured-prev:hover,
.featured-next:hover {
    background: #1a4d20;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.featured-prev:active,
.featured-next:active {
    transform: scale(0.95);
}

.featured-prev {
    margin-left: 0.5rem;
}

.featured-next {
    margin-right: 0.5rem;
}

/* Content Summary Section */
.content-summary {
    padding: 4rem 0;
    background: white;
}

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

.summary-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 77, 32, 0.1);
}

.summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(26, 77, 32, 0.2);
}

.summary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a4d20 0%, #2d6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(26, 77, 32, 0.3);
}

.summary-icon i {
    color: white;
    font-size: 1.8rem;
}

.summary-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a4d20;
    margin-bottom: 1rem;
}

.summary-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Clickable summary card styles */
.clickable-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expanded-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in;
}

.expanded-content h4 {
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.expanded-content div {
    color: #666;
    white-space: pre-line;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Clickable location highlight */
/* Clickable location styling */
.clickable-location {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.clickable-location:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

/* Clickable calendar styling */
.clickable-calendar {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.clickable-calendar:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

/* Clickable contact styling */
.clickable-contact {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.clickable-contact:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.contact-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.contact-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #4a9c59 0%, #2d6b35 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.contact-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.contact-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-form {
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9c59;
    box-shadow: 0 0 0 3px rgba(74, 156, 89, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4a9c59 0%, #2d6b35 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 156, 89, 0.3);
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e9e9e9;
    color: #333;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Success and error notification variants */
.location-notification.success {
    background: linear-gradient(135deg, #27ae60 0%, #2e8b57 100%);
}

.location-notification.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Location notification styles */
.location-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4a9c59 0%, #2d6b35 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.location-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.location-notification i {
    font-size: 1rem;
    color: #ffffff;
}

/* Mobile responsiveness for notification */
@media (max-width: 768px) {
    .location-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .location-notification.show {
        transform: translateY(0);
    }
}

.expand-content {
    text-align: center;
    margin-top: 3rem;
}

.expand-button {
    background: transparent;
    border: 2px solid #1a4d20;
    color: #1a4d20;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.expand-button:hover {
    background: #1a4d20;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 32, 0.3);
}

.expand-button.expanded {
    background: #1a4d20;
    color: white;
}

.expand-button.expanded i {
    transform: rotate(180deg);
}

.expanded-text {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
    opacity: 0;
}

.expanded-text.show {
    max-height: 1000px;
    margin-top: 2rem;
    opacity: 1;
}

.expanded-text .text-block {
    background: rgba(248, 249, 250, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #1a4d20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.expanded-text p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.expanded-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-highlights {
        align-items: center;
    }
    
    .highlight-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        padding: 3rem 0;
    }
    
    .hero-split {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-highlights {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .hero-visual {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .hero-split {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .highlight-brand {
        white-space: nowrap;
        font-size: 0.95em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-highlights .highlight-item:last-child {
        grid-column: 1 / -1;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .highlight-item {
        padding: 0.8rem 0.6rem;
        font-size: 0.8rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.3rem;
        min-width: auto;
        border-left: none;
        border-top: 3px solid #1a4d20;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .highlight-item i {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}
    
    .highlight-item {
        padding: 0.6rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .hero-visual {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .highlight-brand {
        font-size: 0.9em;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .hero-visual {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .highlight-brand {
        font-size: 0.85em;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .highlight-item {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Legacy hero styles for compatibility */
.hero {
    display: none; /* Hide if still referenced elsewhere */
}

/* Content Section */
.content {
    padding: 5rem 0;
    background: #ffffff;
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
}

.text-block {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

.text-block p {
    margin-bottom: 2rem;
}

.text-block strong {
    color: #1a4d20;
    font-weight: 600;
}

/* Gallery Section */
.embroidery-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0f0ea 100%);
}

.gallery-title {
    text-align: center;
    color: #1a4d20;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #4a9c59;
    color: #2d6b35;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #4a9c59 0%, #2d6b35 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 156, 89, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Wide screen gallery adjustments */
@media (min-width: 1600px) {
    .gallery-grid {
        max-width: 1600px;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1920px) {
    .gallery-grid {
        max-width: 1800px;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
}

.gallery-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

.item-info {
    padding: 2rem;
    position: relative;
}

.item-info h3 {
    color: #1a4d20;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.4;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

.item-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.item-category {
    display: inline-block;
    background: linear-gradient(135deg, #4a9c59 0%, #2d6b35 100%);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dimensions {
    font-weight: 600;
    color: #4a9c59 !important;
    font-size: 1.1rem;
}

.price {
    font-weight: 700;
    color: #d34836 !important;
    font-size: 1.1rem;
}

.item-actions {
    margin-top: 1rem;
    text-align: center;
}

.details-button {
    background: linear-gradient(135deg, #4a9c59 0%, #2d6b35 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(74, 156, 89, 0.3);
}

.details-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 156, 89, 0.4);
    background: linear-gradient(135deg, #5bb36a 0%, #3a7d46 100%);
}

.details-button i {
    font-size: 1rem;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 77, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.gallery-item:hover .hover-overlay {
    opacity: 1;
}

.gallery-item:hover .hover-overlay {
    opacity: 1;
}

/* Remove or hide the old view-details button */
.gallery-item .view-details {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { 
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #1a4d20;
    background: #fff;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.modal-image-container {
    position: relative;
    background: #f8f6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 0 0 15px;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
    border-radius: 15px 0 0 15px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 77, 32, 0.8);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(26, 77, 32, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h3 {
    color: #1a4d20;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
}

.modal-details p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-metadata {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metadata-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.metadata-item strong {
    color: #1a4d20;
    font-size: 0.9rem;
}

.metadata-item span:last-child {
    color: #666;
    font-size: 0.9rem;
}

/* Gallery Loading State */
.gallery-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a9c59;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Filter animations */
.gallery-item.hidden {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a4d20 0%, #2d6b35 100%);
    color: #ffffff;
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.folklore-link {
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.folklore-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.folklore-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.2));
    border-radius: 6px;
}

.folklore-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

footer p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        width: 100vw;
        right: 0;
        max-height: calc(100vh - 80px);
        border-radius: 0;
    }
    
    .language-switch {
        margin-right: 1rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .content,
    .embroidery-gallery {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Modal responsive */
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-image-container {
        border-radius: 15px 15px 0 0;
        min-height: 250px;
    }
    
    .modal-image-container img {
        border-radius: 15px 15px 0 0;
        max-height: 300px;
    }
    
    .modal-info {
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .modal-metadata {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .modal-info h3 {
        font-size: 1.2rem;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* Animation for smooth transitions */
.fade-transition {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.fade-transition.active {
    opacity: 1;
}

/* Custom scrollbar for navigation menu */
.nav-menu::-webkit-scrollbar {
    width: 6px;
}

.nav-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: #4a9c59;
    border-radius: 3px;
}

.nav-menu::-webkit-scrollbar-thumb:hover {
    background: #1a4d20;
}