@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

/*#region Reset és alapbeállítások---------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Egyedi font betöltése */
@font-face {
    font-family: 'EB Garamond';
    src: url('../fonts/EBGaramond-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --light-yellow: #fffcc5;
    --light-yellow-shadow: 0 0 7px #fffcc578;
    --yellow: #ffea77;
    --dark-yellow: #d4af37;
    --text: rgba(0, 0, 0, 0.8);
    --bg-color: #8ca526;
    --bg-color-2: rgb(116, 137, 32);
/*    --bg-color-2: rgb(163, 187, 57);*/
    --white: white;
    --dark-green: #394b05;
    --dark-green-2: #5e6b2a;
    --dark-green-hover: #2f3b04;
    --green: rgb(116, 137, 32);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'EB Garamond', 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--light-yellow);
    background: url("../images/csillanas-1.png") no-repeat center top, url("../images/bg-gradient.png") repeat-x bottom fixed, var(--bg-color);
}

.clearfix {
    clear: both;
/*    height: 1px;*/
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;

}

.admin-container{
    background:red!important;
}


h1,
h2,
h3 {
    font-family: "EB Garamond", serif;
    font-weight: 500;
}

h1 {
    margin-top: 35px;
    color: var(--light-yellow);
    text-transform: uppercase;
    font-size: 50px;
}

h2 {
    color: var(--yellow);
    font-size: 35px;
    margin:0 0 25px 0;
}


p {
    font-family: "Open Sans", sans-serif;
}


p, a {
/*    color: var(--text);*/
    color: var(--light-yellow);
    font-size: 20px;
}

b{
    color:var(--white);
}


hr {
    border: none;
    height: 2px;
    width: 100%;
    margin: 20px auto;
    background: linear-gradient( to right, transparent, #ffea77, transparent );
    margin: 25px 0 45px 0;
}

.grecaptcha-badge {
    display: none!important;
}

/*#endregion Reset és alapbeállítások---------------------------------------*/
/*#region Navbar---------------------------------------*/
header {
    /*    background: url("../images/csillanas-1.png") no-repeat center top;*/
    box-shadow: none;
    /*    position: sticky;*/
    top: 0;
    z-index: 1000;
}

    header.subpage {
        background: linear-gradient(90deg, #3a4b05 0%, #5f6b2b 50%, #3a4b05 100%);
        border-bottom: 2px solid #f9e774;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

    }

.navbar {
    padding: 0;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    /* display: flex; */
    flex: 0 0 100px;
    align-items: center;
    margin: 9px 0;
    opacity: .85;
}

    .logo:hover,
    .logo:active {
        opacity: 1;
        transition-duration: .2s;
    }

    .logo a {
        display: block;
        line-height: 0;
    }

    .logo img {
        width: 100px;
        height: 84px;
        object-fit: contain;
    }

.nav-menu {
    display: flex;
    list-style: none;
    flex: 1;
    justify-content: space-evenly;

}

    .nav-menu li {

        flex: 0;

    }

    .nav-menu a {
        text-decoration: none;
        padding: 0 10px;

        display: block;
        opacity: .95;
    }

        .nav-menu a:hover {
            /* transform: translateX(3px); */
            /* letter-spacing:1px; */
            /*        color:white;*/


            text-shadow: var(--light-yellow-shadow);
            transition-duration: .2s;
            opacity: 1;
            /*                text-shadow: 0 0 7px #124f21da;*/
        }


        .nav-menu a:active {
            /*                transform: translateY(2px);*/
            transition: var(--transition);
            color: var(--white);
            text-shadow: var(--light-yellow-shadow);
        }




.nav-link {
    text-decoration: none;
    color: var(--light-yellow);
    font-weight: 500;
    font-size: 24px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin:13px 0;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--light-yellow);
        transition: var(--transition);
    }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--light-yellow);
        transition: var(--transition);
    }

/*#endregion Navbar---------------------------------------*/

