/* CSS Custom Properties for Theming */
:root {
    --primary-color: #e91e63;
    --primary-dark: #ad1457;
    --primary-light: #f8bbd0;
    --secondary-color: #2d1b2e;
    --text-color: #2d1b2e;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --background-color: #ffffff;
    --background-secondary: #fdf2f8;
    --card-background: #ffffff;
    --border-color: #f3f4f6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --border-radius: 15px;
    --max-width: 1200px;
}

/* Dark theme variables */
[data-theme="dark"] {
    --primary-color: #f48fb1;
    --primary-dark: #e91e63;
    --primary-light: #ad1457;
    --secondary-color: #121212;
    --text-color: #f5f5f5;
    --text-light: #e0e0e0;
    --text-lighter: #bbbbbb;
    --background-color: #121212;
    --background-secondary: #1e1e1e;
    --card-background: #1e1e1e;
    --border-color: #444444;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-secondary) 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

main {
    flex: 1 0 auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Modern Promotion Banner */
.promotion-banner {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    z-index: 1001;
    padding: 15px 25px;
    max-width: 500px;
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.promotion-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    background: none;
    border: none;
}

.promotion-close:hover {
    transform: scale(1.1);
}

.promotion-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promotion-icon {
    font-size: 28px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.promotion-text {
    display: flex;
    flex-direction: column;
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.sub-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 27, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 20px;
}

.cookies-text {
    flex: 1;
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

.cookies-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cookies-text a:hover {
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-accept-cookies {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.btn-accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
}

.btn-cookies-info {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cookies-info:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

[data-theme="dark"] .header {
    background: rgba(18, 18, 18, 0.95);
}

.navbar {
    padding: 15px 0;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 10px;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link.active::after {
    width: 80%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    transition: all var(--transition-speed) ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    background: url('./hero.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    font-size: 16px;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-lighter);
    padding: 0;
    text-decoration: none;
    font-weight: normal;
    display: inline;
    box-shadow: none;
    transition: all var(--transition-speed) ease;
}

.btn-link:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
    text-decoration: underline;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    background: var(--background-secondary);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px;
    border-radius: var(--border-radius);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.card-list {
    list-style: none;
    margin-bottom: 30px;
}

.card-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.card-list li:last-child {
    border-bottom: none;
}

.btn-card {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-speed) ease;
}

.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--card-background);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    text-align: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--background-secondary);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
}

.service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(233, 30, 99, 0.3);
}

.service-note {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-secondary);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--background-secondary);
}

.reviews-intro {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--card-background);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.stars {
    color: #f59e0b;
    font-size: 28px;
}

.rating-text {
    font-size: 18px;
    color: var(--text-color);
}

.rating-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all var(--transition-speed) ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.reviewer-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.review-date {
    font-size: 14px;
    color: var(--text-lighter);
    margin: 0;
}

.review-rating {
    color: #f59e0b;
    font-size: 20px;
}

.review-content {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.reviews-cta .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Price List Section */
.price-list {
    padding: 100px 0;
    background: var(--background-color);
}

.size-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.size-option {
    background: var(--background-secondary);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 300px;
}

.size-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.1);
}

.size-option.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
}

.size-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.size-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.size-option p {
    font-size: 14px;
    opacity: 0.8;
}

