/* 
   ===============================================================================================================================================================================================
   OFERTA STUDNIÓWKOWA - DEDYKOWANE STYLE (MOBILE + DESKTOP)
   ===============================================================================================================================================================================================
*/

:root {
    --prom-gold: #d4af37;
    --prom-dark: #0f0f0f;
    --prom-black: #000000;
    --prom-grey: #1a1a1a;
    --prom-white: #ffffff;
    --prom-text: #e0e0e0;
}

.prom-body {
    background-color: var(--prom-black);
    color: var(--prom-text);
    overflow-x: hidden;
}

/* Typography Standard */
.prom-section-header,
.prom-main-title,
.prom-sub-title,
.prom-name,
.prom-price-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HERO SECTION */
.prom-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Added overflow hidden */
}

.prom-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    /* Center the image */
    z-index: 0;
}

.prom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.prom-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.prom-main-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.prom-alert-badge {
    display: inline-block;
    background: #ff4d4d;
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.prom-sub-title {
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--prom-gold);
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.prom-hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.prom-hero-btn {
    background: var(--prom-gold);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
}

.prom-hero-btn:hover {
    background: #b59020;
    transform: translateY(-3px);
}

/* LOGO DIVIDER (Same as wedding) */
.prom-logo-divider {
    background: var(--prom-gold);
    padding: 40px 0;
    text-align: center;
}

.prom-logo-divider .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.prom-logo-divider img {
    max-height: 50px;
    width: auto;
}

.prom-logo-divider i {
    color: white;
    font-size: 2.5rem;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.prom-section-dark {
    background: var(--prom-grey);
}

.prom-section-black {
    background: var(--prom-black);
}

.prom-section-header {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 20px;
    color: white;
}

.prom-divider {
    width: 60px;
    height: 3px;
    background: var(--prom-gold);
    margin: 0 auto 30px auto;
}

.prom-lead-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
}

/* POZNAJ NAS (WESELNA STYLE) */
.prom-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.prom-team-description {
    text-align: left;
}

.prom-team-member {
    margin-bottom: 40px;
}

.prom-team-member h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--prom-gold);
    margin-bottom: 5px;
    font-weight: 900;
}

.prom-team-member h4 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.prom-team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.prom-about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* TECH GRID */
.prom-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.prom-tech-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-align: center;
}

.prom-tech-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.prom-tech-item i {
    font-size: 2.5rem;
    color: var(--prom-gold);
    margin-bottom: 20px;
}

.prom-tech-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.prom-tech-item p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

/* FEATURES GRID (ATRAKCJE) */
.prom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prom-feature-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--prom-grey);
    border: 1px solid #333;
    transition: 0.3s;
}

.prom-feature-box:hover {
    border-color: var(--prom-gold);
    transform: translateY(-5px);
}

.prom-icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid var(--prom-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    color: var(--prom-gold);
}

.prom-feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: white;
}

.prom-feature-box p {
    font-size: 0.9rem;
    color: #888;
}

/* PRICING */
.prom-pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prom-price-card {
    background: #111;
    padding: 40px 30px;
    border: 1px solid #222;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.prom-price-card.prom-featured {
    border: 2px solid var(--prom-gold);
    background: #151515;
    transform: scale(1.05);
    z-index: 2;
}

.prom-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--prom-gold);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.prom-card-head h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.prom-card-head span {
    color: var(--prom-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.prom-card-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.prom-card-list li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 0.95rem;
}

.prom-card-list li i {
    color: var(--prom-gold);
    margin-right: 10px;
}

.btn-gold {
    background: var(--prom-gold);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-outline-gold {
    border: 1px solid var(--prom-gold);
    color: var(--prom-gold);
    padding: 11px 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--prom-gold);
    color: white;
}

.full-width {
    width: 100%;
    box-sizing: border-box;
}

/* FAQ */
.prom-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.prom-faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
}

.prom-faq-q {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: 0.3s;
}

.prom-faq-q:hover {
    color: var(--prom-gold);
}

.prom-faq-a {
    display: none;
    padding-bottom: 20px;
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.prom-faq-item.active .prom-faq-a {
    display: block;
}

.prom-faq-item.active i {
    transform: rotate(45deg);
    color: var(--prom-gold);
}

/* CONTACT */
.prom-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: #000;
    padding: 50px;
    border: 1px solid #222;
}

.prom-contact-info h3 {
    margin-bottom: 20px;
    color: white;
}

.prom-contact-info p {
    color: #888;
    margin-bottom: 30px;
}

.prom-info-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: white;
}

.prom-info-item i {
    color: var(--prom-gold);
    width: 30px;
}

.prom-socials-big {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.prom-socials-big a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.prom-socials-big a:hover {
    color: var(--prom-gold);
}

.prom-contact-form .form-group {
    margin-bottom: 15px;
}

.prom-contact-form input,
.prom-contact-form select,
.prom-contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
    border-radius: 4px;
}

.prom-contact-form input:focus,
.prom-contact-form select:focus,
.prom-contact-form textarea:focus {
    outline: none;
    border-color: var(--prom-gold);
}

/* FOOTER (WESELNA STYLE) */
.prom-footer {
    background: #080808;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.prom-footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.prom-footer-socials a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.prom-footer-socials a:hover {
    color: var(--prom-gold);
    background: rgba(255, 255, 255, 0.1);
}

.prom-footer-copy {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.prom-back-to-top {
    color: var(--prom-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.prom-back-to-top:hover {
    color: #fff;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
    .prom-about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .prom-about-img {
        order: -1;
    }
}

@media (max-width: 900px) {
    .prom-hero-content {
        padding: 0 15px;
    }

    .prom-tech-grid,
    .prom-faq-grid,
    .prom-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .prom-contact-wrapper {
        padding: 25px;
    }

    .prom-price-card.prom-featured {
        transform: scale(1);
    }

    .prom-logo-divider .container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .prom-hero-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .prom-features-grid {
        grid-template-columns: 1fr;
    }

    .prom-pricing-container {
        grid-template-columns: 1fr;
    }
}