/*#region Oldalak megjelenítése---------------------------------------*/

.page {
    display: none;
    min-height: calc(100vh - 200px);
    padding: 0;
    /* animation: fadeIn 0.5s ease-in; */
}

    .page.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    /* Loading */
    .loading {
        text-align: center;
        color: var(--light-yellow);
        font-style: italic;
        padding: 2rem;
    }

.image-center {
    display: block;
    margin: 25px auto;
    width: 60%;
    max-width: 1000px;
    text-align: center;

}


.image-main {
    float: right;
    width: 50%;
    margin: 0 0 1rem 1rem;


}

.image-main img {
    display: block;
    width: 100%;
    height: auto; /* megtartja az arányokat */
}


.borkostolok{
    font-size:37px;
    padding-bottom:20px;
    margin-top:12px;
}


.main-info-box {
    /*    background: linear-gradient(135deg, #5a6b1e 50%, #4a5a18 100%);*/
    background: radial-gradient(circle at 50% 50%, var(--dark-green-2), var(--dark-green));
    /*    border-top: 2px solid #f9e774;
    border-bottom: 2px solid #f9e774;*/
    position: relative;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
/*    max-width:1200px;*/

}

.main-info-box::before,
.main-info-box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--dark-green-2), var(--yellow), var(--dark-green-2));
}

.main-info-box::before {
    top: 0;
}

.main-info-box::after {
    bottom: 0;
}


.main-info-box p {
    margin: 0;
    line-height: 2.2!important;
    color: var(--light-yellow);
    font-size: 1.1rem;
    text-align: justify;
 }

.main-info-box hr {
    margin: 7px 0px 17px;
}

.events-gallery-link {
    text-decoration: none;
 color: var(--yellow);
/*    color: white;*/
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    opacity: .85;
    /*   transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);*/
}

    .events-gallery-link:hover {
        /*    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #5a7d3a, #6a8d4a);
    border-color: rgba(255, 255, 255, 0.4);*/
        opacity: 1;
        /*        text-shadow: var(--light-yellow-shadow);*/
  
       text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.1);
    }

    .events-gallery-link:active {
        transform: translateY(-1px);
        opacity: 1;

    }

.main-page-logo {
    text-align: center;
    margin:auto;


}


    .main-page-logo img {
        width: 90%;
        max-width: 280px;
        height: 170px;
        object-fit: contain;
    }



/*#endregion Oldalak megjelenítése---------------------------------------*/
/*#region main---------------------------------------*/
/* Hero section */
.hero {
    background-image: url('../images/hero/nyito-oldal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 2rem;
    text-align: center;
    margin: 0;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    min-height: 460px;
    /*    width: 100vw;
            left: 50%;
    right: 50%;
        margin-left: -50vw;
    margin-right: -50vw;
    min-height: 500px;
    display: flex;*/
}

    /* Nyitókép sötét overlay - animált sötétítés */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
        animation: darkOverlay .1s ease-out .6s forwards;
        /* animation: darkOverlay 2s ease-out 2.8s forwards;  */
    }

.hero-content {
    position: relative;
    z-index: 2;
/*    opacity: 0;*/
    opacity: 1;
    /*    transform: translateY(30px);*/
    animation: slideUp 0.1s ease-out .7s forwards;
    /* animation: slideUp 0.8s ease-out 2s forwards; */
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    /*    font-weight: 700;*/
    color: var(--text-light) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-transform: none;
}
.hero-content p {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}


    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        color: var(--yellow);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

