/* General Styling */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #DA4453; /* A warm red for links */
}

a:hover {
    color: #B52B3B;
}

.btn {
    display: inline-block;
    background: #DA4453; /* Red button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #B52B3B;
}

.btn-primary {
    font-size: 1.2em;
    padding: 12px 25px;
}

.btn-secondary {
    background: #555;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: #333;
}

.section-padded {
    padding: 60px 0;
}

.bg-light {
    background-color: #e9e9e9;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 15px 0;
    border-bottom: 5px solid #DA4453;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    color: #fff;
    font-size: 2.5em;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f0f0f0;
}

/* Hero Section */
.hero {
    background: url('../images/front_images/background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #f0f0f0;
}

/* Pizza Grid */
.pizza-grid, .beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.pizza-item, .beer-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pizza-item:hover, .beer-item:hover {
    transform: translateY(-5px);
}

.pizza-item img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.beer-item img {
    max-width: 150px; /* Adjust as needed */
    height: auto;
    margin-bottom: 15px;
}

.pizza-item h3, .beer-item h3 {
    margin-top: 0;
    color: #DA4453;
}

.pizza-item p, .beer-item p {
    font-size: 0.95em;
    color: #666;
}

/* Contact Section */
.map-placeholder {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.map-placeholder iframe {
    width: 100%;
    height: 300px;
    display: block;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

.social-links a {
    margin-left: 15px;
    display: inline-block;
}

.social-links img {
    width: 24px;
    height: 24px;
    border-radius: 50%; /* Make them circular */
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

.social-links a {
    margin-left: 15px;
    display: inline-block;
}

.social-links img { /* This styles your current placeholder images */
    width: 24px;
    height: 24px;
    border-radius: 50%; /* Make them circular */
    transition: transform 0.3s ease;
}

/* --- Add this new CSS for Font Awesome icons --- */
.social-links a i {
    font-size: 24px; /* Set the size of the icon */
    color: #fff;    /* Set the color of the icon */
    /* If you want a circular background for the icon, you can add this */
    /*
    background-color: #4267B2; /* Facebook blue */
    /* padding: 5px; */
    /* border-radius: 50%; */
    */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.social-links a i:hover {
    transform: scale(1.1); /* Hover effect for the icon */
}
/* --- End of new CSS --- */


.social-links img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li {
        margin: 5px 10px;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .pizza-grid, .beer-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
    }

    .social-links {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .btn-primary {
        font-size: 1em;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li {
        margin: 5px 10px;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .pizza-grid, .beer-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
    }

    .social-links {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .btn-primary {
        font-size: 1em;
    }
}