/* Basic Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #FEFEFE;
    color: #1A1A1A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #FDB813; /* Accent color */
}


/* Header */
header {
    padding: 15px 0;
    background-color: rgba(254, 254, 254, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    height: 40px;
    display: block;
}

.contacts a {
    margin-left: 25px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin: 0 auto 40px;
    max-width: 800px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 20px;
    margin: 0 auto 50px;
    max-width: 600px;
    color: #555;
    text-align: center;
    margin-top: 20px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Events Section */
.events {
    padding: 80px 0;
    background-color: #F7F7F7;
    text-align: center;
}

.events h2 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 50px;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex-grow: 1;
}

/* Details Section */
.details {
    padding: 80px 0;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.details-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 50px;
}

.tabs .tab-button {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid #EAEAEA;
    background-color: #FFFFFF;
    border-radius: 12px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.tabs .tab-button:hover {
    background-color: #F7F7F7;
    border-color: #DDD;
}

.tabs .tab-button.active {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.details-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.details-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.details-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.details-info li {
    font-size: 18px;
    margin-bottom: 12px;
}

.price {
    background-color: #F7F7F7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.price p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.price p:first-child {
    margin-bottom: 10px;
}

.price-calculator {
    background-color: #F7F7F7;
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.price-calculator h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
}

.slider-container {
    position: relative;
    margin-bottom: 15px;
}

.slider {
    appearance: none;
    width: 100%;
    height: 8px;
    background: #EAEAEA;
    border-radius: 5px;
    outline: none;
    opacity: 0.9;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 50%;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.price-display {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    text-align: center;
    color: #555;
    margin: 0;
}

.included {
    margin-top: 40px;
    padding: 30px;
    border-radius: 16px;
    background-color: #F7F7F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.included-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.included-list ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.included-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.included-delivery p {
    color: #1A1A1A;
    font-weight: 600;
    text-align: center;
    padding: 15px 25px;
    border-style: solid;
    border-radius: 12px;
    border-width: 1px;	
    border-color: #FDB813;
    font-size: 18px;
    margin: 0;
}

.additional-info {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #EAEAEA;
    padding-top: 60px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
    list-style: disc;
    padding-left: 20px;
}

.info-block li {
    margin-bottom: 8px;
}

.delivery-details-note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #F7F7F7;
}

.faq h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

.faq-item {
    border-bottom: 1px solid #EAEAEA;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-bottom: 25px;
    margin: 0;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #1A1A1A;
    color: #FFFFFF;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

footer h2 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

footer p {
    font-size: 18px;
    color: #AAA;
    margin-bottom: 30px;
}

.footer-contacts {
    margin-bottom: 80px;
}

.footer-contacts a {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: #FDB813;
}

.copyright {
    font-size: 14px;
    color: #666;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-bottom: 0;
}

/* --- Responsive Styles --- */

/* Tablet and smaller */
@media (max-width: 992px) {
    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    /* Header */
    .logo img {
        height: 32px;
    }

    .contacts a[href^="mailto"] {
        display: none;
    }
    
    .contacts a {
        margin-left: 15px;
        font-size: 15px;
    }

    /* Typography */
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero .subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    h2,
    .details-header h2,
    .faq h2,
    footer h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* Sections */
    .hero, .events, .details, .faq {
        padding: 60px 0;
    }
    
    footer {
        padding: 60px 0 20px;
    }

    /* Event Cards */
    .event-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Details Section */
    .details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .details-header h2 {
        margin-bottom: 0;
    }
    
    .tabs {
        width: 100%;
        display: flex;
    }
    
    .tabs .tab-button {
        flex-grow: 1;
        margin-left: 0;
    }
    
    .tabs .tab-button:first-child {
        margin-right: 10px;
    }

    /* Included Section */
    .included {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }

    .included-list {
        text-align: left;
    }

    /* Footer */
    footer .container {
        min-height: auto;
    }

    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .footer-contacts a {
        margin: 0;
    }
}
