/* Atelier Schwarz - Luxury Fashion Website Stylesheet */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #1a1a1a;
    background-color: #fafaf8;
    font-weight: 300;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

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

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

.site-header {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    position: relative;
}

.main-nav a.active {
    color: #b8975f;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b8975f;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.lang-switcher a {
    font-weight: 300;
}

.lang-switcher a.active {
    color: #b8975f;
    font-weight: 400;
}

.separator {
    color: #ccc;
}

@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

.site-footer {
    margin-top: 8rem;
    padding: 3rem 0;
    border-top: 1px solid #e8e8e8;
    background-color: #fff;
}

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

.footer-info p {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #666;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.hero {
    padding: 8rem 0;
    text-align: center;
    background-color: #fff;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
    background-color: #1a1a1a;
    color: #fff;
    opacity: 1;
}

.content-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.125rem;
    color: #666;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

.service-item {
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: #666;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.portfolio-item {
    position: relative;
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.portfolio-category {
    font-size: 0.875rem;
    color: #999;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-item {
    border-top: 1px solid #e8e8e8;
    padding-top: 2rem;
}

.blog-date {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #1a1a1a;
}

.blog-link:hover {
    opacity: 1;
    border-bottom-color: #b8975f;
    color: #b8975f;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.blog-post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.blog-post-date {
    font-size: 0.875rem;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    margin-bottom: 2rem;
}

.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.blog-post-content p {
    margin-bottom: 1.8rem;
}

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

.press-item {
    padding: 2rem;
    border: 1px solid #e8e8e8;
    transition: border-color 0.3s ease;
}

.press-item:hover {
    border-color: #b8975f;
}

.press-date {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.press-outlet {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.press-title {
    color: #666;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.client-item {
    padding: 2rem;
}

.client-name {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #b8975f;
}

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

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #1a1a1a;
    background-color: transparent;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.error {
    border-color: #d32f2f !important;
}

.error-message {
    color: #d32f2f;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    padding: 1.5rem;
    background-color: #f0f8f0;
    border: 1px solid #4caf50;
    color: #2e7d32;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.text-uppercase {
    text-transform: uppercase;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

.admin-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 0;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header a {
    color: #fff;
}

.admin-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.admin-content {
    padding: 3rem 0;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.admin-table th {
    background-color: #f5f5f5;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-danger {
    border-color: #d32f2f;
    color: #d32f2f;
}

.btn-danger:hover {
    background-color: #d32f2f;
    color: #fff;
}

.login-container {
    max-width: 400px;
    margin: 8rem auto;
    padding: 3rem;
    border: 1px solid #e8e8e8;
    background-color: #fff;
}

.login-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
