/* Global Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #DEB887;
}

body {
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background-image: url('imgs/prplRedMarble.COVER.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    color: white;
    margin-top: -76px;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.hero-banner {
    background: rgba(0, 0, 0, 0.7);
    padding: 4rem 0;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: 35%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.hero-banner p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

/* Products Section */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Contact Form */
#contactForm {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

#contact {
    background-image: url('imgs/redMarble28657784.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 60vh;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    
    
}

#contactForm {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    
}

/* Custom Navbar */
.bg-orange {
    background-color: #e67729;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    gap: 0.5rem;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}
