@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #fdf7f0;
    color: #4a2f27;
    text-align: center;
}

.luxury-header {
    background: linear-gradient(to right, #e6b980, #eacda3);
    color: white;
    padding: 60px 0;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

/* Struktura sekcji */
.section-box {
    padding: 60px 30px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Logo */
.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

/* Lista usług */
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 500px;
}

.service-list li {
    padding: 12px;
    margin-bottom: 10px;
    background: #f7e7ce;
    color: #4a2f27;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

/* Animacje */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efekty hover */
.service-list li:hover {
    background: #e6b980;
    color: white;
    transition: all 0.3s ease-in-out;
}
