@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

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

:root {
--deep-sapphire: #0a1e3d;
--champagne-gold: #d4af37;
--ivory: #f8f6f0;
--accent-blue: #1a3a5c;
--soft-cream: #faf9f5;
--dark-navy: #050c18;
--gold-hover: #c19b2e;
}

body {
font-family: 'Lora', serif;
color: var(--deep-sapphire);
background-color: var(--ivory);
line-height: 1.7;
overflow-x: hidden;
}

.main-header-block {
background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--accent-blue) 100%);
padding: 1.2rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(10, 30, 61, 0.3);
}

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

.brand-logo-image {
height: 60px;
width: auto;
filter: brightness(1.1);
}

.primary-navigation-menu {
display: flex;
gap: 2.5rem;
}

.navigation-link {
color: var(--ivory);
text-decoration: none;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 0.5px;
transition: all 0.3s ease;
position: relative;
padding-bottom: 5px;
}

.navigation-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--champagne-gold);
transition: width 0.3s ease;
}

.navigation-link:hover::after,
.navigation-link.active-page::after {
width: 100%;
}

.navigation-link:hover {
color: var(--champagne-gold);
}

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

.hero-background-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.6);
}

.hero-content-overlay {
position: relative;
z-index: 10;
text-align: center;
color: var(--ivory);
max-width: 900px;
padding: 0 2rem;
}

.hero-primary-title {
font-family: 'Playfair Display', serif;
font-size: 4.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
letter-spacing: 1px;
}

.hero-subtitle-text {
font-size: 1.6rem;
margin-bottom: 2.5rem;
font-family: 'Cormorant Garamond', serif;
font-weight: 400;
text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.primary-cta-button {
display: inline-block;
padding: 1rem 3rem;
background: var(--champagne-gold);
color: var(--deep-sapphire);
text-decoration: none;
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
border-radius: 3px;
transition: all 0.4s ease;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
letter-spacing: 1px;
}

.primary-cta-button:hover {
background: var(--gold-hover);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.editor-message-block {
padding: 6rem 0;
background: var(--soft-cream);
}

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

.editor-card-wrapper {
background: white;
padding: 4rem;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(10, 30, 61, 0.1);
}

.section-heading-primary {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: var(--deep-sapphire);
margin-bottom: 2rem;
font-weight: 600;
}

.editor-content-layout {
display: grid;
grid-template-columns: 300px 1fr;
gap: 3rem;
align-items: start;
}

.editor-portrait-image {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 6px;
box-shadow: 0 8px 25px rgba(10, 30, 61, 0.15);
}

.editor-greeting-text {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
color: var(--champagne-gold);
margin-bottom: 1rem;
font-weight: 600;
}

.editor-main-paragraph,
.editor-closing-statement {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: var(--accent-blue);
}

.editor-signature-line {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
color: var(--deep-sapphire);
margin-top: 2rem;
}

.features-showcase-section {
padding: 6rem 0;
background: white;
}

.section-heading-centered {
font-family: 'Playfair Display', serif;
font-size: 3rem;
text-align: center;
margin-bottom: 4rem;
color: var(--deep-sapphire);
font-weight: 600;
}

.features-grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}

.feature-card-item {
background: var(--soft-cream);
border-radius: 8px;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 6px 20px rgba(10, 30, 61, 0.08);
cursor: pointer;
position: relative;
}

.feature-card-item:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(10, 30, 61, 0.15);
}

.feature-card-item[data-tooltip]:hover::before {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: var(--deep-sapphire);
color: var(--ivory);
padding: 0.7rem 1.2rem;
border-radius: 5px;
font-size: 0.9rem;
white-space: nowrap;
z-index: 100;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-image-element {
width: 100%;
height: 250px;
object-fit: cover;
}

.feature-title-text {
font-family: 'Playfair Display', serif;
font-size: 1.7rem;
color: var(--deep-sapphire);
padding: 1.5rem 1.5rem 0.5rem;
font-weight: 600;
}

.feature-description-text {
padding: 0 1.5rem 2rem;
font-size: 1.05rem;
line-height: 1.7;
color: var(--accent-blue);
}

.testimonials-showcase-section {
padding: 6rem 0;
background: var(--soft-cream);
}

.testimonials-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.testimonial-card-block {
background: white;
padding: 3rem;
border-radius: 8px;
border-left: 4px solid var(--champagne-gold);
box-shadow: 0 8px 25px rgba(10, 30, 61, 0.1);
}

.testimonial-quote-text {
font-size: 1.15rem;
font-style: italic;
line-height: 1.8;
color: var(--accent-blue);
margin-bottom: 1.5rem;
}

.testimonial-author-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
font-weight: 600;
color: var(--champagne-gold);
}

.cta-booking-section {
padding: 6rem 0;
background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--accent-blue) 100%);
text-align: center;
}

.cta-heading-text {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: var(--ivory);
margin-bottom: 1.5rem;
font-weight: 600;
}

.cta-description-text {
font-size: 1.3rem;
color: var(--soft-cream);
margin-bottom: 2.5rem;
}

