@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Prata';
    src: url('../fonts/Prata/Prata-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ee8803;
    --primary-color-rgb: 238, 136, 3;
    --primary-dark: #d67a02;
    --accent-color: #ff9d1f;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f5f5f5;
    --white: #ffffff;
    --error-color: #dc3545;
    --success-color: #28a745;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Prata', serif;
    --container-width-desktop: 1200px;
    --container-width-tablet: 768px;
    --container-width-mobile: 100%;
    --image-size-desktop: 300px;
    --image-size-tablet: 250px;
    --image-size-mobile: 200px;
}
ul, li {
    list-style-type: none;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: var(--container-width-desktop);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'Prata';
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-family: 'Roboto';
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Roboto';
}

li {
    font-family: 'Roboto';
}

a:hover {
    color: var(--secondary-color);
}

.container h1 {
    color: #e8a107;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 300px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.product-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
}

.product-card p {
    padding: 0 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    display: block;
    padding: 0 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Craftsmanship Section */
.craftsmanship {
    padding: 4rem 0;
}

.craft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.craft-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.craft-features {
    list-style: none;
    padding: 0;
}

.craft-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.craft-features i {
    color: var(--primary-color);
}

.craft-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.user-name {
    font-weight: bold;
    color: var(--primary-color);
}

/* Custom Orders */
.custom-orders {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.custom-text p {
    margin-bottom: 2rem;
}

.custom-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom-links a {
    color: #dee2e6;
    text-align: center;
    margin: 0 auto;
}

/* Responsive Layout and Image Sizes */
@media (max-width: 1023px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .about-image {
        max-width: 350px;
    }

    .about-image img {
        max-height: 300px;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }

    .gallery-item {
        max-width: 350px;
    }

    .product-card img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .about-image {
        max-width: 300px;
    }

    .about-image img {
        max-height: 250px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .gallery-item {
        max-width: 300px;
    }

    .product-card img {
        height: 200px;
    }

    .user-avatar {
        width: 80px;
        height: 80px;
    }

    .logo-img {
        max-width: 120px;
    }
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 0.6rem 1.5rem;
}



/* Form Buttons */
.form-group button[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.form-group button[type="submit"]:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Newsletter Button */
.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Disabled Button State */
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.form-group button[type="submit"]:disabled {
    background-color: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Button with Icon */
.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-with-icon i {
    font-size: 1.1rem;
}

/* Small Button Variant */
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Large Button Variant */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Full Width Button */
.btn-full {
    width: 100%;
    display: block;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Button Styles */
@media (max-width: 768px) {

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        width: 100%;
        margin-bottom: 1rem;
    }

    .btn-group {
        flex-direction: column;
    }
}


/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    padding: 6rem 0;
}

.about-section {
    margin-bottom: 6rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
}

.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Privacy Policy and Terms & Conditions Styles */
.privacy-policy,
.terms-conditions {
    padding: 4rem 0;
}

.last-updated {
    color: #666;
    margin-bottom: 2rem;
}

.policy-section,
.terms-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.policy-section h3,
.terms-section h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.policy-section ul,
.terms-section ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.policy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Links Section */
.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Contact Section */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info li i {
    margin-top: 0.2rem;
    color: var(--white);
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    margin: 0 auto;
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section h3 {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        margin-top: 2.5rem;
        padding: 1rem 0;
    }

    .footer-bottom-content {
        padding: 0 1rem;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

    .nav-links ul {
        display: flex;
        gap: 20px;
    }

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-color);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        /* display: flex; */
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .nav-links a {
        text-decoration: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
        background-color: #dee2e6;
        text-decoration: none;
    }

    /* Animation for burger menu */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        max-width: none;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .craft-content,
    .custom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--accent-color);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.thank-you-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.thank-you-details p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.thank-you-details ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.thank-you-details li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.thank-you-details li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-text {
    padding-right: 2rem;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-features {
    list-style: none;
    padding: 0;
}

.newsletter-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.newsletter-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-group {
    margin-bottom: 1.5rem;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder,
.newsletter-form select {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--primary-color);
    line-height: 1.4;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    position: relative;
}

.checkbox-group label a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.checkbox-group label a:hover {
    color: var(--accent-color);
}

.checkbox-group label a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--accent-color);
}

/* Error state for checkbox */
.checkbox-group input[type="checkbox"].error {
    border-color: var(--error-color);
}

.checkbox-group input[type="checkbox"].error+label {
    color: var(--error-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .checkbox-group {
        margin: 1rem 0;
    }

    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .checkbox-group label {
        font-size: 0.85rem;
        gap: 4px;
        color: var(--primary-color);
    }
}

/* Responsive styles for newsletter */
@media (max-width: 1024px) {
    .newsletter-content {
        gap: 2rem;
    }

    .newsletter-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-features li {
        justify-content: center;
    }

    .newsletter-form-container {
        padding: 2rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #dee2e6;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.gallery-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }
}

/* Process Section Styles */
.process {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Process Steps */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 0;
    }

    .process h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step {
        max-width: 300px;
        margin: 0 auto;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 0.95rem;
    }
}

.story-image img {
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.materials-image img {
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.artisan-card img {
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.artisan-card {
    max-width: 300px;
}

.sustainability-image img {
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.sustainability-image {
    max-width: 300px;
}

.heritage-image img {
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.heritage-image {}

/* About Page Sections */
.our-story,
.mission-values,
.materials,
.artisans,
.sustainability,
.cultural-heritage {
    padding: 6rem 0;
}

.our-story {
    background-color: var(--light-bg);
}

.mission-values {
    background-color: white;
}

.materials {
    background-color: var(--light-bg);
}

.artisans {
    background-color: white;
}

.sustainability {
    background-color: var(--light-bg);
}

.cultural-heritage {
    background-color: white;
}

/* Section Headers */
.our-story h2,
.mission-values h2,
.materials h2,
.artisans h2,
.sustainability h2,
.cultural-heritage h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Content Grids */
.story-content,
.materials-content,
.sustainability-content,
.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Images */
.story-image,
.materials-image,
.sustainability-image,
.heritage-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.story-image img,
.materials-image img,
.sustainability-image img,
.heritage-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* Text Content */
.story-text,
.materials-text,
.sustainability-text,
.heritage-text {
    padding: 2rem;
}

.story-text h3,
.materials-text h3,
.sustainability-text h3,
.heritage-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.story-text p,
.materials-text p,
.sustainability-text p,
.heritage-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Artisans Section */
.artisans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* .artisan-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
} */

.artisan-card:hover {
    transform: translateY(-10px);
}

.artisan-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.artisan-info {
    padding: 1.5rem;
    text-align: center;
}

.artisan-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.artisan-info p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.artisan-specialty {
    color: var(--secondary-color);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .story-content,
    .materials-content,
    .sustainability-content,
    .heritage-content {
        gap: 3rem;
    }

    .artisans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .our-story,
    .mission-values,
    .materials,
    .artisans,
    .sustainability,
    .cultural-heritage {
        padding: 4rem 0;
    }

    .story-content,
    .materials-content,
    .sustainability-content,
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image,
    .materials-image,
    .sustainability-image,
    .heritage-image {
        order: -1;
    }

    .story-image img,
    .materials-image img,
    .sustainability-image img,
    .heritage-image img {
        max-height: 300px;
    }

    .artisans-grid {
        grid-template-columns: 1fr;
    }

    .artisan-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .artisan-card img {
        height: 250px;
    }

    .story-text h3,
    .materials-text h3,
    .sustainability-text h3,
    .heritage-text h3 {
        font-size: 1.5rem;
    }

    .story-text p,
    .materials-text p,
    .sustainability-text p,
    .heritage-text p {
        font-size: 1rem;
    }
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-info {
        padding: 3rem 1rem;
    }

    .contact-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .contact-info-item h3 {
        font-size: 1.2rem;
    }

    .contact-info-item p {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 3rem 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.8rem;
    }

    .contact-form p {
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .map-section {
        padding: 3rem 1rem;
    }

    .map-container {
        height: 300px;
    }

    .map-section h2 {
        font-size: 1.8rem;
    }

    .map-section p {
        font-size: 1rem;
    }

    .contact-cta {
        padding: 3rem 1rem;
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .contact-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
        .story-image, .materials-image, .sustainability-image, .heritage-image {
            margin: 0 auto;
        }
}

@media (max-width: 480px) {
    .contact-info-item {
        padding: 1rem;
    }

    .contact-info-item h3 {
        font-size: 1.1rem;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 250px;
    }

    .contact-cta h2 {
        font-size: 1.5rem;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-grid img {
        max-width: 300px;
    }
}

.thanks{
    margin: 0;
}
.thank-you-content h1{
 color:red ;
}
.thank-you-actions{
    display: flex;
    flex-direction: column;
}
.thank-you-actions a{
    color: #dc3545;
}
.container-h{
    color: #634c02 !important;
}