.cta-button {
    display: inline-block;
    padding: .9rem 2.3rem;
    background-color: var(--dark-yellow);
    color: var(--light-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size:1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.intro-section {

    text-align: justify;
}

    .intro-section h3 {
        color: var(--yellow);
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .intro-section p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.8;
    }


.bold-p {
    font-weight: 600;
    font-size: 1.2rem !important;
}


   /*TESZT--------------------------*/

.teszt-container p{
    color:black;
    opacity:.8;
}

    .teszt-container b{
        color:var(--light-yellow);
        font-weight:400;
    }




    /*#endregion main---------------------------------------*/

/*#region Szőlő fajtáink---------------------------------------*/
    .grape-varieties {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 4rem;
    }

.grape-card {
    padding: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    opacity: 1;
    -webkit-user-select: none;
    user-select: none;
}

    .grape-card:hover {
        box-shadow: 0 5px 20px rgba(255, 252, 197, 0.247);
        opacity:.95;
    }

    .grape-card:active {
        transform: translateY(3px);
        box-shadow: 0 5px 20px rgba(255, 252, 197, 0.247);
        opacity: .95;
    }



.szolok-title{
    font-size:35px;
    margin:40px 0;
}


.grape-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin: 0;
    cursor: pointer;
    transition: var(--transition);
}

    .grape-card img:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }

    .grape-card h3 {
        color: var(--yellow);
        font-size: 1.7rem;
        text-align: center;
        padding: 20px;
        background: radial-gradient(circle at 50% 0%, var(--dark-green-2), var(--dark-green));
   }





.szolo-teszt .grape-card h3 {
    color: var(--yellow);
    border-top: 5px solid var(--dark-yellow);
    padding: 17px;
}




    /*#endregion Szőlő fajtáink---------------------------------------*/

/*#region Boraink---------------------------------------*/


/*.my-div {
    width: 100%;
    background-color: #394b05;
    background-image: url('../images/csillanas-2.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;


}*/



.wine-info-box {
    /*    background: linear-gradient(135deg, #5a6b1e 50%, #4a5a18 100%);*/
    background: radial-gradient(circle at 50% 50%, var(--dark-green-2), var(--dark-green));
    /*    border-top: 2px solid #f9e774;
    border-bottom: 2px solid #f9e774;*/
    position: relative;
    padding: 1.5rem 2rem;
    margin: 4.5rem auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .wine-info-box::before,
    .wine-info-box::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, var(--dark-green-2), var(--yellow), var(--dark-green-2));
    }

    .wine-info-box::before {
        top: 0;
    }

    .wine-info-box::after {
        bottom: 0;
    }




.wine-info-box p {
    margin: 0;
    line-height: 1.8;
    color: var(--light-yellow);
    font-size: 1.1rem;
    text-align: justify;
}



.wines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.wine-card {
/*    aspect-ratio: 2.5 / 4;*/
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .wine-card:hover {
        box-shadow: 0 5px 20px rgba(255, 252, 197, 0.247);
/*        transform: translateY(-3px);*/
    }

    .wine-card:active {

                transform: translateY(2px);
                transition-duration: 0.1s;
    }



.wine-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-color) 0%, #e8e0d5 100%);
    aspect-ratio: 560 / 750;
    display: block;
}




