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

:root {
    --wine-primary: #722F37;
    --wine-secondary: #8B3A42;
    --wine-light: #A44C54;
    --wine-dark: #5A252D;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--wine-primary), var(--wine-secondary));
    color: white;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(114, 47, 55, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--wine-primary);
    border: 2px solid var(--wine-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-img {
    height: 3.5rem;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--wine-primary);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--wine-primary);
    stroke-width: 2;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav a {
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--wine-primary);
}

.hidden {
    display: none !important;
}

/* Text Utilities */
.text-wine {
    color: var(--wine-primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(114, 47, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--wine-primary);
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    stroke: var(--wine-primary);
    stroke-width: 2;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(114, 47, 55, 0.05), white, rgba(114, 47, 55, 0.05));
}

.hero-container {
    position: relative;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
}

.stat {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat {
        text-align: left;
    }
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--wine-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-image {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, rgba(114, 47, 55, 0.2), rgba(139, 58, 66, 0.2));
    border-radius: 1.5rem;
    filter: blur(2rem);
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.badge-1 {
    bottom: -1.5rem;
    left: -1.5rem;
}

.badge-2 {
    top: -1.5rem;
    right: -1.5rem;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-circle {
    width: 3rem;
    height: 3rem;
    background: rgba(114, 47, 55, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-circle svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--wine-primary);
    stroke-width: 2;
    fill: none;
}

.badge-title {
    font-weight: bold;
    color: var(--gray-900);
}

.badge-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.wine-gradient {
    background: linear-gradient(to bottom right, var(--wine-primary), var(--wine-secondary));
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--wine-primary);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.75;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wine-primary);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-link {
    opacity: 1;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: white;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    cursor: pointer;
}

.product-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    height: 20rem;
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background: var(--wine-primary);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.product-title {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Embroidery Section */
.embroidery-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.embroidery-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(3rem);
}

.decoration-1 {
    top: 0;
    right: 0;
    background: rgba(114, 47, 55, 0.05);
}

.decoration-2 {
    bottom: 0;
    left: 0;
    background: rgba(114, 47, 55, 0.05);
}

.embroidery-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

@media (min-width: 1024px) {
    .embroidery-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.embroidery-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.embroidery-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.embroidery-description {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.embroidery-features {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .embroidery-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-box {
    background: linear-gradient(to bottom right, var(--gray-50), white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-100);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.feature-title {
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.embroidery-types {
    background: linear-gradient(to right, var(--wine-primary), var(--wine-secondary));
    padding: 1.5rem;
    border-radius: 0.75rem;
    color: white;
}

.types-title {
    font-weight: bold;
    margin-bottom: 0.75rem;
}

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

.type-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.type-item svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

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

.embroidery-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.embroidery-col-offset {
    padding-top: 2rem;
}

.embroidery-img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.embroidery-img img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.embroidery-img-small img {
    height: 10rem;
}

.embroidery-stat {
    background: linear-gradient(to bottom right, var(--wine-primary), var(--wine-secondary));
    padding: 1.5rem;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.embroidery-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.embroidery-stat .stat-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Embroidery Process */
.embroidery-process {
    background: linear-gradient(to bottom right, var(--gray-50), white);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .embroidery-process {
        padding: 3rem;
    }
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--gray-600);
}

.process-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.step-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, var(--wine-primary), var(--wine-secondary));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-title {
    font-weight: bold;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

.process-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--gray-50), white);
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.contact-method:hover {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.method-title {
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.method-text {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
}

.method-text:hover {
    color: var(--wine-primary);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--wine-primary);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.form-group textarea {
    resize: none;
    font-family: inherit;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, var(--wine-primary), var(--wine-dark));
    color: white;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.75;
}

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

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
