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

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --dark-gold: #8B6914;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
    --border-gold: #D4AF37;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.2);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
    min-width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.2) 0%, rgba(45, 45, 45, 0.15) 100%);
    z-index: 3;
}

/* Mobile Hero Images */
.mobile-hero-images {
    display: none;
    padding-top: 70px; /* Dodajemy padding-top aby uniknąć ucięcia przez navbar */
}

.mobile-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.mobile-hero-item {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
}

.mobile-hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-hero-item:hover img {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--primary-black);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.amenities {
    margin-top: 4rem;
}

.amenities h3 {
    text-align: center;
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--secondary-black);
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.amenity i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.amenity span {
    font-weight: 600;
    color: var(--text-light);
}

/* Booking Section */
.booking, .booking-section {
    padding: 100px 0;
    background: var(--secondary-black);
    width: 100%;
}

.booking-container {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
}

.booking-form {
    background: var(--primary-black);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-gold);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-black);
    border-radius: 8px;
    background: var(--secondary-black);
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

.booking-info {
    background: var(--primary-black);
    padding: 3rem;
    border-radius: 0;
    border: none;
    width: 100%;
}

.booking-info h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--secondary-black);
    border-radius: 8px;
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    min-width: 30px;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-item span {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Addons Section */
.addons {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.addon-item {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.addon-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.addon-image i {
    font-size: 2rem;
    color: var(--primary-black);
}

.addon-item h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.addon-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.addon-price {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 10px 20px;
    background: var(--primary-black);
    border-radius: 25px;
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
}

.addon-checkbox:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.addon-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.addon-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-gold);
}

.addon-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--secondary-black);
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-black);
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    min-width: 50px;
}

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

.contact-item a,
.contact-item p {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.contact-map {
    background: var(--primary-black);
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-gold);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    color: var(--text-gray);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--primary-black);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: var(--primary-gold);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--text-white);
}

.modal-content h2 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
}

