body {font-family: 'Arial', sans-serif; margin:0; padding:0; color:#333;}
.header-container {display:flex; justify-content:space-between; align-items:center; padding:15px; background:#FDF6F0; border-bottom:2px solid #ddd;}
.header-container .logo {width:300px; height:60px; background:url('../img/logo.png') no-repeat center/contain;}
.contact-info a {margin-left:10px; text-decoration:none; color:#333;}
.social-links a {margin-left:10px; width:32px; height:32px; display:inline-block; background-size:cover;}
.social-links .insta {background-image:url('../img/insta.png');}
.social-links .fb {background-image:url('../img/fb.png');}
.social-links .flickr {background-image:url('../img/flickr.png');}

.carousel-section img {
    height: auto; 
    object-fit:cover;
  
}

.about-me {
    position: relative;
    padding: 30px 0;
    color: #4e4e4e; /* a szöveg jól látszódjon */
    

}

.about-me::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../img/rolam_bg_1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.8; /* háttér átlátszósága */
    z-index: 0;
    border-bottom: 1px solid rgb(205, 195, 159);

}

.about-me .container {
    position: relative;
    z-index: 1; /* szöveg előtérbe hozása */
    padding: 30px;
    border-radius: 10px;
}

.about-me .photo img {
    height: auto;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 13px -7px #afafaf, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: 0px 10px 13px -7px #afafaf, 5px 5px 15px 5px rgba(0,0,0,0);
}

.photo-galleries {
    padding: 60px 0;
    background: url('../img/rolam_bg_2.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100vw;   /* teljes viewport szélesség */
    margin-left: calc(-50vw + 50%); /* kitolja a bal oldalt */
    border-bottom: 1px solid rgb(205, 195, 159);
}


.photo-galleries .gallery-link {display:block; padding:20px; background:#fff; border-radius:10px; text-decoration:none; color:#333; transition:0.3s;}
.photo-galleries .gallery-link:hover {background:#eee;}

.packages {
    padding: 60px 0;
    background: #FDF6F0;
    background: linear-gradient(0deg, rgba(253, 246, 240, 1) 0%, rgba(255, 255, 255, 1) 50%);
    text-align: center;   /* középre igazítja a címet és a sorokat */
  
}

.packages .title {
    text-align: center;
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
font-weight: normal;
    font-size: 36px;
    color: #b85c38;

    width: 100%;
}

.packages .package {
    display: flex;
    flex-direction: column; /* felülről lefelé rendezés */
    justify-content: space-between; /* a tartalmat kitolja, a gomb alulra kerül */
    padding: 30px 20px;
    background: #fdf3e3;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 5px;
    width: 350px;
    border:1px solid #beb4a3;
}

.packages .container {
    display: flex;
    justify-content: center; /* vízszintesen középre */
    flex-wrap: wrap;        /* több sor esetén törjön */
    gap: 30px;              /* távolság a kártyák között */
}
.packages .package h3 {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
font-weight: normal;
    font-size: 22px;
    color: #b85c38;
    margin-bottom: 15px;
    text-align: center;
}

.packages .package p {
    font-size: 16px;
    line-height: 1.6;
    color: #4e4e4e;
    text-align: center;
    margin-bottom: 20px;
}

.packages .btn-primary {
    background-color: #b85c38;
    border-color: #b85c38;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

.packages .btn-primary:hover {
    background-color: #953f27;
    transform: scale(1.05);
}


.contact {padding:60px 0; background:#FDF6F0;}
.contact h2 {margin-bottom:20px;}


.photo-galleries .gallery-link {
    display: flex;
    flex-direction: column; /* ha a kép felül, szöveg alul */
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.photo-galleries .gallery-link img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-galleries .gallery-link:hover {
    background: #eee;
}

.photo-galleries .gallery-link:hover img {
    transform: scale(1.05); /* enyhe nagyítás hoverre */
}
.video-galleries {
    padding: 60px 0;
    background: url('../img/rolam_bg_3.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100vw;   /* teljes viewport szélesség */
    margin-left: calc(-50vw + 50%); /* kitolja a bal oldalt */
    -webkit-box-shadow: 0px 10px 13px -7px #afafaf, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: 0px 10px 13px -7px #afafaf, 5px 5px 15px 5px rgba(0,0,0,0);
}
.video-galleries .video-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


.video-galleries .video-item {
    flex: 0 0 auto;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    width: 320px;
}
.video-galleries .video-item {
    width: 100%; /* a grid oszlop méretéhez igazodik */
}
.video-galleries .video-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
}


/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); 
    justify-content: center; 
    align-items: center; 
}

.modal-content {
    position: relative;
    width: 80%;
    padding-bottom: 45%; /* 16:9 arány, 9/16 ≈ 56%, 45% kisebb lesz, de igény szerint állítható */
    max-width: 90%;
}

.modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.video-item {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
}

.video-item img {
    display: block;
    width: 320px;
    height: 216px;
    object-fit: cover;
    border-radius: 8px;
}

.video-title {
    position: absolute;
    top: 10px;       /* felülre */
    left: 10px;
    right: 10px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}
.video-galleries h2.title {
    text-align: center;
    margin-bottom: 30px; /* opcionális, hogy legyen hely a videók felett */
}
.focim{
    font-weight: bold;
    font-size: 25px;
}
.title{

font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
font-weight: normal;
font-size: 22px;
margin-bottom: 10px;
}
.header-container {
    display: flex;
    justify-content: center; /* középre helyezi a tartalmat vízszintesen */
    align-items: center;     /* függőleges középre */
    padding: 15px;
    background: #FDF6F0;
    border-bottom: 2px solid #ddd;
    gap: 30px; /* távolság a logo, contact-info és social-links között */
    text-align: center;
}

.header-container .logo {
    width: 300px;
    height: 60px;
    background: url('../img/logo.png') no-repeat center/contain;
}

.contact-info a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.social-links a {
    margin: 0 5px;
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: cover;
}
