/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.main-header {
    background: white;
    border-bottom: 3px solid #8b2b23;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

/* LOGO MARE */
.site-logo {
   height: 120px;
    width: auto;
    display: block;
}

/* MENIU */
.main-nav a {
    text-decoration: none;
    color: #fc0000;
    margin-left: 25px;
    font-size: 28px;
}

.main-nav a:hover {
    color: #07fff3;
}

/* BUTON HOME */
.btn-contact {
    background: #8b2b23;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
}

/* HERO */
.hero {
    background: #8b2b23;
    color: white;
    text-align: center;
    padding: 90px 20px 140px 20px;
}

.hero h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

/* FOOTER STÂNGA JOS */
.footer {
    background: #eee;
    padding: 15px 40px;
    text-align: left;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}.slider{
max-width:1000px;
margin:40px auto;
position:relative;
}

