
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f4f4f1;
    color: #222;
    line-height: 1.6;
}

header {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://www.royalwolf.com.au/uploads/images/Products/10ft-shipping-container-2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

header h1 {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

header p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

nav {
    background: white;
    padding: 18px;
    text-align: center;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav a {
    color: #1f3d2b;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 600;
}

section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 50px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

h2 {
    color: #1f3d2b;
    font-size: 34px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background: #1f3d2b;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.button:hover {
    background: #2c5a3e;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
    box-sizing: border-box;
}

form button {
    background: #1f3d2b;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

footer {
    background: #132419;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
}
