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

body {
font-family: 'Didot', 'Bodoni MT', 'Playfair Display', serif;
background-color: #0a0a0a;
color: #f5f5dc;
line-height: 1.7;
overflow-x: hidden;
}

.main-header {
background: linear-gradient(135deg, #1a4d3e 0%, #0d2620 100%);
border-bottom: 3px solid #c9a961;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

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

.logo-section {
flex: 0 0 auto;
}

.site-logo {
height: 65px;
width: auto;
border: 2px solid #c9a961;
padding: 4px;
background: #0a0a0a;
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 2.8rem;
}

.primary-nav a {
color: #f5f5dc;
text-decoration: none;
font-size: 1.05rem;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
position: relative;
transition: color 0.3s ease;
}

.primary-nav a::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 0;
height: 2px;
background: #c9a961;
transition: width 0.3s ease;
}

.primary-nav a:hover {
color: #c9a961;
}

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

.hero-banner {
background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.5)), url("../images/1.jpg") center/cover no-repeat;
height: 85vh;
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: 2;
max-width: 900px;
padding: 3rem;
background: rgba(26, 77, 62, 0.85);
border: 3px solid #c9a961;
box-shadow: 0 0 40px rgba(201, 169, 97, 0.4);
clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hero-overlay h1 {
font-size: 4rem;
color: #c9a961;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
letter-spacing: 3px;
font-weight: 700;
}

.hero-subtitle {
font-size: 1.5rem;
color: #f5f5dc;
margin-bottom: 2.5rem;
font-style: italic;
letter-spacing: 1.2px;
}