.secondary-cta-button {
display: inline-block;
padding: 1rem 3rem;
background: var(--champagne-gold);
color: var(--deep-sapphire);
text-decoration: none;
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
border-radius: 3px;
transition: all 0.4s ease;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
letter-spacing: 1px;
}

.secondary-cta-button:hover {
background: var(--gold-hover);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.primary-footer-block {
background: var(--dark-navy);
color: var(--ivory);
padding: 4rem 0 2rem;
}

.footer-columns-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-heading-title {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
margin-bottom: 1.5rem;
color: var(--champagne-gold);
font-weight: 600;
}

.footer-info-text,
.footer-contact-detail {
font-size: 1rem;
line-height: 1.8;
color: var(--soft-cream);
margin-bottom: 0.8rem;
}

.footer-registration-info {
font-size: 0.95rem;
color: var(--champagne-gold);
margin-top: 1rem;
font-weight: 500;
}

.footer-navigation-menu,
.footer-legal-links {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.footer-nav-link,
.footer-legal-link {
color: var(--soft-cream);
text-decoration: none;
transition: color 0.3s ease;
font-size: 1rem;
}

.footer-nav-link:hover,
.footer-legal-link:hover {
color: var(--champagne-gold);
}

.footer-bottom-bar {
border-top: 1px solid rgba(248, 246, 240, 0.2);
padding-top: 2rem;
text-align: center;
}

.copyright-text {
font-size: 0.95rem;
color: var(--soft-cream);
}

.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--accent-blue) 100%);
color: var(--ivory);
padding: 2rem;
box-shadow: 0 -4px 20px rgba(10, 30, 61, 0.3);
z-index: 10000;
display: none;
}

.cookie-consent-banner.show {
display: block;
}

.cookie-content-wrapper {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}

.cookie-message-text {
flex: 1;
font-size: 1rem;
line-height: 1.6;
}

.cookie-buttons-group {
display: flex;
gap: 1rem;
align-items: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
padding: 0.8rem 2rem;
border: none;
border-radius: 3px;
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}

.cookie-btn-accept {
background: var(--champagne-gold);
color: var(--deep-sapphire);
}

.cookie-btn-accept:hover {
background: var(--gold-hover);
transform: translateY(-2px);
}

.cookie-btn-decline {
background: transparent;
color: var(--ivory);
border: 2px solid var(--ivory);
}

.cookie-btn-decline:hover {
background: rgba(248, 246, 240, 0.1);
}

.cookie-link-policy {
color: var(--champagne-gold);
text-decoration: underline;
margin-left: 1rem;
transition: color 0.3s ease;
}

.cookie-link-policy:hover {
color: var(--gold-hover);
}

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

.page-hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.5);
}

.page-hero-overlay {
position: relative;
z-index: 10;
text-align: center;
color: var(--ivory);
padding: 0 2rem;
}

.page-hero-title {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
font-size: 1.4rem;
font-family: 'Cormorant Garamond', serif;
text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.about-story-section {
padding: 6rem 0;
background: white;
}

.story-content-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.story-paragraph-text {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: var(--accent-blue);
}

.story-feature-image {
width: 100%;
height: 450px;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(10, 30, 61, 0.15);
}

.team-members-section {
padding: 6rem 0;
background: var(--soft-cream);
}

.team-grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
}

.team-member-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(10, 30, 61, 0.1);
transition: transform 0.4s ease;
}

.team-member-card:hover {
transform: translateY(-8px);
}

.team-member-photo {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member-name {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: var(--deep-sapphire);
padding: 1.5rem 1.5rem 0.5rem;
font-weight: 600;
}

.team-member-position {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
color: var(--champagne-gold);
padding: 0 1.5rem 0.5rem;
font-weight: 600;
}

.team-member-bio {
padding: 0 1.5rem 2rem;
font-size: 1rem;
line-height: 1.7;
color: var(--accent-blue);
}

.values-mission-section {
padding: 6rem 0;
background: white;
}

.values-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
}

.value-item-card {
background: var(--soft-cream);
padding: 2.5rem;
border-radius: 8px;
border-top: 4px solid var(--champagne-gold);
box-shadow: 0 6px 20px rgba(10, 30, 61, 0.08);
}

.value-title-heading {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: var(--deep-sapphire);
margin-bottom: 1rem;
font-weight: 600;
}

.value-description-text {
font-size: 1.05rem;
line-height: 1.7;
color: var(--accent-blue);
}

.blog-listing-section {
padding: 6rem 0;
background: white;
}

.blog-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.blog-post-card {
background: var(--soft-cream);
border-radius: 8px;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 6px 20px rgba(10, 30, 61, 0.08);
}

.blog-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(10, 30, 61, 0.15);
}

.blog-card-link {
text-decoration: none;
color: inherit;
display: block;
}

.blog-post-thumbnail {
width: 100%;
height: 250px;
object-fit: cover;
}

.blog-card-content {
padding: 2rem;
}

