:root {
--emerald: #0d5c4d;
--emerald-light: #1a7a66;
--gold: #c9a961;
--gold-dark: #a88b4a;
--cream: #f5f1e8;
--cream-dark: #e8dfc8;
--dark: #1a1a1a;
--white: #ffffff;
}

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

body {
font-family: 'Didot', 'Bodoni MT', 'Cochin', 'Georgia', serif;
background-color: var(--dark);
color: var(--cream);
line-height: 1.6;
overflow-x: hidden;
}

.main-header {
background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
padding: 1.2rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
border-bottom: 3px solid var(--gold);
}

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

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

.logo-section img {
border-radius: 50%;
border: 3px solid var(--gold);
}

.brand-name {
font-size: 1.8rem;
font-weight: bold;
color: var(--gold);
letter-spacing: 2px;
text-transform: uppercase;
}

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

.primary-nav a {
color: var(--cream);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
position: relative;
transition: color 0.3s ease;
}

.primary-nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--gold);
transition: width 0.3s ease;
}

.primary-nav a:hover {
color: var(--gold);
}

.primary-nav a:hover::after {
width: 100%;
}

.hero-banner {
height: 650px;
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/1.jpg") center/cover;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

.hero-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(201, 169, 97, 0.03) 2px,
rgba(201, 169, 97, 0.03) 4px
);
pointer-events: none;
}

.hero-overlay {
text-align: center;
z-index: 1;
max-width: 900px;
padding: 2rem;
}

.typewriter-title {
font-size: 4rem;
color: var(--gold);
margin-bottom: 1rem;
text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
border-right: 4px solid var(--gold);
white-space: nowrap;
overflow: hidden;
display: inline-block;
animation: typewriter 4s steps(40) 1s forwards, blink 0.75s step-end infinite;
}

@keyframes typewriter {
from {
width: 0;
}
to {
width: 100%;
}
}

@keyframes blink {
50% {
border-color: transparent;
}
}

