/* Global styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* Darker text for better contrast */
    color: #2d2d2d;
    /* Light warm background for Scandinavian warmth */
    background-color: #f8f4ec;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Reduce padding so the header bar appears slimmer while keeping the logo size */
    padding: 5px 40px;
    /* Match the header background to the page colour so the logo sits directly on the same backdrop */
    background-color: #f8f4ec;
    /* Remove border to eliminate any visible separation around the logo */
    border-bottom: none;
    text-align: center;
}

/* Wrapper to centre the logo and tagline */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo image styling: enlarge and remove margins */
.logo {
    /* Further increase the logo height by roughly 20% so it stands out */
    height: 260px;
    margin-bottom: 0;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    /* Match hero background with page background for continuity */
    background-color: #f8f4ec;
}

.hero-img {
    width: 380px;
    max-width: 100%;
    margin-right: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text {
    max-width: 500px;
    padding-top: 20px;
}

.hero-text h1 {
    margin-top: 0;
    font-size: 52px;
    color: #2d2d2d;
}

/* Tagline under the main heading */
/* Tagline styling: use same serif family as the logo with a lighter weight */
.tagline {
    font-size: 32px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 12px;
    color: #c8a675;
    line-height: 1.3;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Subtagline for additional hero messaging */
.subtagline {
    font-size: 20px;
    color: #5b5040;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.hero-text p {
    font-size: 18px;
    margin: 20px 0;
    color: #4a4a4a;
}

.cta-button {
    display: inline-block;
    padding: 12px 26px;
    margin-top: 10px;
    background-color: #c09a6a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-button:hover {
    background-color: #a47f50;
}

section {
    padding: 40px 60px;
}

section h2 {
    margin-top: 0;
    color: #c8a675;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    text-transform: none;
}

.categories ul, .venues ul {
    list-style: none;
    padding-left: 0;
}

/* Image for categories section */
.category-img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.categories li, .venues li {
    margin-bottom: 20px;
}

.categories h3 {
    margin-bottom: 5px;
    color: #333;
    font-size: 24px;
}

.categories p, .venues p, .venues li {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    font-size: 18px;
    line-height: 1.6;
}

/* Centre headings in about and venues sections */
.about h2, .venues h2 {
    text-align: center;
}

/* Centre the entire venues section for a balanced, inviting layout */
.venues {
    text-align: center;
}

.contact {
    background-color: #f3eadd;
    color: #2d2d2d;
    text-align: center;
}

/* Signature selection section */
.selection {
    background-color: #f7f2e9;
    padding: 50px 60px;
}

.selection h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #2d2d2d;
}

.selection-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.selection-item {
    background-color: #fffdfb;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.selection-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

.selection-item h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #2d2d2d;
}

.selection-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.5;
}

.selection-note {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #5b5b5b;
}

/* Difference section */
.difference {
    background-color: #f9f7f4;
    padding: 40px 60px;
}

.difference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.diff-item {
    flex: 1 1 250px;
    max-width: 33%;
}

.diff-item h3 {
    margin-top: 0;
    color: #2d2d2d;
    font-size: 24px;
    font-weight: 600;
}

.diff-item p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
}

/* How it works section */
.how-it-works {
    background-color: #f9f7f4;
    padding: 40px 60px;
}

.how-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.how-step {
    flex: 1 1 250px;
    max-width: 33%;
}

.how-step h3 {
    margin-top: 0;
    color: #2d2d2d;
    font-size: 22px;
}

.how-step p {
    color: #4a4a4a;
    font-size: 16px;
}

.contact h2 {
    color: #2d2d2d;
    font-size: 26px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #e8ded1;
    color: #2d2d2d;
    font-size: 14px;
}