/* ==========================================================================
   BRAND PARTNERSHIPS PAGE
   ========================================================================== */

.brand-partnerships-page {
    font-family: 'Cormorant Garamond', serif;
    color: #000;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.bp-hero-section {
    padding: 0px 0 0px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.bp-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bp-hero-text {
    padding-right: 40px;
}

.bp-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.bp-hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 40px 0;
    color: #333;
}

.bp-hero-button {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.bp-hero-button:hover {
    background: #000;
    color: #fff;
}

.bp-hero-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.bp-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

/* ==========================================================================
   Value Proposition Section
   ========================================================================== */

.bp-value-section {
    background: #F9F9F9;
    padding: 80px 5vw;
    text-align: center;
}

.bp-value-container {
    max-width: 900px;
    margin: 0 auto;
}

.bp-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.bp-value-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 15px 0;
    color: #333;
}

.bp-value-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   Partnership Opportunities Section
   ========================================================================== */

.bp-opportunities-section {
    padding: 80px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.bp-opportunities-container {
    text-align: center;
}

.bp-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.bp-opportunity-card {
    background: #F5F5F5;
    padding: 50px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bp-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.bp-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.bp-contact-section {
    background: #F9F9F9;
    padding: 80px 5vw;
}

.bp-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.bp-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.bp-approach-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.bp-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.bp-form-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 40px 0;
}

/* Form Styling */
.bp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bp-form-input,
.bp-form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.bp-form-input:focus,
.bp-form-textarea:focus {
    outline: none;
    border-color: #000;
}

.bp-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.bp-form-submit {
    padding: 16px 50px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.bp-form-submit:hover {
    background: #333;
}

/* Formidable Forms Styling */
.bp-form-wrapper .frm_forms {
    margin: 0;
}

.bp-form-wrapper .frm_form_fields fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.bp-form-wrapper .frm_form_field {
    margin-bottom: 20px;
}

.bp-form-wrapper .frm_form_field label {
    display: none;
}

.bp-form-wrapper .frm_form_field input[type="text"],
.bp-form-wrapper .frm_form_field input[type="email"],
.bp-form-wrapper .frm_form_field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.bp-form-wrapper .frm_form_field input:focus,
.bp-form-wrapper .frm_form_field textarea:focus {
    outline: none;
    border-color: #000;
}

.bp-form-wrapper .frm_form_field textarea {
    resize: vertical;
    min-height: 120px;
}

.bp-form-wrapper .frm_submit {
    margin: 0;
}

.bp-form-wrapper .frm_submit button,
.bp-form-wrapper .frm_submit input[type="submit"] {
    padding: 16px 50px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bp-form-wrapper .frm_submit button:hover,
.bp-form-wrapper .frm_submit input[type="submit"]:hover {
    background: #333;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .bp-hero-content {
        gap: 40px;
    }
    
    .bp-hero-title {
        font-size: 56px;
    }
    
    .bp-hero-image {
        max-height: 500px;
    }
    
    .bp-hero-image img {
        max-height: 500px;
    }
    
    .bp-opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bp-contact-container {
        gap: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bp-hero-section {
        padding: 50px 5vw;
    }
    
    .bp-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bp-hero-text {
        padding-right: 0;
    }
    
    .bp-hero-title {
        font-size: 42px;
    }
    
    .bp-hero-description br {
        display: none;
    }
    
    .bp-hero-image {
        max-height: 400px;
    }
    
    .bp-hero-image img {
        max-height: 400px;
    }
    
    .bp-section-title {
        font-size: 36px;
    }
    
    .bp-opportunities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bp-opportunity-card {
        padding: 40px 25px;
    }
    
    .bp-contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .bp-contact-title,
    .bp-form-title {
        font-size: 32px;
    }
}
