.catering-page {
    background-color: #000;
    color: #fff;
}

.catering-hero {
    background-color: #000;
    padding: 100px 0 50px;
    position: relative;
    margin-top: 8%; 
}

.catering-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(220, 190, 160, 0), rgba(220, 190, 160, 0.5), rgba(220, 190, 160, 0));
}

.catering-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.page-title span {
    color: #dcbea0;
    font-weight: 500;
}

.accent-line {
    display: block;
    width: 80px;
    height: 3px;
    background-color: rgb(220, 190, 160);
    margin: 0 auto 20px;
}

.catering-content-section {
    background-color: #000;
    color: #fff;
    padding: 30px 0 100px;
    position: relative;
    overflow: hidden;
}

.catering-content-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.catering-content {
    opacity: 1;
    transform: none;
}

.catering-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.section-title span {
    color: #dcbea0;
    font-weight: 500;
}

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.catering-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.detail-block {
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(220, 190, 160, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.detail-block:hover {
    border-color: rgba(220, 190, 160, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 190, 160, 0.1);
}

.detail-icon {
    color: #dcbea0;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.detail-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #dcbea0;
    margin-bottom: 15px;
}

.detail-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.catering-pricing {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.pricing-box {
    background-color: rgba(30, 30, 30, 0.7);
    border: 2px solid rgba(220, 190, 160, 0.3);
    border-radius: 8px;
    padding: 40px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #dcbea0;
    margin-bottom: 20px;
}

.pricing-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.catering-contact {
    text-align: center;
    margin-top: 60px;
}

.contact-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: transparent;
    border: 2px solid rgb(220, 190, 160);
    color: rgb(220, 190, 160);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.contact-button span {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.contact-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    color: #000;
}

.contact-button:hover svg {
    transform: translateX(5px);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgb(220, 190, 160);
    transition: width 0.3s ease;
    z-index: 1;
}

.contact-button:hover::before {
    width: 100%;
}

@media (max-width: 991px) {
    .page-title {
        font-size: 3.5rem;
    }
    
    .catering-hero {
        padding: 80px 0 40px;
        margin-top: 10%; 
    }
    
    .catering-details {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .catering-hero {
        padding: 70px 0 30px;
        margin-top: 15%; 
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .catering-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-block {
        padding: 30px 25px;
    }
    
    .pricing-box {
        padding: 30px 40px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .catering-hero {
        padding: 60px 0 30px;
        margin-top: 20%;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .detail-block {
        padding: 25px 20px;
    }
    
    .detail-title {
        font-size: 1.2rem;
    }
    
    .pricing-box {
        padding: 25px 30px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
}

