@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#1f1b18;
    color:#e7d9c3;
    font-family:'Roboto',sans-serif;
}

header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(20,15,12,.95);
    border-bottom:3px solid #8b4513;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 40px;
}

.logo{
    font-family:'Oswald',sans-serif;
    font-size:2rem;
    color:#d9a25f;
    text-shadow:
        0 0 10px #000,
        0 0 20px #6b3410;
}

.logo span{
    display:block;
    font-size:.8rem;
    letter-spacing:3px;
    color:#bfb1a0;
}

nav a{
    color:#e7d9c3;
    text-decoration:none;
    margin-left:25px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#d88b3c;
}

.hero{
    height:100vh;

    background:
        linear-gradient(
            rgba(20,10,5,.65),
            rgba(20,10,5,.75)
        ),
        url("image.png");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.overlay{
    max-width:900px;
    padding:30px;
}

.hero h1{
    font-family:'Oswald',sans-serif;
    font-size:5rem;
    line-height:1.1;
    color:#f4e3c3;

    text-shadow:
        3px 3px 0 #000,
        0 0 25px #7a3f15;
}

.hero p{
    font-size:1.3rem;
    margin-top:20px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;

    background:#8b4513;
    color:white;

    padding:15px 40px;

    text-decoration:none;
    font-weight:bold;
    border:2px solid #c27b42;

    transition:.3s;
}

.btn:hover{
    background:#b35d1d;
    transform:translateY(-3px);
}

.section{
    padding:100px 50px;
}

.section h2{
    text-align:center;
    font-family:'Oswald',sans-serif;
    font-size:3rem;
    margin-bottom:50px;

    color:#d79c58;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#30261f;
    border:2px solid #71411c;
    padding:30px;

    box-shadow:
        inset 0 0 15px rgba(0,0,0,.5),
        0 0 20px rgba(0,0,0,.4);
}

.card h3{
    margin-bottom:15px;
    color:#d79c58;
}

.dark-section{
    background:#151210;
}

.marina-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.marina-grid div{
    background:#2a211b;
    padding:25px;
    border-left:5px solid #b36b2d;
}

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
    line-height:1.8;
    font-size:1.1rem;
}

.quote-box{
    margin:50px auto 0;
    max-width:800px;

    padding:30px;

    text-align:center;

    background:#382c24;
    border:2px dashed #b36b2d;

    font-size:1.3rem;
    font-style:italic;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    text-align:center;
}

.contact-grid div{
    background:#2b221c;
    padding:25px;
    border:1px solid #71411c;
}

footer{
    text-align:center;
    padding:25px;
    background:#0f0c0a;
    border-top:2px solid #71411c;
    color:#9e8c78;
}

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .section{
        padding:70px 20px;
    }
}

/* Low Grade Stamp */

.low-grade-stamp {
    position: absolute;
    top: 140px;
    right: 8%;
    width: 280px;
    padding: 20px;
    border: 8px solid #b22222;
    border-radius: 12px;
    text-align: center;
    font-family: "Impact", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #b22222;
    background: rgba(255, 245, 220, 0.85);
    transform: rotate(-12deg);
    text-shadow: 1px 1px 0 #fff;
    box-shadow:
        0 0 15px rgba(0,0,0,0.6),
        inset 0 0 10px rgba(178,34,34,0.3);
    z-index: 10;
    letter-spacing: 2px;
}

.low-grade-stamp span {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #7a0d0d;
}

.low-grade-stamp {
    background: rgba(255,245,220,.75);
    border: 10px double #8b0000;
    transform: rotate(-15deg);
    opacity: .92;
    text-transform: uppercase;
    filter: sepia(30%);
}
