@font-face {
    font-family: 'MilkyBar';
    src: url('../fonts/MilkyBar-Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bar Sady';
    src: url('../fonts/BAR_SADY-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bar Sady';
    src: url('../fonts/BAR_SADY-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Bar Sady';
    src: url('../fonts/BAR_SADY-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --color-primary: #003049;
    --color-secondary: #d62828;
    --color-background: #fdfcdc;
    --color-text: #333;
    --font-heading: 'Bar Sady', sans-serif;
    --font-body: 'MilkyBar', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: #f8f7f2;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 18px;
}

.navbar {
    background-color: #f6f6f6;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    padding: 15px 0;
}

.logo img {
    height: 40px;
    display: block;
}

.navbar nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar nav a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
    padding: 25px 0;
}

.navbar nav a:hover {
    color: var(--color-secondary);
}

section {
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-top: 0;
}

h2 {
    font-size: 3.5rem;
	font-family: 'MilkyBar';
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 1rem;
    text-transform: uppercase;
}

#o-nas h2 {
    font-family: var(--font-body);
    font-weight: normal;
}

.h2-subtitle {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 2rem;
    color: var(--color-secondary);
    margin-top: -10px;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #007199;
    margin-bottom: 10px;
    padding-bottom: 0.5rem;
    font-weight: normal;
    text-align: left;
    border-bottom: none;
    padding: 0;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    color: var(--color-primary);
    padding: 40px 20px;
}

.hero-with-lamp {
    background-image: url('../img/przelot_lampa.png'), url('../img/przelot_tlo.jpg');
    background-position: top center, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding-top: 0px;
}

.hero-graphic {
    max-width: 100%;
    height: auto;
}

.dowozi-header {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 4rem;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 2px;
    transform: rotate(-7deg);
    display: inline-block;
}

.delivery-info {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.9;
    padding: 10px;
}

.cta-button {
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 0;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 5px;
    padding-bottom: 28px;
}

.cta-button:hover {
    background-color: #a31e1e;
    transform: scale(1.05);
}

#o-nas {
    background-color: #fff;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.2rem;
}

.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.menu-table {
    border: 2px solid var(--color-text);
    margin-bottom: 40px;
}

.menu-item {
    display: flex;
    padding: 0;
    border-bottom: 2px solid var(--color-text);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span {
    padding: 10px 10px 25px 10px;
}

.menu-item span:first-child {
    flex: 1;
    text-align: left;
}

.menu-item span:last-child {
    flex-basis: 120px;
    flex-shrink: 0;
    font-weight: 700;
    white-space: nowrap;
    border-left: 2px solid var(--color-text);
    text-align: left;
    padding-left: 15px;
}

.bottom-banner {
    margin-bottom: 20px;
}

.bottom-banner-img {
    max-width: 100%;
    height: auto;
}

.special-offer {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    border: 2px solid var(--color-text);
    padding: 20px 40px;
}

.special-offer h3 {
    text-align: center;
    border-bottom: none;
    color: #007199;
    font-weight: bold;
    font-size: 2rem;
}

.special-offer p {
    font-family: var(--font-body);
    font-weight: normal;
    font-size: 1.5rem;
    margin: 10px 0;
}

.special-offer .delivery-details {
    font-size: 1.2rem;
    font-weight: normal;
}

.outro-text {
    margin-top: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-secondary);
}

.breakfast-outro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 1rem;
    font-weight: light;
}

.social-media-section {
    padding: 40px 20px;
}

.social-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons img {
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

#kontakt {
    background-color: #88cbe2;
    padding: 0;
}

#kontakt .container {
    padding-top: 0px;
    padding-bottom: 0px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.logo-footer {
    max-width: 250px;
    height: auto;
}

.contact-address {
    margin: 2rem 0;
}

.contact-address p {
    font-family: var(--font-body);
    font-weight: normal;
    font-size: 1.8rem;
    color: var(--color-text);
    line-height: 1.4;
    margin: 5px 0;
}

.contact-address a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: bold;
}

.contact-footer-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.map-container {
    flex: 1.5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        gap: 30px;
    }
    .map-container {
        width: 100%;
        height: 400px;
        flex: none;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .dowozi-header {
        font-size: 3rem;
    }
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding: 10px 0;
    }
    .logo {
        padding: 0;
    }
    .navbar nav a {
        padding: 5px 0;
    }
	.cta-button {
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 0;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 29px;
	}
	
	.menu-item span {
    padding: 10px 10px 15px 10px;
}
	
#kontakt .container {
    padding-top: 0px;
    padding-bottom: 0px;
	}
	
    .menu-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        text-align: center;
    }
    .contact-info {
        margin-bottom: 2rem;
    }
}