/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #524f41;
    --color-secondary: #878083;
    --color-accent: #a98cb0;
    --color-light: #f5f5f0;
    --color-white: #ffffff;
    --shadow-soft: 0 8px 32px rgba(82, 79, 65, 0.1);
    --shadow-medium: 0 12px 48px rgba(82, 79, 65, 0.15);
    --shadow-strong: 0 20px 64px rgba(82, 79, 65, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-primary);
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e3 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(82, 79, 65, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 600;
}

/* Navigation Styles */
.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(169, 140, 176, 0.2);
    color: var(--color-accent);
}

/* Claymorphism Card Style */
.clay-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 8px 32px rgba(82, 79, 65, 0.12),
        0 2px 8px rgba(82, 79, 65, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clay-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 12px 48px rgba(82, 79, 65, 0.15),
        0 4px 12px rgba(82, 79, 65, 0.1);
}

.clay-card h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.clay-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.clay-card p {
    margin-bottom: 1rem;
    color: var(--color-primary);
    line-height: 1.8;
}

/* Banner Styles */
.banner {
    margin: 2rem 0;
}

.banner-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 12px 48px rgba(82, 79, 65, 0.15),
        0 4px 16px rgba(82, 79, 65, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #d0d0d0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    padding: 2.5rem;
}

.banner-text h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-text p {
    color: var(--color-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Section Styles */
.intro,
.story {
    margin: 3rem 0;
}

.section-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin: 1rem 0;
    background: #d0d0d0;
}

.feature-card h3 {
    color: var(--color-primary);
    margin: 1rem 0;
}

.feature-card p {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-grid .clay-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin: 1rem 0;
    background: #d0d0d0;
}

/* Story Image */
.story-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: 2rem auto;
    display: block;
    background: #d0d0d0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(169, 140, 176, 0.3);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(169, 140, 176, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 4px 16px rgba(82, 79, 65, 0.1);
}

.btn:hover {
    background: rgba(169, 140, 176, 0.5);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 6px 20px rgba(82, 79, 65, 0.15);
}

/* Contact Section */
.contact-section {
    margin: 3rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.contact-item p {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: rgba(82, 79, 65, 0.9);
    color: var(--color-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-menu h3 {
    color: var(--color-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 0.5rem;
}

.footer-menu ul li a {
    color: rgba(245, 245, 240, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu ul li a:hover {
    color: var(--color-accent);
}

.footer-info {
    text-align: left;
}

.footer-info p {
    margin: 0.5rem 0;
    color: rgba(245, 245, 240, 0.8);
    font-size: 0.9rem;
}

.footer-info p:first-child {
    font-weight: 600;
    color: var(--color-light);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-strong);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(82, 79, 65, 0.1);
    }

    .banner-text h2 {
        font-size: 1.8rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .clay-card {
        padding: 1.5rem;
    }

    .clay-card h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .banner-image {
        height: 250px;
    }

    .story-image {
        height: 250px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .banner-text {
        padding: 1.5rem;
    }

    .banner-text h2 {
        font-size: 1.5rem;
    }

    .clay-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .clay-card h2 {
        font-size: 1.3rem;
    }

    .clay-card h3 {
        font-size: 1.2rem;
    }

    .feature-card img,
    .content-grid .clay-card img {
        height: 200px;
    }

    .banner-image {
        height: 200px;
    }

    .story-image {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-info {
        text-align: center;
    }

    .policy-section .clay-card h1 {
        font-size: 1.8rem;
    }

    .policy-section .clay-card h2 {
        font-size: 1.3rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 -8px 32px rgba(82, 79, 65, 0.15),
        0 -2px 8px rgba(82, 79, 65, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    color: var(--color-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-banner-text a:hover {
    border-bottom-color: var(--color-accent);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 4px 16px rgba(82, 79, 65, 0.1);
}

.cookie-btn-accept {
    background: rgba(169, 140, 176, 0.4);
    color: var(--color-primary);
    border: 1px solid rgba(169, 140, 176, 0.5);
}

.cookie-btn-accept:hover {
    background: rgba(169, 140, 176, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 6px 20px rgba(169, 140, 176, 0.15);
}

.cookie-btn-decline {
    background: rgba(82, 79, 65, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(82, 79, 65, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(82, 79, 65, 0.2);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid rgba(82, 79, 65, 0.2);
}

.cookie-btn-settings:hover {
    background: rgba(82, 79, 65, 0.05);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Success Page Styles */
.success-section {
    margin: 3rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(169, 140, 176, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--color-accent);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 8px 32px rgba(169, 140, 176, 0.2);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contact Form Styles */
.contact-form-section {
    margin: 3rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-wrapper {
    padding: 2.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(82, 79, 65, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: var(--color-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(82, 79, 65, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 4px 16px rgba(169, 140, 176, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: rgba(169, 140, 176, 0.4);
    border: 1px solid rgba(169, 140, 176, 0.5);
    cursor: pointer;
}

.btn-submit:hover {
    background: rgba(169, 140, 176, 0.6);
    transform: translateY(-2px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-wrapper .contact-item {
    margin-bottom: 1.5rem;
}

.contact-info-wrapper .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info-wrapper .contact-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-wrapper .contact-item p {
    margin: 0;
    color: var(--color-secondary);
    line-height: 1.6;
}

.payment-address {
    font-family: 'Courier New', monospace;
    background: rgba(82, 79, 65, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    word-break: break-all;
    font-size: 0.9rem;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(82, 79, 65, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: var(--color-primary);
    font-weight: 500;
}

.hours-item .time {
    color: var(--color-secondary);
}

.map-section {
    margin: 3rem 0;
}

/* Policy Section */
.policy-section {
    margin: 3rem 0;
    min-height: 60vh;
}

.policy-section .clay-card h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.policy-section .clay-card h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section .clay-card h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section .clay-card ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section .clay-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--color-primary);
}

.policy-section .clay-card a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-section .clay-card a:hover {
    border-bottom-color: var(--color-accent);
}

.last-updated {
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(82, 79, 65, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info strong {
    color: var(--color-primary);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .policy-section .clay-card h1 {
        font-size: 2rem;
    }

    .policy-section .clay-card h2 {
        font-size: 1.5rem;
    }

    .policy-section .clay-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .contact-form-wrapper {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

