*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    color:#111;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#041938;
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

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

.logo{
    height:70px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#c9a24d;
}

.hero{
    height:90vh;
    background: url('photos/62.jpg') center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    color:white;
    z-index:2;
    max-width:700px;
}

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

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#c9a24d;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#a8863c;
}

.section{
    padding:100px 0;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
    color:#041938;
}

.dark{
    background:#041938;
    color:white;
}

.dark h2{
    color:white;
}

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

.card{
    background:white;
    color:#111;
    padding:40px;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.gallery-menu{
    text-align:center;
    margin-bottom:40px;
}

.gallery-menu button{
    border:none;
    padding:12px 24px;
    margin:5px;
    background:#ddd;
    cursor:pointer;
    font-weight:bold;
    border-radius:5px;
    transition:0.3s;
}

.gallery-menu button:hover,
.gallery-menu .active{
    background:#c9a24d;
    color:white;
}

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

.gallery-item{
    overflow:hidden;
    border-radius:10px;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.contact-box{
    text-align:center;
    font-size:22px;
}

footer{
    background:#021024;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

    nav{
        display:none;
    }
}

.galeria img {
  width: 192px;
  height: 256px;
  object-fit: cover;
  transition: transform 0.4s ease; /* Płynne przejście animacji */
}

.galeria img:hover {
  transform: scale(1.05); /* Powiększenie o 15% */
}

/* Instagram link in contact section */
.contact-box a{
    color:#c9a24d;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.contact-box a:hover{
    color:white;
    text-decoration:bold;
}