.wine-content {
    height: 130px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .wine-content h3 {
        line-height: 1.2;
    }

    .wine-content p:last-child {
        display: none;
    }


    /* Bor kártya színek - HÁTTÉR és BETŰSZÍN beállítások */
    /* SÁRGA háttér */
    .wine-content.wine-color-sarga {
/*        background: linear-gradient(135deg, #d4af37 0%, #c9a829 100%);*/
        background: url('../images/csillanas-2.png') no-repeat center bottom, #c9a829;
        background-size: 100% auto;
    }
.wine-content.wine-color-sarga h3 {
    color: #2c3e05; /* Sötét zöld szín a címhez */
}
.wine-content.wine-color-sarga .wine-year {
    color: #2c3e05; /* Évjárat színe */
}

/* VÖRÖS háttér */
    .wine-content.wine-color-voros {
        background: url('../images/csillanas-2.png') no-repeat center bottom, #6b1a27;
        background-size: 100% auto;
    }
.wine-content.wine-color-voros h3 {
    color: #fffcc5; /* Világos sárga szín a címhez */
}
.wine-content.wine-color-voros .wine-year {
    color: #fffcc5; /* Évjárat színe */
}

/* BORDÓ háttér */
    .wine-content.wine-color-bordo {
/*        background: linear-gradient(135deg, #722f37 0%, #5a1f2a 100%);*/
        background: url('../images/csillanas-2.png') no-repeat center bottom, #5a1f2a;
        background-size: 100% auto;
    }
.wine-content.wine-color-bordo h3 {
    color: #fffcc5; /* Világos sárga szín a címhez */
}
.wine-content.wine-color-bordo .wine-year {
    color: #fffcc5; /* Évjárat színe */
}

/* NARANCS háttér */
    .wine-content.wine-color-narancs {
    background: url('../images/csillanas-2.png') no-repeat center bottom, #c56a2a;
    background-size: 100% auto;
    }

/* ZÖLD háttér */
    .wine-content.wine-color-zold {
        background: url('../images/csillanas-2.png') no-repeat center bottom, var(--dark-green);
        background-size: 100% auto;

    }
.wine-content.wine-color-zold h3 {
    color: #fffcc5; /* Világos sárga szín a címhez */
}
.wine-content.wine-color-zold .wine-year {
    color: #fffcc5; /* Évjárat színe */
}

/* Alapértelmezett szöveg stílusok a bor kártyákhoz */
.wine-content h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
}

.wine-year {
    font-weight: 600;
    text-align: center;
    font-size: 1.3rem;
}

.wine-description {
    color: var(--text);
    line-height: 1.6;
}

/*#endregion Boraink---------------------------------------*/

/*#region Wine Modal---------------------------------------*/

.wine-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

    .wine-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 80px;
    }

