/* ====================================
   Base Styles
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:var(--font-family);

    background:var(--background);

    color:var(--text);

    line-height:var(--line-height);

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

.container{

    width:min(92%,1200px);

    margin:auto;

}

/* ====================================
   Header
==================================== */

.site-header{

    background:white;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.site-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 0;

}

.logo{

    display:flex;

    gap:18px;

    align-items:center;

}

.logo img{

    width:140px;

    height:auto;

}

.logo h1{

    font-size:1.8rem;

    color:var(--primary);

}

.tagline{

    color:var(--text-light);

}

/* ====================================
Navigation
==================================== */

nav ul{

    display:flex;

    list-style:none;

    gap:30px;

}

nav a{

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:var(--secondary);

}

/* ====================================
Hero
==================================== */

.hero{

    min-height:80vh;

    display:flex;

    align-items:center;

    color:white;

}

.hero-content{

    width:min(90%,900px);

    margin:auto;

    text-align:center;

}

.hero h2{

    font-size:3.5rem;

    margin-bottom:20px;

}

.hero p{

    font-size:1.2rem;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.button-primary,
.button-secondary{

    padding:15px 32px;

    border-radius:50px;

    font-weight:bold;

}

.button-primary{

    background:var(--secondary);

    color:white;

}

.button-secondary{

    border:2px solid white;

    color:white;

}

/* ====================================
Cards
==================================== */

.features{

    padding:80px 0;

}

.features .container{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:30px;

}

.card{

    background:white;

    padding:30px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

/* ====================================
Sections
==================================== */

.featured,
.community,
.stewardship{

    padding:80px 0;

}

.featured{

    background:white;

}

.community{

    background:#eef7f4;

}

.stewardship{

    background:#f4f8fb;

}

/* ====================================
Footer
==================================== */

footer{

    background:var(--primary);

    color:white;

    padding:50px 0;

    text-align:center;

}

/* ====================================
   Module 008 - Homepage Branding
==================================== */

.welcome-section {

    padding: 70px 0;

    background: var(--background);

}

.welcome-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 360px);

    gap: 50px;

    align-items: center;

}

.welcome-content {

    max-width: 720px;

}

.section-kicker {

    margin-bottom: 10px;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: var(--secondary);

}

.welcome-content h2 {

    margin-bottom: 20px;

    font-size:
        clamp(2rem, 4vw, 3rem);

}

.welcome-content p {

    margin-bottom: 16px;

}

.welcome-tagline {

    margin-top: 25px;

    font-weight: 700;

    font-style: italic;

}

.ad-slot {

    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: #fafafa;

    border: 1px solid #ddd;

    border-radius: var(--radius);

    color: var(--text-light);

    text-align: center;

    font-size: 0.8rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}

/* ShoreFishing.net footer tagline */
.footer-tagline {
    max-width: 900px;
    margin: 14px auto 0;
    font-style: italic;
    line-height: 1.6;
}

/* ShoreFishing.net responsive advertising */
.site-ad {
    width: 100%;
    max-width: 1100px;
    margin: 34px auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.site-ad-label {
    margin-bottom: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
}

.site-ad .adsbygoogle {
    width: 100%;
}

@media (max-width: 600px) {
    .site-ad {
        margin: 24px auto;
        padding: 0 14px;
    }
}


/* Fishing Tips hub */
.tips-hub {
    padding: 70px 0 90px;
}

.tips-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.tips-intro p {
    line-height: 1.8;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.tips-card {
    display: block;
    padding: 28px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tips-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.tips-number {
    display: block;
    margin-bottom: 18px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .7;
}

.tips-card h3 {
    margin-bottom: 12px;
}

.tips-card p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.tips-link {
    font-weight: 700;
}

.tips-card-wide {
    background: #f7f7f7;
}

@media (max-width: 700px) {
    .tips-hub {
        padding: 50px 0 65px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}
