
.btn-primary {
    background-color: #8a5d33;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background-color: #6d3325;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(130, 60, 46, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(130, 60, 46, 0.3);
}

.btn-menu {
    background-color: #823c2e;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-menu:hover {
    background-color: #6d3325;
    box-shadow: 0 4px 12px rgba(130, 60, 46, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: #8d5d4a;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.875rem 2.5rem;
    border: 2px solid #8d5d4a;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8d5d4a;
    color: #fff;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    fill: #8d5d4a;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    letter-spacing: -0.01em;
}

.logo-image {
    height: 110px;
    width: 110px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    margin: -20px 0;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-title {
    font-size: 1.5rem;
    color: #7d4e3d;
    margin-bottom: 1rem;
    font-weight: 400;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

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

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    color: #7d4e3d;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #8d5d4a;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #8d5d4a;
}

.nav-link.active {
    color: #8d5d4a;
    font-weight: 500;
}

.input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input:focus {
    outline: none;
    border-color: #8d5d4a;
    box-shadow: 0 0 0 3px rgba(141, 93, 74, 0.1);
}

.textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.textarea:focus {
    outline: none;
    border-color: #8d5d4a;
    box-shadow: 0 0 0 3px rgba(141, 93, 74, 0.1);
}

.label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-center { justify-content: center; align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

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

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .container, .container-narrow {
        padding: 0 1.5rem;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
    transition: filter 0.3s ease;
}

body.popup-open {
    overflow: hidden;
}

body.popup-open > *:not(.typeform-popup) {
    filter: blur(5px);
    pointer-events: none;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 600;
    color: #7d4e3d;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #7d4e3d;
    line-height: 1.2;
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #7d4e3d;
    line-height: 1.3;
}

p {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
    padding: 1.5rem 0;
    opacity: 0.75;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    transform: scale(1.25);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    margin-bottom: 0.5rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0.75;
    filter: blur(0.2px);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content .btn-primary {
    text-decoration: none;
    display: inline-block;
}

.hero-content .btn-primary:hover {
    color: #e2c393;
    background-color: #fffff;
}

.services-section {
    background-color: #fafafa;
    padding: 5rem 0;
}

.services-title {
    font-size: 3rem;
    font-weight: 400;
    color: #7d4e3d;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.service-name {
    font-size: 1.75rem;
    font-weight: 400;
    color: #7d4e3d;
    margin: 0;
}

.service-price {
    font-size: 1.25rem;
    color: #333;
    font-weight: 400;
}

.btn-service {
    background-color: #823c2e;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-service:hover {
    background-color: #6d3325;
    box-shadow: 0 4px 12px rgba(130, 60, 46, 0.3);
}

.info-section {
    background-color: #fafafa;
    padding: 5rem 0;
    border-top: 1px solid #d4b5a5;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.info-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #7d4e3d;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.info-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.btn-info {
    background-color: #823c2e;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn-info:hover {
    background-color: #6d3325;
    box-shadow: 0 4px 12px rgba(130, 60, 46, 0.3);
}

.info-image-small {
    width: 280px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 1rem;
}

.info-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

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

.events-section {
    background-color: #fafafa;
    padding: 5rem 0;
}

.events-title {
    font-size: 3rem;
    font-weight: 400;
    color: #7d4e3d;
    text-align: center;
    margin-bottom: 4rem;
}

.events-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background-color: #fff;
    border: 1px solid #d4b5a5;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.event-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #7d4e3d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-link {
    color: #7d4e3d;
    text-decoration: underline;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: #8d5d4a;
}

.btn-event {
    background-color: #823c2e;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-event:hover {
    background-color: #6d3325;
    box-shadow: 0 4px 12px rgba(130, 60, 46, 0.3);
}

.typeform-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.typeform-popup.active {
    opacity: 1;
    visibility: visible;
}

.typeform-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.typeform-popup-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    max-height: 700px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.typeform-popup.active .typeform-popup-content {
    transform: scale(1);
    opacity: 1;
}

.typeform-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typeform-popup-close:hover {
    background-color: #823c2e;
    color: #fff;
    transform: rotate(90deg);
}

.typeform-popup-close svg {
    width: 20px;
    height: 20px;
}

.typeform-popup-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, #8a5d33 0%, #7d4e3d 100%);
    color: #fff;
    text-align: center;
}

.typeform-popup-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.typeform-popup-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.typeform-iframe-container {
    flex: 1;
    width: 100%;
    background-color: #fafafa;
    overflow: hidden;
}

.typeform-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 6rem 1.5rem 3rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .btn-service {
        width: 100%;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .info-content {
        padding: 0;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .info-image {
        min-height: 400px;
        order: -1;
    }
    
    .info-image-small {
        width: 100%;
        max-width: 280px;
    }
    
    .events-title {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .typeform-popup-content {
        width: 95%;
        height: 90vh;
        max-height: none;
    }
    
    .typeform-popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .typeform-popup-header h2 {
        font-size: 1.5rem;
    }
    
    .typeform-popup-header p {
        font-size: 0.9rem;
    }
    
    .typeform-popup-close {
        width: 36px;
        height: 36px;
    }
}