/*
 * Wamsley Group Website - Main Stylesheet
 * A professional real estate website for the Dayton, Ohio area
 */

/* ========================================
   LAYOUT & STRUCTURE
   ======================================== */

/* Main layout - sticky footer pattern */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #212529;
}

main {
    flex: 1;
}

/* ========================================
   HERO & WELCOME SECTIONS
   ======================================== */

/* Welcome section with video background */
.welcomesec {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Background video */
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Welcome content container */
.homepagewelcomediv {
    position: relative;
    z-index: 1;
}

/* Welcome card styling */
.welcome {
    background-color: #212529;
    color: white;
    border-radius: 100px;
}

.homepagewelcome {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ========================================
   NAVIGATION
   ======================================== */

.toplogo {
    padding-left: 20px;
    padding-right: 25px;
}

.navbar-nav {
    padding-right: 20px;
}

/* ========================================
   BUTTONS & LINKS
   ======================================== */

.consultbtn {
    text-decoration: none;
    color: inherit;
}

.btn-circle {
    background-color: white;
}

/* ========================================
   CARDS & CONTENT
   ======================================== */

/* Contact section */
.contact-class {
    background-color: #212529;
    color: white;
}

/* About us page */
.about-us {
    color: white;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.aboutuscard {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ========================================
   TIMELINE COMPONENT
   ======================================== */

.timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footerlogo {
    max-height: 60px;
}

/* ========================================
   SOCIAL MEDIA ICONS
   ======================================== */

.fa-linkedin-in {
    color: #0A66C2 !important;
}

.fa-instagram {
    color: #E1306C !important;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.error {
    color: white;
}