.wine-modal-content {
    position: relative;
    /*    background: var(--bg-color);*/
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
/*    overflow-y: scroll;*/
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.wine-modal-close {
    position: fixed;
    top: 60px;
    right: 80px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2010;
    background: rgba(255, 255, 255, 0.2);
    border: 2px rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

    .wine-modal-close span {
        position: relative;
        top: -4px;
    }


    .wine-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .wine-modal-close:active {
        background: rgba(255, 255, 255, 0.4);
        transform: rotate(90deg);
    }


.wine-modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: 2px rgba(255, 255, 255, 0.2);
    font-size: 47px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2010;
    display: flex;
    /*    align-items: center;*/
    justify-content: center;
    transition: var(--transition);
    font-weight: bold;
}

    .wine-modal-nav span {
        position: relative;
        top: -3px;
    }


    .wine-modal-nav:hover {
        background: rgba(255, 255, 255, 0.3);
        /*    transform: translateY(-50%) scale(1.1);*/
    }

    .wine-modal-nav:active {
        background: rgba(255, 255, 255, 0.4);
    }



.wine-modal-prev {
    left: 10px;
}

.wine-modal-next {
    right: 10px;
}

.wine-modal-body {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.wine-modal-image-container {
    flex: 0 0 47%;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e0d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;

}

    .wine-modal-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;

    }

.wine-modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wine-modal-header {
    padding: 1.5rem 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
    border-bottom: 3px solid var(--yellow);
}

    .wine-modal-header h2 {
        margin: 0;
        color: var(--yellow);
        font-size: 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


#wine-modal-subtitle {
    color: var(--light-yellow);
    font-size: 1.5em;
}

.wine-modal-subtitle span {
    color: var(--light-yellow);
    font-size: 1.3em;
}



/* Színvariációk */
.wine-color-sarga {
    background: linear-gradient(135deg, #d4af37 0%, #c9a829 100%);
}

.wine-color-voros {
    background: url('../images/csillanas-2.png') no-repeat center center, #6b1a27;
    background-size: 100% auto;
}

.wine-color-bordo {
    /*    background: linear-gradient(135deg, #722f37 0%, #5a1f2a 100%);*/
    background: url('../images/csillanas-2.png') no-repeat center center, #5a1f2a;
    background-size: 100% auto;
}

.wine-color-narancs {
    /*    background: linear-gradient(135deg, #d97d3a 0%, #c56a2a 100%);*/
    background: url('../images/csillanas-2.png') no-repeat center center, #c56a2a;
    background-size: 100% auto;
}

.wine-color-zold {
    /*    background: linear-gradient(135deg, #5a6b1e 0%, #4a5a18 100%);*/
    background: url('../images/csillanas-2.png') no-repeat center center, #4a5a18;
    background-size: 100% auto;
}

.wine-modal-info {
    padding: 1.4rem 2.2em 2rem 2.2rem;
    flex: 1;
    overflow-y: auto;


    background: var(--bg-color);
    background: url("../images/csillanas-1.png") no-repeat center top, var(--bg-color);
}

.wine-modal-subtitle {
    color: white;
    font-family: 'EB Garamond', serif;
    line-height: 1.3;
}

    .wine-modal-subtitle:first-child {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .wine-modal-subtitle:nth-child(2) {
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

.wine-modal-row {
    display: flex;
    /*            justify-content: space-between;*/

    align-items: baseline;
    padding: 0.2rem 0;
    border-bottom: none;
    line-height: 1.3;
}

    .wine-modal-row span:first-child {
        padding-right: 10px;
    }


.wine-modal-label {
    font-weight: 400;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
}

.wine-modal-row span:last-child {
    color: #f9e774;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
}

.wine-modal-separator {
    height: 0;
    margin: 1.2rem 0 1rem 0;
}

.wine-modal-description {
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-wrap;
    display: none!important;

}

.wine-modal-footer-info {
    margin-top: 0;
}



    .wine-modal-footer-info p {
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        margin-bottom: 0.3rem;
        line-height: 1.5;
    }

        .wine-modal-footer-info p:first-child {
            margin-bottom: 0.5rem;
        }

    .wine-modal-footer-info strong {
        font-weight: 700;
        color: white;
        font-size: 21px;
    }


.wine-modal-brand {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    margin-top: 1.5rem;
    font-family: 'EB Garamond', serif;
    letter-spacing: 0.5px;
    opacity: .8;
display:none
}
/*#endregion Wine Modal---------------------------------------*/


/*#region Galéria---------------------------------------*/

.gallery-categories-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    /*    background: rgba(255, 255, 255, 0.05);*/
    border-radius: 10px;
/*    justify-content: space-between;*/

justify-content: space-evenly;
    color: var(--light-yellow);
    text-transform: uppercase;
    font-family: "EB Garamond", serif;
}


    .gallery-categories-nav a {
        font-size: 20px;
        background: red;
        background-color: rgb(74, 90, 24);
        background-image: url("../images/csillanas-2.png"), none;
          padding:12px 40px;
        border-radius:8px;
        margin-top:12px;
    }


        .gallery-categories-nav a:hover {
            /*      transform: translateY(-1px);*/
            box-shadow: 0 0 4px rgb(116, 137, 32, 0,75);
      
            filter:brightness(1.15);
   
        }

        .gallery-categories-nav a:active {
            transform: translateY(1px);
            filter: brightness(1.15);
        }



    .gallery-category-link {
        padding: 0.6rem 1.2rem;
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
/*        border: 2px solid transparent;*/
    }

/* Vissza a tetejére gomb */
.gallery-back-to-top-container {
    text-align: center;
    margin-top: 2rem;
}

.gallery-back-to-top-btn {
    background-color: rgb(74, 90, 24);
    background-image: url("../images/csillanas-2.png"), none;
    color: var(--light-yellow);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-back-to-top-btn:hover {
    box-shadow: 0 0 4px rgba(116, 137, 32, 0.75);
    filter: brightness(1.15);
}

.gallery-back-to-top-btn:active {
    transform: translateY(1px);
    filter: brightness(1.15);
}





    .gallery-category-section {
        scroll-margin-top: 100px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
        aspect-ratio: 1;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

        .gallery-item:hover {
            box-shadow: 0 5px 20px rgba(255, 252, 197, 0.247);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: var(--white);
        padding: 1rem;
        font-size: 0.9rem;
        opacity: 0;
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-caption {
        opacity: 1;
    }
    /*#endregion Galéria---------------------------------------*/
    /*#region Galéria Kategóriák---------------------------------------*/
    /* Galéria teljes konténer */
    #gallery-container {
        width: 100%;
    }
    /* Kategória konténer - BLOKK elem */
    .gallery-category {
        margin-bottom: 5rem;
        width: 100%;
    }
    /* Kategória cím - NORMÁL BLOKK ELEM (NEM grid item!) */
    .gallery-category-title {
        font-size: 2.2rem;
        color: var(--yellow);
        margin-bottom: 2rem;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 2px solid var(--yellow);
        padding-bottom: 0.5rem;
        display: block;
        width: 100%;
    }
    /* Képek grid layoutja - 4 OSZLOP, CSAK képek */
    .gallery-category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
    /* Egyedi kép item */
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
        aspect-ratio: 1;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

        .gallery-item:hover {
            box-shadow: 0 5px 20px rgba(255, 252, 197, 0.247);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }
    /* Kép felirat (caption) */
    .gallery-caption {
        font-family: "Open Sans", sans-serif;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        color: var(--white);
        padding: 1rem;
        font-size: 0.9rem;
        opacity: 0;
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-caption {
        opacity: 1;
    }
    /* Reszponzív */
    @media (max-width: 1024px) {
        .gallery-category-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .gallery-category-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .gallery-category-grid {
            grid-template-columns: 1fr;
        }
    }
    /*#endregion Galéria Kategóriák---------------------------------------*/
    /*#region Lightbox---------------------------------------*/

    .lightbox {
        display: none;
        position: fixed;
        z-index: 3000;
        padding-top: 50px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.9);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

        .lightbox.active {
            display: block;
        }

    .lightbox-content {
        margin: auto;
        display: block;
        max-width: 90%;
        max-height: 80vh;
        animation: zoom 0.3s;
    }

    @keyframes zoom {
        from {
            transform: scale(0);
        }

        to {
            transform: scale(1);
        }
    }

    .close-lightbox {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: var(--transition);
        z-index: 2010;
    }

        .close-lightbox:hover {
            color: var(--yellow);
            text-shadow: 0 0 10px var(--yellow);
        }

    .lightbox-caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 12px 0;
        font-family: "Open Sans", sans-serif;
        font-size: 18px;
    }
    /* Lightbox navigációs gombok */
    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        font-size: 50px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 2010;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        font-weight: bold;
        line-height: 1;
    }

        .lightbox-prev span,
        .lightbox-next span {
            position: relative;
            top: -3px;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev:active,
        .lightbox-next:active {
            background: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.05);
        }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
    /*#endregion Lightbox---------------------------------------*/
    /*#region kapcsolat---------------------------------------*/

    .contact-content {
        display: grid;
        /*    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;*/
        grid-template-columns: 40% 1fr; /* desktop: bal fix, jobb rugalmas */
        gap: 10px;
    }

        .contact-content p {
            font-family: "EB Garamond", serif;
        }

        .contact-content h3 {
            color: var(--yellow);
        }


    .contact-info h3,
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    #kapcsolat strong {
        color: var(--white);
        font-size: 22px;
    }


    #contact-form h3 {
        background: var(--dark-green);
        background: radial-gradient(circle at 50% 0%, var(--dark-green-2), var(--dark-green) );
        margin-top: -20px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 11px 25px;
        text-align: center;
        opacity: .9;
        /*    border-bottom: 2px solid var(--yellow);*/
    }

    #contact-form {
        background: var(--bg-color-2);
        overflow: hidden;
    }

    .info-item {
        margin-bottom: 1.5rem;
    }

        .info-item strong {
            display: block;
            margin-bottom: 0.5rem;
        }

    .contact-form form {
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }
    /* Map styling */
    .map-container {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .map-container-fixed {
        height: 500px;
        background: lightgray;
    }

    .map-inner {
        width: 100%;
        height: 100%;
    }

    /* AdvancedMarkerElement keret eltávolítása */
    .gm-style .gm-style-iw-c,
    .gm-style .gm-style-iw-d,
    .gm-advanced-marker {
        border: none !important;
        outline: none !important;
/*        box-shadow: none !important;*/
    }

    .hr-large-margin {
        margin: 3rem 0;
    }
    /*#endregion kapcsolat---------------------------------------*/
    /*#region footer---------------------------------------*/
    footer {
        margin-top: 3.5rem;
        background: url("../images/csillanas-1.png") no-repeat center top;
        border-top: 1px solid #ffea7781;
    }



        footer p {
            color: var(--light-yellow)
        }

        footer p {
            font-family: 'EB Garamond', 'Georgia', 'Times New Roman', serif !important;
        }

    .footer-content {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }




    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--yellow);
    }

    .footer-section p {
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .footer-section strong {
        color: var(--white);
    }

    .footer-address {
        margin-bottom: 1.5rem;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
    }

        .footer-menu li {
            margin-bottom: 0.8rem;
        }

        .footer-menu a {
            color: var(--light-yellow);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

            .footer-menu a:hover,
            .footer-menu a:active {
                color: white;
                text-shadow: var(--light-yellow-shadow);
            }

    .footer-bottom p {
        padding: .9rem;
        text-align: center;
        opacity: .9;
        font-size: 14px;
    }

    .footer-logo {
        height: 14px;
        vertical-align: middle;
        margin-left: 2px;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

    .footer-logo:hover {
        opacity: 1;
    }

    .footer-bottom::before {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        margin: 0 auto;
        background: linear-gradient( to right, transparent, #ffea77, transparent );
        opacity: .8;
    }
    /*Social------------------*/







    .social-section {
        text-align: center;
        margin: 5.2rem 0 1.2rem;
    }


    .social-row {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
    }

    .social-text {
        font-size: 1.9rem;
        color: var(--yellow);
        font-weight: 500;
        display: inline-block;
        font-family: "EB Garamond", serif;
        font-weight: 500;
    }

    .social-icons {
        margin-left: 1rem;
    }

        .social-icons a {
            display: inline-block;
            margin: 0 1.8rem;
        }

        .social-icons img {
            width: 40px;
            height: 40px;
            vertical-align: middle;
            transition: transform 0.3s ease;
            opacity: .8;
        }

            .social-icons img:hover {
                /*            transform: scale(1.1);*/
                opacity: 1;
            }
    /*#endregion footer---------------------------------------*/
    /*#region input field---------------------------------------*/


    .form-group {
        margin-bottom: 1.5rem;
    }

        .newsletter-form input[type="email"],
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
            resize: vertical;
            opacity: .85;
        }

            .newsletter-form input[type="email"]:focus,
            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                opacity: 1;
            }

    .newsletter-form button,
    .submit-button {
        width: 100%;
        padding: .8em 1.8rem;
        background-color: var(--dark-green);
        color: var(--yellow);
        border: none;
        border-radius: 5px;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        font-family: 'EB Garamond', 'Georgia', 'Times New Roman', serif;
        text-transform: uppercase;
    }

        .newsletter-form button:hover,
        .submit-button:hover {
            /* background-color: var(--secondary-color);
    transform: translateY(-2px); */
            background-color: var(--dark-green-hover);
        }

        .newsletter-form button:active,
        .submit-button:active {
            transform: translateY(2px);
            transition-duration: 0.02s;
        }
    /*newsletter*/
    .newsletter-form {
        margin-top: 1rem;
    }

        .newsletter-form input[type="email"] {
            margin-bottom: 1rem;
        }

            .newsletter-form input[type="email"]:focus {
                outline: none;
                color: black;
            }
    /*#endregion input field---------------------------------------*/