.cta-button {
display: inline-block;
padding: 1rem 3rem;
background: linear-gradient(135deg, #c9a961 0%, #a88a4d 100%);
color: #0a0a0a;
text-decoration: none;
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
border: 2px solid #c9a961;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.cta-button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(245, 245, 220, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
width: 300px;
height: 300px;
}

.cta-button:hover {
background: linear-gradient(135deg, #a88a4d 0%, #c9a961 100%);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(201, 169, 97, 0.5);
}

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

.intro-section {
padding: 6rem 0;
background: linear-gradient(to bottom, #0a0a0a 0%, #1a4d3e 100%);
}

.intro-content h2 {
font-size: 3rem;
color: #c9a961;
margin-bottom: 2rem;
text-align: center;
letter-spacing: 2px;
position: relative;
padding-bottom: 1.5rem;
}

.intro-content h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 3px;
background: linear-gradient(90deg, transparent, #c9a961, transparent);
}

.intro-content p {
font-size: 1.2rem;
text-align: center;
max-width: 1000px;
margin: 0 auto;
color: #f5f5dc;
line-height: 2;
}

.section-heading {
font-size: 2.8rem;
color: #c9a961;
text-align: center;
margin-bottom: 4rem;
letter-spacing: 2px;
position: relative;
padding-bottom: 1.5rem;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: #c9a961;
}

.features-showcase {
padding: 6rem 0;
background: #0d2620;
}

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

.feature-card {
background: linear-gradient(135deg, #1a4d3e 0%, #0d2620 100%);
border: 2px solid #c9a961;
padding: 2rem;
text-align: center;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
transform: scale(0);
transition: transform 0.6s ease;
}

.feature-card:hover::before {
transform: scale(1);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 30px rgba(201, 169, 97, 0.4);
border-color: #a88a4d;
}

.feature-card img {
width: 100%;
height: 250px;
object-fit: cover;
margin-bottom: 1.5rem;
border: 2px solid #c9a961;
}

.feature-card h3 {
font-size: 1.8rem;
color: #c9a961;
margin-bottom: 1rem;
letter-spacing: 1.5px;
}

.feature-card p {
font-size: 1.05rem;
color: #f5f5dc;
line-height: 1.8;
}

.testimonials-area {
padding: 6rem 0;
background: linear-gradient(to bottom, #1a4d3e 0%, #0a0a0a 100%);
}

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

.testimonial-box {
background: rgba(26, 77, 62, 0.6);
border-left: 4px solid #c9a961;
padding: 2.5rem;
position: relative;
font-style: italic;
}

.testimonial-box::before {
content: '"';
position: absolute;
top: -20px;
left: 20px;
font-size: 6rem;
color: #c9a961;
opacity: 0.3;
font-family: Georgia, serif;
}

.quote-text {
font-size: 1.1rem;
color: #f5f5dc;
margin-bottom: 1.5rem;
line-height: 1.9;
}

.guest-name {
font-size: 1rem;
color: #c9a961;
font-weight: 600;
text-align: right;
font-style: normal;
}

.location-info {
padding: 6rem 0;
background: #0d2620;
}

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

.location-text h2 {
font-size: 2.5rem;
color: #c9a961;
margin-bottom: 2rem;
letter-spacing: 2px;
}

.location-text p {
font-size: 1.15rem;
color: #f5f5dc;
line-height: 2;
margin-bottom: 2rem;
}

.contact-details {
margin-top: 2.5rem;
}

.contact-details p {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
font-size: 1.1rem;
color: #f5f5dc;
}

.icon {
font-size: 1.5rem;
color: #c9a961;
}

.location-map img {
width: 100%;
height: 450px;
object-fit: cover;
border: 3px solid #c9a961;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.site-footer {
background: linear-gradient(135deg, #0a0a0a 0%, #1a4d3e 100%);
color: #f5f5dc;
padding: 4rem 0 2rem;
border-top: 3px solid #c9a961;
}

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

.footer-column h4 {
color: #c9a961;
font-size: 1.4rem;
margin-bottom: 1.5rem;
letter-spacing: 1.5px;
}

.footer-column p {
color: #f5f5dc;
line-height: 1.9;
margin-bottom: 0.8rem;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.8rem;
}

.footer-column ul li a {
color: #f5f5dc;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column ul li a:hover {
color: #c9a961;
}

.registration {
font-size: 0.9rem;
margin-top: 1rem;
color: #a88a4d;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #c9a961;
color: #a88a4d;
font-size: 0.95rem;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, #1a4d3e 0%, #0d2620 100%);
border-top: 3px solid #c9a961;
padding: 2rem;
z-index: 9999;
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
display: none;
}

.cookie-banner.active {
display: block;
}

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

.cookie-content h3 {
color: #c9a961;
font-size: 1.5rem;
margin-bottom: 1rem;
letter-spacing: 1.5px;
}

.cookie-content p {
color: #f5f5dc;
margin-bottom: 1.5rem;
line-height: 1.8;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.cookie-btn {
padding: 0.8rem 2rem;
border: 2px solid #c9a961;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}

.cookie-btn.primary {
background: #c9a961;
color: #0a0a0a;
}

.cookie-btn.primary:hover {
background: #a88a4d;
transform: translateY(-2px);
}

.cookie-btn.secondary {
background: transparent;
color: #c9a961;
}

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

.cookie-btn.tertiary {
background: transparent;
color: #f5f5dc;
}

.cookie-btn.tertiary:hover {
background: rgba(245, 245, 220, 0.1);
}

.cookie-policy-link {
font-size: 0.9rem;
}

.cookie-policy-link a {
color: #c9a961;
text-decoration: underline;
}

.page-hero {
background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)), url("../images/2.jpg") center/cover no-repeat;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 3px solid #c9a961;
}

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

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

.contact-hero {
background-image: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)), url("../images/15.jpg");
}

.our-story {
padding: 6rem 0;
background: #0a0a0a;
}

.story-content h2 {
font-size: 2.8rem;
color: #c9a961;
margin-bottom: 2rem;
text-align: center;
letter-spacing: 2px;
}

.story-content p {
font-size: 1.15rem;
color: #f5f5dc;
line-height: 2;
margin-bottom: 1.8rem;
text-align: justify;
}

.mission-vision {
padding: 6rem 0;
background: linear-gradient(to bottom, #1a4d3e 0%, #0d2620 100%);
}

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

.mv-card {
background: rgba(10, 10, 10, 0.7);
border: 2px solid #c9a961;
padding: 2.5rem;
text-align: center;
}

.mv-card h3 {
font-size: 2rem;
color: #c9a961;
margin-bottom: 1.5rem;
letter-spacing: 1.5px;
}

.mv-card p {
font-size: 1.1rem;
color: #f5f5dc;
line-height: 1.9;
}

.team-section {
padding: 6rem 0;
background: #0d2620;
}

.team-intro {
text-align: center;
font-size: 1.2rem;
color: #f5f5dc;
max-width: 900px;
margin: 0 auto 4rem;
line-height: 1.9;
}

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

.team-member {
background: linear-gradient(135deg, #1a4d3e 0%, #0a0a0a 100%);
border: 2px solid #c9a961;
padding: 2rem;
text-align: center;
transition: transform 0.3s ease;
}

.team-member:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
border: 2px solid #c9a961;
margin-bottom: 1.5rem;
}

.team-member h3 {
font-size: 1.6rem;
color: #c9a961;
margin-bottom: 0.5rem;
letter-spacing: 1px;
}

.member-title {
font-size: 1.1rem;
color: #a88a4d;
margin-bottom: 1rem;
font-style: italic;
}

.member-bio {
font-size: 1rem;
color: #f5f5dc;
line-height: 1.8;
}

.facilities-overview {
padding: 6rem 0;
background: linear-gradient(to bottom, #0a0a0a 0%, #1a4d3e 100%);
}

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

.facility-item {
background: rgba(13, 38, 32, 0.8);
border: 2px solid #c9a961;
overflow: hidden;
transition: transform 0.3s ease;
}

.facility-item:hover {
transform: scale(1.03);
}

.facility-item img {
width: 100%;
height: 280px;
object-fit: cover;
border-bottom: 2px solid #c9a961;
}

.facility-item h3 {
font-size: 1.7rem;
color: #c9a961;
padding: 1.5rem 1.5rem 1rem;
letter-spacing: 1px;
}

.facility-item p {
font-size: 1.05rem;
color: #f5f5dc;
padding: 0 1.5rem 1.5rem;
line-height: 1.8;
}

.blog-listing {
padding: 6rem 0;
background: #0a0a0a;
}

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

.blog-card {
background: linear-gradient(135deg, #1a4d3e 0%, #0d2620 100%);
border: 2px solid #c9a961;
overflow: hidden;
transition: all 0.4s ease;
}

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

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

.blog-card img {
width: 100%;
height: 280px;
object-fit: cover;
border-bottom: 2px solid #c9a961;
}

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

.blog-card h2 {
font-size: 1.6rem;
color: #c9a961;
margin-bottom: 1rem;
line-height: 1.4;
letter-spacing: 1px;
}

.post-meta {
font-size: 0.9rem;
color: #a88a4d;
margin-bottom: 1rem;
font-style: italic;
}

.post-excerpt {
font-size: 1.05rem;
color: #f5f5dc;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.read-more {
color: #c9a961;
font-weight: 600;
font-size: 1rem;
letter-spacing: 1px;
}

.contact-info-section {
padding: 6rem 0;
background: #0a0a0a;
}

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

.contact-details-box h2,
.contact-form-box h2 {
font-size: 2.2rem;
color: #c9a961;
margin-bottom: 2rem;
letter-spacing: 1.5px;
}

.contact-details-box p {
font-size: 1.1rem;
color: #f5f5dc;
line-height: 1.9;
margin-bottom: 2rem;
}

.contact-info-items {
margin-top: 2.5rem;
}

.info-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
margin-bottom: 2rem;
}

.info-item .icon {
font-size: 2rem;
color: #c9a961;
flex-shrink: 0;
}

.info-item h3 {
color: #c9a961;
font-size: 1.3rem;
margin-bottom: 0.5rem;
letter-spacing: 1px;
}

.info-item p {
color: #f5f5dc;
line-height: 1.7;
margin: 0;
}

.contact-form {
background: linear-gradient(135deg, #1a4d3e 0%, #0d2620 100%);
padding: 2.5rem;
border: 2px solid #c9a961;
}

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

.form-group label {
display: block;
color: #c9a961;
font-size: 1.05rem;
margin-bottom: 0.5rem;
letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.9rem;
background: rgba(10, 10, 10, 0.7);
border: 1px solid #c9a961;
color: #f5f5dc;
font-size: 1rem;
font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #a88a4d;
background: rgba(10, 10, 10, 0.9);
}

.submit-btn {
width: 100%;
padding: 1rem;
background: linear-gradient(135deg, #c9a961 0%, #a88a4d 100%);
color: #0a0a0a;
border: 2px solid #c9a961;
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background: linear-gradient(135deg, #a88a4d 0%, #c9a961 100%);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(201, 169, 97, 0.4);
}

.map-section {
padding: 6rem 0;
background: #0d2620;
}

.map-placeholder img {
width: 100%;
height: 500px;
object-fit: cover;
border: 3px solid #c9a961;
margin-top: 2rem;
}

.faq-section {
padding: 6rem 0;
background: linear-gradient(to bottom, #1a4d3e 0%, #0a0a0a 100%);
}

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

.faq-item {
background: rgba(13, 38, 32, 0.6);
border-left: 4px solid #c9a961;
padding: 2rem;
}

.faq-item h3 {
font-size: 1.4rem;
color: #c9a961;
margin-bottom: 1rem;
letter-spacing: 1px;
}

.faq-item p {
font-size: 1.05rem;
color: #f5f5dc;
line-height: 1.8;
}

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

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

.modal-content {
background: linear-gradient(135deg, #1a4d3e 0%, #0d2620 100%);
border: 3px solid #c9a961;
padding: 3rem;
max-width: 500px;
width: 90%;
text-align: center;
position: relative;
}

.close-modal {
position: absolute;
top: 10px;
right: 20px;
font-size: 2rem;
color: #c9a961;
cursor: pointer;
}

.modal-content h2 {
color: #c9a961;
font-size: 2.2rem;
margin-bottom: 1.5rem;
letter-spacing: 2px;
}

.modal-content p {
color: #f5f5dc;
font-size: 1.15rem;
line-height: 1.8;
margin-bottom: 2rem;
}

.modal-btn {
padding: 0.9rem 2.5rem;
background: #c9a961;
color: #0a0a0a;
border: 2px solid #c9a961;
font-size: 1.05rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-btn:hover {
background: #a88a4d;
transform: translateY(-2px);
}

.post-content {
background: #0a0a0a;
}

.post-header {
padding: 4rem 0 2rem;
background: linear-gradient(to bottom, #1a4d3e 0%, #0a0a0a 100%);
}

.post-header h1 {
font-size: 3rem;
color: #c9a961;
text-align: center;
margin-bottom: 1rem;
letter-spacing: 2px;
line-height: 1.3;
}

.post-meta-info {
text-align: center;
font-size: 1.05rem;
color: #a88a4d;
font-style: italic;
}

.post-featured-image {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

.post-featured-image img {
width: 100%;
height: 500px;
object-fit: cover;
border: 3px solid #c9a961;
}

.post-body {
padding: 5rem 0;
}

.post-body h2 {
font-size: 2.2rem;
color: #c9a961;
margin: 3rem 0 1.5rem;
letter-spacing: 1.5px;
}

.post-body p {
font-size: 1.15rem;
color: #f5f5dc;
line-height: 2;
margin-bottom: 1.8rem;
text-align: justify;
}

@media (max-width: 968px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}
.primary-nav ul {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.hero-overlay h1 {
font-size: 2.5rem;
}
.location-grid,
.contact-grid {
grid-template-columns: 1fr;
}
.features-grid,
.blog-posts-grid {
grid-template-columns: 1fr;
}
.team-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}

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