/* ================================================
   SALTY DOG - Homepage Styles
   ================================================ */

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a3d5c 0%, #0d5a8a 100%);
    padding: 80px 32px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero h1 span { color: #f5c842; }

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    margin-bottom: 40px;
}

/* SEARCH BOX */
.search-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.search-field label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.search-field input,
.search-field select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #fafafa;
}

.search-field input:focus,
.search-field select:focus {
    border-color: #0a3d5c;
    background: #fff;
}

.btn-search {
    background: #f5c842;
    color: #0a3d5c;
    border: none;
    border-radius: 9px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    height: 42px;
}

.btn-search:hover { opacity: 0.9; }

.featured-section { background: #f8fafc; }

/* WAVE DIVIDER */
.hero-wave {
    background: #0a3d5c;
    height: 50px;
    position: relative;
}

.hero-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #f8fafc;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

@media (max-width: 768px) {
    .hero { padding: 48px 16px 64px; }
    .hero h1 { font-size: 28px; }
    .search-box {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}