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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c9a961;
    --accent-color: #e94560;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-overlay: rgba(26, 26, 46, 0.85);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.primary-header {
    background: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.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;
}

.site-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.main-navigation .nav-list {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a.nav-active::after {
    width: 100%;
}

.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.summary-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.summary-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.summary-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-container p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.concept-section,
.features-showcase,
.services-detailed,
.events-categories,
.team-section {
    padding: 5rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-divider {
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
}

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

.concept-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
}

.concept-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.concept-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.concept-item p {
    color: #666;
    line-height: 1.8;
}

.features-columns {
    display: grid;
    gap: 4rem;
}

.feature-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-column:nth-child(even) {
    direction: rtl;
}

.feature-column:nth-child(even) .feature-description {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-description h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description p {
    color: #555;
    line-height: 1.9;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.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(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column p,
.footer-column a {
    color: #ddd;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    padding: 2rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cookie-text p {
    color: #666;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.accept-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.customize-btn {
    background: var(--primary-color);
    color: var(--white);
}

.reject-btn {
    background: #e0e0e0;
    color: var(--text-color);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero .hero-overlay {
    background: rgba(26, 26, 46, 0.7);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--white);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse .service-info {
    direction: ltr;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.rooms-catalog,
.faq-sections {
    padding: 3rem 2rem;
}

.room-card,
.event-category {
    margin-bottom: 5rem;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.room-card.reverse {
    direction: rtl;
}

.room-card.reverse .room-details {
    direction: ltr;
}

.room-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    padding: 3rem;
}

.room-details h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.room-size {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.room-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.room-amenities {
    list-style: none;
}

.room-amenities li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.room-amenities li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.booking-info,
.services-summary,
.rooms-summary,
.events-summary,
.faq-summary,
.blog-summary,
.about-summary {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.info-box,
.summary-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-box h2,
.summary-box h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.info-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-header {
    background: var(--primary-color);
    padding: 2rem;
    text-align: center;
}

.event-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
}

.event-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-description h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.event-list {
    list-style: none;
}

.event-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.event-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.events-timeline {
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.timeline-date {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

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

.post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

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

.post-content {
    padding: 2rem;
}

.post-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: bold;
}

.post-card h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.post-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: bold;
    transition: var(--transition);
}

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

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

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--secondary-color);
}

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

.member-position {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.7;
    text-align: left;
}

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

.value-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

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

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

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--secondary-color);
    font-weight: bold;
}

.form-container {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.checkbox-label input {
    width: auto;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.map-placeholder {
    background: #e0e0e0;
    padding: 4rem;
    text-align: center;
    border-radius: 15px;
    color: #666;
}

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

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

.modal-btn {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

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

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

.post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    background: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.post-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
}

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

.post-content {
    color: #444;
    line-height: 1.9;
}

.lead-paragraph {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.post-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.post-content ul {
    margin: 1.5rem 0;
}

.article-list {
    list-style: none;
}

.article-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.article-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.tip-box {
    background: #fff9e6;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.post-cta {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.post-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-posts,
.categories {
    list-style: none;
}

.related-posts li,
.categories li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.related-posts a,
.categories a {
    color: #666;
    transition: var(--transition);
}

.related-posts a:hover,
.categories a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

@media (max-width: 1200px) {
    .feature-column,
    .service-block,
    .room-card,
    .event-content {
        grid-template-columns: 1fr;
    }
    
    .feature-column:nth-child(even),
    .service-block.reverse,
    .room-card.reverse {
        direction: ltr;
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-navigation .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-content h1,
    .post-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .concept-grid,
    .values-grid,
    .contact-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}