/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d1b4e;
    --secondary-color: #ff6b6b;
    --accent-color: #4a3c6b;
    --text-dark: #1a1a1a;
    --text-light: #3a3a3a;
    --bg-light: #f5f3ef;
    --bg-cream: #faf8f3;
    --white: #ffffff;
    --footer-bg: #1a1625;
    --footer-text: #e8e6e1;
    --shadow: rgba(45, 27, 78, 0.1);
    --shadow-hover: rgba(45, 27, 78, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 248, 243, 0.95) 0%, rgba(245, 243, 239, 0.98) 100%);
    background-image: url('images/background1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: soft-light;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(45, 27, 78, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 27, 78, 0.05);
}

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

.logo-link {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-navigation {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.burger-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 7.5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Container */
.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.03) 0%, rgba(255, 107, 107, 0.03) 100%);
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 27, 78, 0.3);
}

.cta-button-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* About Preview Section */
.about-preview-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid rgba(45, 27, 78, 0.05);
    border-bottom: 1px solid rgba(45, 27, 78, 0.05);
}

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

.about-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.link-button {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.link-button:hover {
    color: var(--accent-color);
}

.about-stats-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 27, 78, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Advantages Section */
.advantages-section {
    padding: 6rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(45, 27, 78, 0.05);
    border-bottom: 1px solid rgba(45, 27, 78, 0.05);
}

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

.advantage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
}

.advantage-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.advantage-text {
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
}

/* Hotels Grid */
.hotels-overview-section,
.hotels-listing-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid rgba(45, 27, 78, 0.05);
    border-bottom: 1px solid rgba(45, 27, 78, 0.05);
}

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

.hotel-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.hotel-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image {
    transform: scale(1.1);
}

.hotel-content {
    padding: 2rem;
}

.hotel-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    filter: drop-shadow(0 1px 2px rgba(255, 107, 107, 0.3));
}

.hotel-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.hotel-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hotel-feature {
    background: rgba(45, 27, 78, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hotel-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.book-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(45, 27, 78, 0.2);
}

.book-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Premium Services Section */
.premium-services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.03) 0%, rgba(255, 107, 107, 0.03) 100%);
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 27, 78, 0.1);
    box-shadow: 0 2px 8px rgba(45, 27, 78, 0.05);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.service-icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Amenities Section */
.amenities-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid rgba(45, 27, 78, 0.05);
    border-bottom: 1px solid rgba(45, 27, 78, 0.05);
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 27, 78, 0.1);
}

.amenity-item:hover {
    background: rgba(45, 27, 78, 0.05);
    transform: translateX(5px);
    border-color: rgba(255, 107, 107, 0.3);
}

@media (max-width: 360px) {
    .amenity-item {
        padding: 0.5rem;
    }
}

.amenity-check {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    filter: drop-shadow(0 1px 2px rgba(255, 107, 107, 0.3));
}

.amenity-name {
    color: var(--text-dark);
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(45, 27, 78, 0.05);
}

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

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

.review-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 2px rgba(255, 107, 107, 0.3));
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Page Header */
.page-header-section {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.03) 0%, rgba(255, 107, 107, 0.03) 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 6rem;
    background: var(--bg-cream);
}

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

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-text {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-block {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 27, 78, 0.1);
    box-shadow: 0 4px 15px rgba(45, 27, 78, 0.05);
}

.form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

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

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(45, 27, 78, 0.2);
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 107, 0.3));
}

.popup-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.popup-message {
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
}

/* Policy Pages */
.policy-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.policy-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.policy-updated {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 500;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-heading {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-subheading {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.policy-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.policy-list li {
    margin-bottom: 0.8rem;
}

/* About Detail Section */
.about-detail-section {
    padding: 4rem 0 6rem;
    background: var(--white);
    border-top: 1px solid rgba(45, 27, 78, 0.05);
    border-bottom: 1px solid rgba(45, 27, 78, 0.05);
}

.about-main-content {
    margin-bottom: 4rem;
}

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

.content-title:first-child {
    margin-top: 0;
}

.content-paragraph {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 27, 78, 0.1);
    box-shadow: 0 2px 8px rgba(45, 27, 78, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(45, 27, 78, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.value-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-text {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--footer-text);
    font-weight: 700;
}

.footer-text {
    color: var(--footer-text);
    line-height: 1.7;
    opacity: 0.9;
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--footer-text);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

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

.copyright-text {
    color: var(--footer-text);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .burger-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px var(--shadow);
        z-index: 999;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }

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

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

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

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

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

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

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

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

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

    .container-main,
    .container-header {
        padding: 0 1rem;
    }
}