.price-content {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.price-category {
    display: none;
}

.price-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    max-width: 100%;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-width: 500px;
    /* Zapewnia minimalną szerokość tabeli */
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th:last-child,
.price-table td:last-child {
    text-align: right;
}

.price-table th {
    font-weight: 600;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
    background: var(--background-secondary);
}

.price-table tbody tr:hover {
    background: var(--primary-light);
    transition: background-color var(--transition-speed) ease;
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 30px;
    padding: 15px;
    background: var(--background-secondary);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Price Navigation */
.mobile-price-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
}

.size-indicator {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.price-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.price-nav-btn:disabled {
    background: var(--text-lighter);
    cursor: not-allowed;
    transform: none;
}

/* Responsive styles for price list */
@media (max-width: 992px) {
    .price-content {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .size-selector {
        display: none;
    }

    .mobile-price-nav {
        display: flex;
    }

    .price-table-container {
        font-size: 14px;
        border-radius: 10px;
    }

    .price-table {
        min-width: 450px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 10px;
    }

    .price-table th {
        font-size: 14px;
    }

    .price-table td {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .price-table-container {
        font-size: 13px;
    }

    .price-table {
        min-width: 350px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }

    .price-table th {
        font-size: 13px;
    }

    .price-table td {
        font-size: 12px;
    }

    .size-indicator {
        font-size: 16px;
    }

    .price-nav-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .price-table-container {
        font-size: 12px;
    }

    .price-table {
        min-width: 300px;
    }

    .price-table th,
    .price-table td {
        padding: 8px 6px;
    }

    .price-table th {
        font-size: 12px;
    }

    .price-table td {
        font-size: 11px;
    }

    .size-indicator {
        font-size: 14px;
    }

    .price-nav-btn {
        width: 32px;
        height: 32px;
    }
}

/* Mobile Price Navigation */
.mobile-price-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
}

.size-indicator {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.price-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.price-nav-btn:disabled {
    background: var(--text-lighter);
    cursor: not-allowed;
    transform: none;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    /* Mobile price list styles */
    .size-selector {
        display: none;
    }

    .mobile-price-nav {
        display: flex;
    }

    .price-table-container {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 15px 10px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 14px;
        min-width: 180px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .review-card {
        padding: 20px;
    }

    .booking-card {
        padding: 30px 20px;
    }

    .contact-card,
    .map-card {
        padding: 30px 20px;
    }

    .map-container {
        height: 300px;
    }

    .price-category h3 {
        font-size: 24px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .price-table thead {
        font-size: 14px;
    }

    .card-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .price-category h3 {
        font-size: 20px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 5px;
        font-size: 12px;
    }

    .price-table thead {
        font-size: 12px;
    }

    .premium-promotion {
        max-width: 90%;
        right: 5%;
        left: 5%;
        transform: none;
    }
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: var(--background-secondary);
}

.booking-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: var(--card-background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.booking-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.booking-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.booking-card .btn {
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card {
    background: var(--card-background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 5px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.map-card {
    background: var(--card-background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.map-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 40px;
    margin-top: auto;
    width: 100%;
}

[data-theme="dark"] .footer {
    background: var(--background-secondary);
    color: var(--text-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px;
}

[data-theme="dark"] .footer-brand h2 {
    color: var(--primary-color);
}

.footer-tagline {
    font-size: 16px;
    color: #d1d5db;
    margin: 0;
}

[data-theme="dark"] .footer-tagline {
    color: var(--text-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
    position: relative;
}

[data-theme="dark"] .footer-column h3 {
    color: var(--primary-color);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

[data-theme="dark"] .footer-column a {
    color: var(--text-light);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 30px;
    text-align: center;
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

[data-theme="dark"] .footer-bottom p {
    color: var(--text-lighter);
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

[data-theme="dark"] .footer-bottom a {
    color: var(--text-lighter);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-icon {
    color: white;
    font-size: 2rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

.lightbox-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: auto;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-caption {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 0 20px;
    font-size: 1.1rem;
}

.lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.lightbox-nav {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    padding: 10px;
}

.lightbox-nav:hover {
    transform: scale(1.1);
}

.lightbox-counter {
    font-size: 1rem;
}

/* Back to top button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Loading message styling */
.loading-message {
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Premium Promotion Banner for Gallery */
.premium-promotion {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    z-index: 1001;
    padding: 15px 25px;
    max-width: 400px;
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.5s ease-out;
}

.premium-promotion .promotion-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Print Styles */
@media print {

    .header,
    .promotion-banner,
    .cookies-banner,
    .btn-back-to-top,
    .footer,
    .gallery-pagination {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-title,
    .section-subtitle {
        color: black !important;
    }

    .service-card,
    .review-card,
    .contact-card,
    .map-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile Styles */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .size-selector {
        flex-direction: column;
        align-items: center;
    }

    .size-option {
        max-width: 100%;
    }

    .price-table-container {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 15px 10px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .lightbox-image {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 14px;
        min-width: 180px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .review-card {
        padding: 20px;
    }

    .booking-card {
        padding: 30px 20px;
    }

    .contact-card,
    .map-card {
        padding: 30px 20px;
    }

    .map-container {
        height: 300px;
    }

    .price-category h3 {
        font-size: 24px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .price-table thead {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .card-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .price-category h3 {
        font-size: 20px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 5px;
        font-size: 12px;
    }

    .price-table thead {
        font-size: 12px;
    }

    .premium-promotion {
        max-width: 90%;
        right: 5%;
        left: 5%;
        transform: none;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 100px 0;
    background: var(--background-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 40px;
}

.legal-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.legal-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.update-info {
    font-size: 14px;
    color: var(--text-lighter);
    font-style: italic;
    margin-top: 20px;
}

.legal-sections {
    margin-bottom: 40px;
}

.legal-section-item {
    margin-bottom: 40px;
}

.legal-section-item h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-section-item ol {
    padding-left: 20px;
}

.legal-section-item li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section-item li ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.legal-section-item li ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.legal-section-item li ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.legal-contact {
    background: var(--background-secondary);
    padding: 30px;
    border-radius: var(--border-radius);
}

.legal-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.legal-contact p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-contact li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

.legal-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.legal-contact a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }

    .legal-section-item h2 {
        font-size: 22px;
    }

    .legal-section-item li,
    .legal-contact p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 20px;
    }

    .legal-section-item h2 {
        font-size: 20px;
    }

    .legal-section-item li,
    .legal-contact p {
        font-size: 14px;
    }

    .legal-contact {
        padding: 20px;
    }
}