/* ScandiPinoy Street Grill - style.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff8ef;
    color: #2b1b12;
    line-height: 1.6;
}

/* Generelt */
img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container,
section {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Header */
header {
    background: linear-gradient(135deg, #b30000, #e63900);
    color: white;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 6px solid #ffcc00;
}

header img,
.logo {
    max-width: 180px;
    margin-bottom: 15px;
}

header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Navigation */
nav {
    background: #2b1b12;
    color: white;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
}

nav a:hover {
    color: #ffcc00;
}

/* Hero / topområde */
.hero {
    background: #fff0d6;
    padding: 45px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    color: #b30000;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero img {
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    margin-top: 25px;
}

/* Knapper */
.button,
.btn,
.cta {
    display: inline-block;
    background: #b30000;
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.button:hover,
.btn:hover,
.cta:hover {
    background: #e63900;
}

/* Sektioner */
section {
    padding: 45px 0;
}

section h2 {
    color: #b30000;
    font-size: 1.9rem;
    margin-bottom: 18px;
    text-align: center;
}

section h3 {
    color: #2b1b12;
    margin-bottom: 10px;
}

section p {
    margin-bottom: 14px;
}

/* Kort / bokse */
.card,
.box,
.info-box {
    background: white;
    padding: 25px;
    margin: 18px 0;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    border-left: 6px solid #ffcc00;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

/* Lister */
ul {
    margin: 15px 0 15px 25px;
}

li {
    margin-bottom: 8px;
}

/* Billede af Kim og Irene */
.kim-irene,
.kim-irene img,
.about img {
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.22);
}

/* Kontakt */
.contact,
.kontakt {
    background: #2b1b12;
    color: white;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.contact h2,
.kontakt h2 {
    color: #ffcc00;
}

.contact a,
.kontakt a {
    color: #ffcc00;
    font-weight: bold;
}

/* Footer */
footer {
    background: #1c120c;
    color: white;
    text-align: center;
    padding: 25px 15px;
    margin-top: 40px;
}

footer a {
    color: #ffcc00;
}

/* Mobilvenlig */
@media (max-width: 700px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    nav a {
        display: block;
        margin: 8px 0;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    section {
        width: 94%;
        padding: 30px 0;
    }
}