
html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --white: #ffffff;
    --black: #000000;
    --dark-primary: #7a502a;
    --light-primary: #c49b76;
}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.header {
    color: var(--dark-primary);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}


.header h1 {
    font-family: var(--font-celtic);
    font-size: 2.5rem;
    margin: 0;
}

.header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.header::after {
    content: "";
    display: block;
    height: 3px;
    background: var(--light-primary);
    width: 80%;
    margin: 1rem auto 0;
}

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

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro h2 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    font-size: 1.8rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.image-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.image-placeholder {
    width: 400px;
    height: 320px;
    background-color: var(--light-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-celtic);
    font-size: 1.5rem;
    border: 3px solid var(--bg-color-brown);
}

.engagement-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.engagement-section h3 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--light-primary);
    padding-bottom: 0.5rem;
}

.process-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.process-section h3 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--light-primary);
    padding-bottom: 0.5rem;
}

.process-steps {
    margin-top: 1.5rem;
}

.step {
    display: flex;
    margin-bottom: 1.5rem;
}

.step-number {
    background-color: var(--bg-color-brown);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    color: var(--dark-primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.whats-included {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.whats-included h3 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--light-primary);
    padding-bottom: 0.5rem;
}

.included-items {
    columns: 2;
    column-gap: 2rem;
    margin-top: 1rem;
}

.included-item {
    margin-bottom: 0.5rem;
    break-inside: avoid;
    display: flex;
    align-items: baseline;
}

.included-item::before {
    content: "✓";
    color: var(--dark-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.price-section h3 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--light-primary);
    padding-bottom: 0.5rem;
}

.price-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 1.5rem;
}

.price-option {
    background-color: #f9f5f0;
    border: 2px solid var(--light-primary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    width: 40%;
    margin-bottom: 1rem;
}

.price-option h4 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin-top: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-primary);
    margin: 1rem 0;
}

.colors {
    font-style: italic;
    margin-bottom: 1rem;
}

.reservation-btn {
    display: block;
    background-color: var(--btn-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    margin: 2rem auto;
    max-width: 300px;
}

.reservation-btn:hover {
    background-color: var(--dark-primary);
}

.engagement-quote {
    font-style: italic;
    background-color: #f9f5f0;
    border-left: 4px solid var(--dark-primary);
    padding: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .included-items {
        columns: 1;
    }
    
    .price-options {
        flex-direction: column;
        align-items: center;
    }
    
    .price-option {
        width: 80%;
    }
}