.blog-post-title {
font-family: 'Playfair Display', serif;
font-size: 1.6rem;
color: var(--deep-sapphire);
margin-bottom: 1rem;
font-weight: 600;
line-height: 1.4;
}

.blog-post-excerpt {
font-size: 1.05rem;
line-height: 1.7;
color: var(--accent-blue);
margin-bottom: 1.5rem;
}

.blog-read-more {
color: var(--champagne-gold);
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
font-size: 1.1rem;
}

.contact-information-section {
padding: 6rem 0;
background: white;
}

.contact-layout-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
}

.contact-intro-text {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
color: var(--accent-blue);
}

.contact-info-block {
margin-bottom: 2rem;
}

.contact-info-heading {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
color: var(--deep-sapphire);
margin-bottom: 0.8rem;
font-weight: 600;
}

.contact-info-detail {
font-size: 1.05rem;
line-height: 1.7;
color: var(--accent-blue);
}

.contact-link-element {
color: var(--champagne-gold);
text-decoration: none;
transition: color 0.3s ease;
}

.contact-link-element:hover {
color: var(--gold-hover);
}

.contact-submission-form {
background: var(--soft-cream);
padding: 3rem;
border-radius: 8px;
box-shadow: 0 8px 25px rgba(10, 30, 61, 0.1);
}

.form-group-wrapper {
margin-bottom: 1.8rem;
}

.form-label-text {
display: block;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
color: var(--deep-sapphire);
margin-bottom: 0.6rem;
font-weight: 600;
}

.form-input-field,
.form-textarea-field {
width: 100%;
padding: 1rem;
border: 2px solid var(--ivory);
border-radius: 4px;
font-family: 'Lora', serif;
font-size: 1rem;
transition: border-color 0.3s ease;
background: white;
}

.form-input-field:focus,
.form-textarea-field:focus {
outline: none;
border-color: var(--champagne-gold);
}

.form-textarea-field {
resize: vertical;
min-height: 150px;
}

.form-submit-button {
width: 100%;
padding: 1rem 2rem;
background: var(--champagne-gold);
color: var(--deep-sapphire);
border: none;
border-radius: 4px;
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}

.form-submit-button:hover {
background: var(--gold-hover);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.map-location-section {
padding: 6rem 0;
background: var(--soft-cream);
}

.map-embed-container {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(10, 30, 61, 0.15);
}

.location-map-frame {
display: block;
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(10, 30, 61, 0.8);
z-index: 10000;
align-items: center;
justify-content: center;
}

.modal-overlay.show {
display: flex;
}

.modal-content-box {
background: white;
padding: 3rem;
border-radius: 8px;
max-width: 500px;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-heading-text {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--deep-sapphire);
margin-bottom: 1rem;
font-weight: 600;
}

.modal-message-text {
font-size: 1.2rem;
color: var(--accent-blue);
margin-bottom: 2rem;
line-height: 1.7;
}

.modal-close-button {
padding: 0.8rem 2.5rem;
background: var(--champagne-gold);
color: var(--deep-sapphire);
border: none;
border-radius: 4px;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-close-button:hover {
background: var(--gold-hover);
transform: translateY(-2px);
}

.blog-post-article {
background: white;
}

.post-hero-section {
position: relative;
height: 60vh;
overflow: hidden;
}

.post-hero-image {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.5);
}

.post-hero-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 3rem;
background: linear-gradient(to top, rgba(10, 30, 61, 0.9), transparent);
color: var(--ivory);
}

.post-main-title {
font-family: 'Playfair Display', serif;
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.post-meta-information {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
color: var(--champagne-gold);
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.post-content-container {
max-width: 900px;
margin: 0 auto;
padding: 4rem 2rem;
}

.post-paragraph-text {
font-size: 1.1rem;
line-height: 1.9;
margin-bottom: 1.8rem;
color: var(--accent-blue);
}

.post-subheading-title {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--deep-sapphire);
margin-top: 3rem;
margin-bottom: 1.5rem;
font-weight: 600;
}

@media (max-width: 1024px) {
.header-wrapper-container {
padding: 0 2rem;
}

.primary-navigation-menu {
gap: 1.5rem;
}

.hero-primary-title {
font-size: 3.5rem;
}

.story-content-layout,
.contact-layout-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.editor-content-layout {
grid-template-columns: 1fr;
}

.cookie-content-wrapper {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 768px) {
.hero-primary-title {
font-size: 2.5rem;
}

.hero-subtitle-text {
font-size: 1.2rem;
}

.section-heading-primary,
.section-heading-centered {
font-size: 2.2rem;
}

.page-hero-title {
font-size: 2.5rem;
}

.post-main-title {
font-size: 2rem;
}

.footer-columns-grid {
grid-template-columns: 1fr;
}

.primary-navigation-menu {
flex-direction: column;
gap: 1rem;
}

.features-grid-layout,
.testimonials-grid-container,
.team-grid-layout,
.values-grid-container,
.blog-posts-grid {
grid-template-columns: 1fr;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
