/* Town Country Theme Styles */

/* Navigation Styles */
.navbar-dark {
    background-color: #1a1a1a !important;
    padding: 1rem 0;
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

.navbar-nav .nav-link.active {
    color: #d4af37 !important;
}


/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.search-container {
    width: 100%;
    max-width: 600px;
}

.search-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 0;
    display: flex;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
}

.search-icon {
    margin-right: 1rem;
    opacity: 0.7;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    width: 100%;
    outline: none;
}

.search-input::placeholder {
    color: #666;
    font-style: italic;
}

.search-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1rem 2rem;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-input-group {
        padding: 1rem;
    }
    
    .search-button {
        padding: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
}

/* Additional Theme Colors */
:root {
    --towncountry-gold: #d4af37;
    --towncountry-dark: #1a1a1a;
    --towncountry-light: #f8f9fa;
}

/* Button Styles */
.btn-towncountry {
    background-color: var(--towncountry-gold);
    border-color: var(--towncountry-gold);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-towncountry:hover {
    background-color: #b8941f;
    border-color: #b8941f;
    color: white;
} 

/* Favorite Badge */
.favorite-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.favorite-badge:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.favorite-badge i {
    font-size: 16px;
} 