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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.primary-nav a {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: #667eea;
    background: rgba(102,126,234,0.1);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.concept-section,
.services-preview,
.testimonials-section {
    padding: 5rem 0;
}

.section-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #667eea;
}

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

.concept-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
}

.concept-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.location-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
}

.location-section .section-heading {
    color: white;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-map img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem 1rem;
    color: #667eea;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.read-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 0 1.5rem 1.5rem;
    background: #667eea;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #764ba2;
}

.rooms-preview {
    background: #f8f9fa;
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.rooms-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.room-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.room-preview img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.room-preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 2rem;
}

.room-preview-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.cta-center {
    text-align: center;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

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

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.reg-number {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

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

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

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cookie-btn.reject {
    background: #e0e0e0;
    color: #333;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-link {
    color: #667eea;
    text-decoration: underline;
}

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

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

.page-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.5rem;
}

.services-detailed {
    padding: 5rem 0;
}

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

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

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-img img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-detail h2 {
    font-size: 2.2rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.price-info {
    font-weight: 600;
    color: #764ba2;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.rooms-catalog {
    padding: 5rem 0;
}

.room-category {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.main-room-img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.room-features {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 1.5rem;
}

.feature-item {
    background: #667eea;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.room-info h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.amenities-list {
    list-style: none;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.amenities-list li {
    padding-left: 1.5rem;
    position: relative;
}

.amenities-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.room-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #764ba2;
    margin: 2rem 0;
}

.booking-benefits {
    background: #f8f9fa;
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.events-intro {
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.events-list {
    padding: 3rem 0;
}

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

.event-item.reverse {
    direction: rtl;
}

.event-item.reverse > * {
    direction: ltr;
}

.event-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #667eea;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.event-content h3 {
    font-size: 2.2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.event-date {
    color: #764ba2;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.event-program {
    list-style: none;
    margin: 1.5rem 0;
}

.event-program li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.event-program li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #667eea;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #764ba2;
    margin: 2rem 0;
}

.special-offers {
    background: #f8f9fa;
    padding: 5rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.offer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.offer-card h3 {
    font-size: 1.6rem;
    color: #667eea;
    padding: 1.5rem 1.5rem 1rem;
}

.offer-card p {
    padding: 0 1.5rem;
    color: #666;
}

.offer-includes {
    list-style: none;
    padding: 1.5rem;
}

.offer-includes li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.offer-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
}

.offer-price {
    font-weight: 700;
    color: #764ba2;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

.blog-date {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.blog-overview {
    margin: 1.5rem 0;
}

.blog-overview h4 {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 0.8rem;
}

.blog-overview ul {
    list-style: none;
}

.blog-overview li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #666;
}

.blog-overview li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
}

.read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: #667eea;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #764ba2;
}

.pagination {
    text-align: center;
    margin-top: 3rem;
}

.page-number {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #667eea;
    color: white;
    border-radius: 50px;
}

.about-story {
    padding: 5rem 0;
}

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

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.team-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
}

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

.team-member h3 {
    font-size: 1.6rem;
    color: #667eea;
    padding: 1.5rem 1.5rem 0.5rem;
}

.member-role {
    color: #764ba2;
    font-weight: 600;
    padding: 0 1.5rem 1rem;
}

.member-bio {
    padding: 0 1.5rem 2rem;
    line-height: 1.8;
    color: #666;
}

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

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

.value-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .header-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .primary-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

    .concept-grid,
    .location-grid,
    .service-detail,
    .room-category,
    .event-item,
    .story-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .rooms-showcase,
    .testimonials-slider,
    .benefits-grid,
    .offers-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-heading {
        font-size: 2rem;
    }

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

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .page-hero {
        height: 300px;
    }

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