.hero-subtitle {
font-size: 1.8rem;
color: var(--cream);
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
display: inline-block;
padding: 1rem 3rem;
background: var(--gold);
color: var(--dark);
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
border: 3px solid var(--gold);
transition: all 0.3s ease;
clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.cta-button:hover {
background: transparent;
color: var(--gold);
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.intro-section,
.testimonials-area,
.amenities-showcase,
.about-content,
.values-section,
.blog-listing,
.contact-section {
padding: 5rem 2rem;
max-width: 1400px;
margin: 0 auto;
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
}

h2 {
font-size: 3rem;
color: var(--gold);
margin-bottom: 2rem;
text-align: center;
position: relative;
padding-bottom: 1rem;
}

h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 150px;
height: 3px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-section p {
font-size: 1.2rem;
text-align: center;
max-width: 900px;
margin: 0 auto;
color: var(--cream-dark);
}

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

.feature-card {
background: linear-gradient(135deg, rgba(13, 92, 77, 0.3) 0%, rgba(26, 122, 102, 0.3) 100%);
padding: 2rem;
border: 2px solid var(--gold);
transition: transform 0.3s ease, box-shadow 0.3s ease;
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.semi-transparent {
background: rgba(13, 92, 77, 0.6);
backdrop-filter: blur(10px);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.feature-card img {
width: 100%;
height: 300px;
object-fit: cover;
margin-bottom: 1.5rem;
border: 2px solid var(--gold);
}

.feature-card h3 {
color: var(--gold);
font-size: 1.8rem;
margin-bottom: 1rem;
}

.feature-card p {
color: var(--cream-dark);
font-size: 1.1rem;
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.testimonial-item {
background: rgba(201, 169, 97, 0.1);
padding: 2.5rem;
border-left: 4px solid var(--gold);
font-style: italic;
}

.testimonial-item p {
font-size: 1.2rem;
color: var(--cream);
margin-bottom: 1rem;
}

.guest-name {
display: block;
text-align: right;
color: var(--gold);
font-weight: bold;
margin-top: 1rem;
}

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

.amenity-item {
text-align: center;
padding: 2rem;
background: rgba(13, 92, 77, 0.3);
border: 2px solid var(--gold);
transition: all 0.3s ease;
}

.amenity-item:hover {
background: rgba(13, 92, 77, 0.5);
transform: scale(1.05);
}

.amenity-icon {
font-size: 3rem;
display: block;
margin-bottom: 1rem;
}

.amenity-item h4 {
color: var(--gold);
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.amenity-item p {
color: var(--cream-dark);
}

.main-footer {
background: linear-gradient(135deg, var(--emerald) 0%, var(--dark) 100%);
padding: 3rem 2rem 1rem;
border-top: 3px solid var(--gold);
}

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

.footer-column h4 {
color: var(--gold);
font-size: 1.5rem;
margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
color: var(--cream);
font-size: 1rem;
display: block;
margin-bottom: 0.5rem;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column a:hover {
color: var(--gold);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--gold);
color: var(--cream-dark);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
padding: 2rem;
box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
z-index: 10000;
border-top: 3px solid var(--gold);
display: none;
}

.cookie-banner.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--gold);
font-size: 1.8rem;
margin-bottom: 1rem;
}

.cookie-content p {
color: var(--cream);
font-size: 1.1rem;
margin-bottom: 1.5rem;
}

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

.cookie-accept,
.cookie-decline {
padding: 0.8rem 2rem;
border: 2px solid var(--gold);
font-size: 1rem;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-accept {
background: var(--gold);
color: var(--dark);
}

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

.cookie-decline {
background: transparent;
color: var(--gold);
}

.cookie-decline:hover {
background: rgba(201, 169, 97, 0.2);
}

.cookie-link {
color: var(--cream);
text-decoration: underline;
margin-left: 1rem;
}

.page-hero {
height: 400px;
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/2.jpg") center/cover;
display: flex;
align-items: center;
justify-content: center;
}

.about-hero {
background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/3.jpg");
}

.blog-hero {
background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/4.jpg");
}

.contact-hero {
background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/9.jpg");
}

.team-section {
padding: 5rem 2rem;
background: rgba(13, 92, 77, 0.2);
}

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

.team-member {
text-align: center;
background: rgba(13, 92, 77, 0.4);
padding: 2rem;
border: 2px solid var(--gold);
transition: transform 0.3s ease;
}

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

.team-member img {
width: 100%;
max-width: 400px;
height: 400px;
object-fit: cover;
border: 3px solid var(--gold);
margin-bottom: 1.5rem;
}

.team-member h3 {
color: var(--gold);
font-size: 1.8rem;
margin-bottom: 0.5rem;
}

.member-title {
color: var(--cream);
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 1rem;
}

.team-member p {
color: var(--cream-dark);
font-size: 1rem;
line-height: 1.6;
}

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

.value-item {
background: rgba(201, 169, 97, 0.1);
padding: 2rem;
border: 2px solid var(--gold);
}

.value-item h3 {
color: var(--gold);
font-size: 1.6rem;
margin-bottom: 1rem;
}

.value-item p {
color: var(--cream-dark);
font-size: 1.1rem;
}

.posts-grid {
display: grid;
gap: 3rem;
margin-top: 3rem;
}

.post-card {
background: rgba(13, 92, 77, 0.3);
border: 2px solid var(--gold);
overflow: hidden;
display: grid;
grid-template-columns: 400px 1fr;
gap: 2rem;
transition: transform 0.3s ease;
}

.post-card:hover {
transform: translateX(10px);
box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.post-card img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content {
padding: 2rem;
}

.post-content h3 {
margin-bottom: 1rem;
}

.post-content h3 a {
color: var(--gold);
text-decoration: none;
font-size: 1.8rem;
transition: color 0.3s ease;
}

.post-content h3 a:hover {
color: var(--cream);
}

.post-meta {
color: var(--cream-dark);
font-size: 0.95rem;
margin-bottom: 1rem;
font-style: italic;
}

.post-content p {
color: var(--cream-dark);
font-size: 1.1rem;
margin-bottom: 1rem;
}

.read-more {
color: var(--gold);
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}

.read-more:hover {
color: var(--cream);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
margin-top: 3rem;
}

.contact-info {
background: rgba(13, 92, 77, 0.4);
padding: 2.5rem;
border: 2px solid var(--gold);
}

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

.info-block h3 {
color: var(--gold);
font-size: 1.4rem;
margin-bottom: 0.5rem;
}

.info-block p,
.info-block a {
color: var(--cream);
font-size: 1.1rem;
text-decoration: none;
}

.info-block a:hover {
color: var(--gold);
}

.contact-form-container {
background: rgba(13, 92, 77, 0.3);
padding: 2.5rem;
border: 2px solid var(--gold);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
color: var(--gold);
font-size: 1.1rem;
margin-bottom: 0.5rem;
font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.8rem;
background: rgba(245, 241, 232, 0.1);
border: 2px solid var(--gold);
color: var(--cream);
font-size: 1rem;
font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
background: rgba(245, 241, 232, 0.2);
border-color: var(--gold-dark);
}

.submit-button {
padding: 1rem 2rem;
background: var(--gold);
color: var(--dark);
border: 2px solid var(--gold);
font-size: 1.2rem;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-button:hover {
background: transparent;
color: var(--gold);
}

.map-section {
padding: 5rem 2rem;
background: rgba(13, 92, 77, 0.2);
}

.map-placeholder {
background: rgba(13, 92, 77, 0.4);
border: 2px solid var(--gold);
padding: 3rem;
text-align: center;
margin-top: 2rem;
}

.map-placeholder p {
font-size: 1.5rem;
color: var(--cream);
margin-bottom: 1.5rem;
}

.map-link {
display: inline-block;
padding: 1rem 2rem;
background: var(--gold);
color: var(--dark);
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}

.map-link:hover {
background: var(--gold-dark);
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
padding: 3rem;
border: 3px solid var(--gold);
max-width: 500px;
text-align: center;
position: relative;
}

.close-modal {
position: absolute;
top: 10px;
right: 20px;
font-size: 2rem;
color: var(--gold);
cursor: pointer;
}

.modal-content h2 {
color: var(--gold);
margin-bottom: 1.5rem;
}

.modal-content p {
color: var(--cream);
font-size: 1.2rem;
margin-bottom: 2rem;
}

.modal-button {
padding: 1rem 2rem;
background: var(--gold);
color: var(--dark);
border: none;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-button:hover {
background: var(--gold-dark);
}

.blog-post {
background: var(--dark);
}

.post-header {
position: relative;
height: 500px;
overflow: hidden;
}

.post-header img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-header-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.9));
padding: 3rem 2rem;
}

.post-header-content h1 {
color: var(--gold);
font-size: 3rem;
margin-bottom: 1rem;
}

.post-content-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem;
display: grid;
grid-template-columns: 1fr 300px;
gap: 4rem;
}

.post-body {
color: var(--cream-dark);
font-size: 1.15rem;
line-height: 1.8;
}

.post-body h2 {
color: var(--gold);
font-size: 2.2rem;
margin: 2.5rem 0 1.5rem;
text-align: left;
}

.post-body h2::after {
display: none;
}

.post-body p {
margin-bottom: 1.5rem;
}

.post-sidebar {
background: rgba(13, 92, 77, 0.3);
padding: 2rem;
border: 2px solid var(--gold);
height: fit-content;
position: sticky;
top: 100px;
}

.related-posts h3 {
color: var(--gold);
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.related-posts a {
display: block;
color: var(--cream);
text-decoration: none;
padding: 0.8rem 0;
border-bottom: 1px solid rgba(201, 169, 97, 0.3);
transition: color 0.3s ease;
}

.related-posts a:hover {
color: var(--gold);
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 1rem;
}

.primary-nav {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.typewriter-title {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.3rem;
}

.features-grid,
.testimonial-grid,
.amenities-list,
.team-grid,
.values-grid {
grid-template-columns: 1fr;
}

.post-card {
grid-template-columns: 1fr;
}

.contact-grid,
.post-content-wrapper {
grid-template-columns: 1fr;
}

.post-sidebar {
position: static;
}

h2 {
font-size: 2rem;
}
}

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