.btn-secondary {
    background: var(--secondary-black);
    color: var(--text-white);
    border: 1px solid var(--border-gold);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

/* iCal Synchronization Section */
.ical-sync {
    background: var(--primary-black);
    padding: 80px 0;
    color: var(--text-light);
}

.ical-sync h2 {
    text-align: center;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

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

.sync-info h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.ical-link {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ical-link code {
    background: var(--primary-black);
    color: var(--primary-gold);
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.copy-btn:active {
    transform: translateY(0);
}

.sync-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.sync-instructions h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.sync-instructions ol {
    padding-left: 20px;
}

.sync-instructions li {
    margin: 10px 0;
    line-height: 1.6;
}

.sync-instructions a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: bold;
}

.sync-instructions a:hover {
    text-decoration: underline;
}

.sync-status {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.sync-status h4 {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.sync-status p {
    margin: 8px 0;
    color: var(--text-light);
}

#lastUpdate {
    color: var(--primary-gold);
    font-weight: bold;
}

/* Booking.com Calendar Section */
.booking-calendar {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.booking-calendar h2 {
    text-align: center;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

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

.booking-info h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.booking-link {
    text-align: center;
    margin: 30px 0;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.booking-btn:hover {
    background: #b8943a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.booking-btn:active {
    transform: translateY(-1px);
}

.booking-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.booking-instructions h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.booking-instructions ol {
    padding-left: 20px;
}

.booking-instructions li {
    margin: 10px 0;
    line-height: 1.6;
}

.booking-note {
    background: rgba(33, 150, 243, 0.1);
    border: 2px solid #2196F3;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.booking-note h4 {
    color: #2196F3;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.booking-note ul {
    padding-left: 20px;
}

.booking-note li {
    margin: 8px 0;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid #d4af37;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    margin: 0;
    padding: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 18px 18px 0 0;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.regulamin-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.regulamin-section h3 {
    color: #d4af37;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.regulamin-text {
    padding: 30px;
    color: #e0e0e0;
    line-height: 1.6;
    max-height: 400px;
    overflow-y: auto;
    border-bottom: 1px solid #333;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.regulamin-text h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.regulamin-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.regulamin-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.regulamin-text li {
    margin-bottom: 8px;
}

.regulamin-text strong {
    color: #d4af37;
}

.client-info-form {
    padding: 30px;
    border-bottom: 1px solid #333;
}

.client-info-form h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder {
    color: #888;
}

.acceptance-section {
    padding: 30px;
    border-bottom: 1px solid #333;
}

.checkbox-group {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #d4af37;
}

.checkbox-group label {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.modal-buttons {
    padding: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #777 0%, #555 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #e6c44a 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .regulamin-text,
    .client-info-form,
    .acceptance-section,
    .modal-buttons {
        padding: 20px;
    }
    
    .regulamin-text {
        max-height: 300px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        padding: 12px;
    }
    
    .regulamin-text,
    .client-info-form,
    .acceptance-section,
    .modal-buttons {
        padding: 15px;
    }
    
    .regulamin-text {
        max-height: 250px;
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
    }
}

/* Desktop styles for booking section */
@media (min-width: 900px) {
    .booking-container {
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        gap: 4rem;
    }
    .booking-form,
    .booking-info {
        padding: 3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        color: var(--text-white);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 1rem 2rem;
        display: block;
        border-radius: 5px;
    }

    .nav-menu a:hover {
        color: var(--primary-gold);
        background: rgba(212, 175, 55, 0.1);
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .mobile-hero-images {
        display: block;
    }

    .hero {
        display: none;
    }

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

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .gallery-item.large {
        grid-column: 1;
    }

    .booking-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile hero images adjustments */
    .mobile-hero-grid {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    
    .mobile-hero-item {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form,
    .booking-info {
        padding: 1.5rem;
    }
    
    .addon-item {
        padding: 1.5rem;
    }
    
    /* Mobile hero images for very small screens */
    .mobile-hero-grid {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0 0.3rem;
    }
    
    .mobile-hero-item {
        aspect-ratio: 16/9;
        border-radius: 5px;
    }
    
    .mobile-hero-item img {
        border-radius: 5px;
    }
} 

/* Responsive design for iCal section */
@media (max-width: 768px) {
    .ical-link {
        flex-direction: column;
        text-align: center;
    }
    
    .ical-link code {
        font-size: 0.8rem;
    }
    
    .copy-btn {
        width: 100%;
        margin-top: 10px;
    }
} 

/* Responsive design for Booking.com section */
@media (max-width: 768px) {
    .booking-btn {
        padding: 15px 30px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
} 

/* Calendar Test Styles */
.calendar-test {
    margin: 30px 0;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    border-radius: 10px;
}

.test-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.test-btn:hover {
    background: linear-gradient(135deg, #e6c44a 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.test-result {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.test-result.show {
    display: block;
}

.test-result.success {
    border-left: 4px solid #4CAF50;
}

.test-result.error {
    border-left: 4px solid #f44336;
}

/* Status Indicators */
.status-indicators {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 8px;
    font-size: 0.9rem;
}

.status-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.status-item.error {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
}

.status-item.error i {
    color: #f44336;
}

.status-item.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
}

.status-item.warning i {
    color: #FFC107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-indicators {
        grid-template-columns: 1fr;
    }
    
    .test-btn {
        width: 100%;
        justify-content: center;
    }
} 

/* Check-in Page Styles */
.check-in-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.check-in-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.check-in-header {
    text-align: center;
    margin-bottom: 40px;
}

.check-in-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.check-in-header p {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 300;
}

.check-in-form {
    color: #ffffff;
}

.form-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px var(--shadow-gold);
}

.form-group select option {
    background-color: var(--primary-black);
    color: var(--text-white);
    padding: 8px 12px;
}

.form-group select option:hover {
    background-color: var(--secondary-black);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.regulamin-preview {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.regulamin-preview h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.regulamin-preview p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #e0e0e0;
}

.regulamin-preview ul {
    margin: 15px 0;
    padding-left: 20px;
}

.regulamin-preview li {
    margin-bottom: 8px;
    color: #e0e0e0;
    line-height: 1.5;
}

.acceptance-section {
    margin-top: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #d4af37;
}

.checkbox-group input[type="checkbox"].error {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.checkbox-group label {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e0e0e0;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    color: var(--secondary-gold);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn i {
    margin-right: 8px;
}

/* Responsive Design for Check-in */
@media (max-width: 768px) {
    .check-in-container {
        margin: 20px;
        padding: 25px;
    }
    
    .check-in-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .regulamin-preview {
        max-height: 300px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .check-in-section {
        padding: 100px 0 60px;
    }
    
    .check-in-container {
        margin: 10px;
        padding: 20px;
    }
    
    .check-in-header h1 {
        font-size: 1.8rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .checkbox-group {
        padding: 12px;
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
    }
}

/* RODO Information Styles */
.rodo-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rodo-info p {
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: 600;
}

.rodo-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodo-info li {
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
}

.rodo-info li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.rodo-info strong {
    color: #ffffff;
    font-weight: 600;
}

.rodo-info li {
    color: #cccccc;
}

@media (max-width: 768px) {
    .rodo-info {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .rodo-info li {
        margin-bottom: 6px;
    }
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 120px 0 80px;
    background: var(--primary-black);
    min-height: 100vh;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-black);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-gold);
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.privacy-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.privacy-content .privacy-section {
    padding: 0;
    background: none;
    min-height: auto;
}

.privacy-content .privacy-section h2 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.privacy-content .privacy-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-content .privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.privacy-content .privacy-section li {
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.privacy-content .privacy-section li:before {
    content: "•";
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-content .privacy-section strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.privacy-content .privacy-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.privacy-content .privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-container {
        margin: 20px;
        padding: 25px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-content .privacy-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
} 


@media (max-width: 900px) {
  .hero-background { height: 55vw; min-height: 200px; }
}
@media (max-width: 600px) {
  .hero-background { height: 60vw; min-height: 140px; max-height: 260px; }
} 

/* Booking Section Styles */
.booking-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.booking-info h3 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 20px;
}
.booking-info p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}
.booking-link {
  margin: 30px 0;
}
.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #111;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #b8860b, #d4af37);
}
.direct-booking-benefits {
  margin: 40px 0;
  padding: 30px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.direct-booking-benefits h4 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}
.benefit-item {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-5px);
}
.benefit-item i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}
.benefit-item h5 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.benefit-item p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
}
.booking-instructions {
  margin: 30px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.booking-instructions h4 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}
.booking-instructions ol {
  padding-left: 20px;
}
.booking-instructions li {
  color: #e0e0e0;
  margin-bottom: 10px;
  font-size: 1rem;
}
.message-example {
  margin-top: 30px;
  padding: 25px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.message-example h5 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
}
.example-text {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
  margin-bottom: 15px;
}
.example-text p {
  color: #e0e0e0;
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  line-height: 1.5;
}
.example-text p:last-child {
  margin-bottom: 0;
}
.example-note {
  color: #d4af37;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  margin: 0;
}
.contact-info-booking {
  margin: 30px 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.contact-info-booking h4 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.contact-method i {
  color: #d4af37;
  font-size: 1.2rem;
}
.contact-method span,
.contact-method a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.contact-method a:hover {
  color: #d4af37;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  .contact-methods {
    flex-direction: column;
    gap: 15px;
  }
  .booking-info h3 {
    font-size: 1.7rem;
  }
} 

/* 4 kolumny na desktopie */
@media (min-width: 1200px) {
  .booking-container {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    gap: 3rem;
  }
}

/* 2 kolumny na średnich ekranach */
@media (min-width: 900px) and (max-width: 1199px) {
  .booking-container {
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    gap: 2rem;
  }
}

/* 1 kolumna na mobile */
@media (max-width: 899px) {
  .booking-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.5rem;
  }
}

/* Instagram Section */
.instagram-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.instagram-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.instagram-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.instagram-embed iframe {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.instagram-info {
  padding: 20px;
}

.instagram-info h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.instagram-info ul {
  list-style: none;
  margin-bottom: 30px;
}

.instagram-info li {
  color: #e0e0e0;
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
  color: #ffffff;
}

.instagram-btn i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .instagram-feed {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .instagram-embed iframe {
    width: 100%;
    max-width: 350px;
    height: 400px;
  }
  
  .instagram-info {
    text-align: center;
  }
} 

/* Marketing Sections Styles */
.why-gold21 {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

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

.why-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

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

.why-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Freebies Section */
.freebies-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

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

.freebie-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.freebie-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.freebie-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.freebie-item h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.freebie-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.freebie-value {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.freebies-note {
    margin-top: 3rem;
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.freebies-note p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Premium Addons Section */
.premium-addons {
    padding: 5rem 0;
    background: var(--primary-black);
}

/* Guest Reviews Section */
.guest-reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

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

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.review-stars {
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-stars i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.review-author {
    color: var(--primary-gold);
    font-weight: 600;
    text-align: right;
}

/* Enhanced CTA Section */
.enhanced-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--text-white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-white);
    opacity: 0.9;
}

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

.cta-button-primary {
    background: var(--text-white);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-gold);
}

.cta-button-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--text-white);
}

.cta-button-secondary:hover {
    background: var(--text-white);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.benefit i {
    color: var(--text-white);
    font-size: 1.2rem;
}

/* Mobile Responsive for Marketing Sections */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .freebies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .why-item,
    .freebie-item,
    .review-item {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .freebie-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-gold21,
    .freebies-section,
    .premium-addons,
    .guest-reviews,
    .enhanced-cta {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
} 