/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Original Styles from application.scss */
body {
    background-color: #ffffff;
    /* White Background */
    color: #333333;
    /* Dark Gray for Text */
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Section */
.jumbotron {
    background-color: #8B5E3C !important;
    /* Brown */
    color: white;
    border-radius: 8px;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-custom {
    background-color: #8B5E3C;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    border: none;
}

.btn-custom:hover {
    background-color: #6D4C32;
    color: white;
}

.btn-outline-custom {
    border: 2px solid #8B5E3C;
    color: #8B5E3C;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: #8B5E3C !important;
    color: white !important;
    border-color: #8B5E3C !important;
}

.btn-contact-submit {
    background: white !important;
    color: #8B5E3C !important;
    font-weight: bold;
}

.btn-contact-submit:hover {
    background: white !important;
    color: #8B5E3C !important;
}

.btn-contact-submit:active {
    background-color: #f2f2f2 !important;
    /* Light gray for active state */
    color: #8B5E3C !important;
    border-color: #f2f2f2 !important;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #8B5E3C;
    border-radius: 50%;
}

.team-photo img.rosa-photo {
    object-position: center 20%;
}

.team-photo img.jace-photo {
    object-position: center 35%;
}

.team-photo.placeholder {
    background-color: #d3c0b0;
    border-radius: 50%;
    color: #8B5E3C;
}

/* Footer */
footer {
    background-color: #8B5E3C;
    /* Changed to match layout inline style */
    color: white;
    padding: 1rem;
    text-align: center;
    margin-top: auto;
}

/* Navbar overrides */
.navbar {
    background-color: #8B5E3C !important;
    padding: 0.75rem 2rem;
}

.nav-link {
    color: white !important;
}

/* Product Card Hover */
.product-card:hover {
    transform: translateY(-10px);
    transition: transform 0.2s ease-in-out;
}

/* Responsive Hero Button */
@media (max-width: 576px) {
    .btn-sm-custom {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem !important;
    }

    .hero-content {
        padding-bottom: 0.5rem !important;
    }
}