/*
Theme Name: Alchemy Theme
Theme URI: http://sajatoldalad.hu
Author: A TE NEVED
Author URI: http://sajatoldalad.hu
Description: Egyedi WordPress téma a vizsgamunkádhoz
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.baorg/licenses/gpl-2.0.html
/*
Theme Name: My Awesome Theme
Theme URI: https://www.myawesometheme.com
Author: John Doe
Author URI: https://www.johndoe.com
Description: My Awesome Theme is a responsive, modern, and feature-rich WordPress theme designed for all kinds of websites. It comes with a custom homepage layout, multiple widget areas, and full compatibility with popular plugins.
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: my-awesome-theme
Tags: responsive, modern, custom-background, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 1.14vw;
}
@media only screen and (max-width:1025px){
    html {
    font-size: 1.4vw;
    }
}

@media only screen and (max-width:768px){
    html {
    font-size: 20px;
    }
}

@media only screen and (max-width:480px){
    html {
        font-size: 16px;
        }
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #343333;
}


/* Fejléc (menü) */
.menu-head {
    background: #fff;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 10px 0;
    position: relative; 
    z-index: 1000;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}


#logoimg {
    max-width: 70px;
   margin-left: 40px;
    
}

.main-menu {
    max-width: 1500px;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 20px; 
    list-style: none;
    padding-right: 40px;
}

.main-menu li {
    display: inline-block;
    padding-left: 25px;
}

.main-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 25px;
    transition: 0.3s;
    font-weight: 600;
}

.main-menu li a:hover {
    background: #e9b963;
}

/* ===== Hamburger Menü (Mobil) ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 9999;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    display: block;
    transition: 0.3s;
}

/* ===== Mobilnézet (992px alatt) ===== */
@media only screen and (max-width: 992px) {
    .main-menu {
        display: none; /* Normál menü elrejtése mobilon */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .menu-toggle {
        display: flex !important; /* Hamburger ikon megjelenítése */
    }

    .main-menu.menu-open {
        display: flex !important;
    }

    .menu-items {
        flex-direction: column;
        gap: 10px;
    }

    .menu-items li {
        padding: 10px 0;
    }

    .menu-items li a {
        font-size: 18px;
        padding: 10px 20px;
    }
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    position: relative;
    max-width: 1700px;
    height: auto;
    align-items: center;
    margin: 0 auto; 
    border: 6px solid transparent;
    padding:15px;
 
}
.grid-container::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid #e9b963; 
    pointer-events: none;
    z-index: 3000;
}

.grid-container::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(233, 186, 99, 0.5); 
    pointer-events: none;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    
}

.text-overlay,
.text-overlay2 {
    font-family: "ivypresto-display", serif;
    font-weight: 600;
    position: absolute;
    color: white;
    text-transform: uppercase;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 4rem); 
}

.text-overlay {
    top: 10px;
    left: 10px;
}

.text-overlay2 {
    bottom: 10px;
    right: 10px;
}
@media only screen and (max-width: 630px) {
    .grid-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .grid-item {
        display: none; 
    }

    .grid-item:nth-child(3) { 
        display: block;
        width: 100%;
    }
}

.algin-center{ text-align: center;}

.aktion{ color: #e9b963;
   font-size: 80px;
   
   }

   .product-section {
    text-align: center;
    padding: 100px 20px; 
    position: relative;
}


.image-container img {
    max-width: 80%;
    height: auto;
}


.product-cards-container {
   
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: -90px; 
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}
.product-text{ 
   font-family: "ivypresto-display", serif;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 5px;
    color:#323232;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 250px;
    height: 350px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.product-card:hover {
    
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.shop-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e9b963;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.shop-now-btn:hover {
    background: #e9b963;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.5);
    
     
}

@media only screen and (max-width: 992px) {
    .product-text {
        font-size: 50px;
        letter-spacing: 3px;
    }
    
    .aktion {
        font-size: 40px;
    }

    .product-cards-container {
        flex-wrap: wrap; 
        justify-content: center;
        gap: 20px;
    }

    .product-card {
        width: 45%; 
        height: auto;
        padding: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .product-text {
        font-size: 40px;
        letter-spacing: 2px;
    }
    
    .aktion {
        font-size: 30px;
    }

    .product-cards-container {
        flex-direction: column; 
        align-items: center;
    }

    .product-card {
        width: 80%; 
    }
}

@media only screen and (max-width: 480px) {
    .product-image-container{ padding-bottom: 50px;}
    
    .product-text {
        font-size: 30px;
        letter-spacing: 1px;
    }
    
    .aktion {
        font-size: 20px;
    }

    .product-card {
        width: 80%; 
    }
}

.testimonials-wrapper {
    position: relative;
    margin: 10px;
    
}



.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2; 
}


.testimonials-wrapper::before {
    left: 0;
    bottom: 0;
    background-image: url('.img/blum.png');
  
}


.testimonials-wrapper::after {
    right: 0;
    top: 0;
    background-image: url('.img/blum.png');
    transform: rotate(180deg);
    padding: 40px;
}


  
 

.testimonials-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px; 
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    position: relative;
    
}

.testimonial-slide {
    display: none; 
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    display: flex;
}


.testimonial-slide img {
    max-width: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-name {
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
}


.testimonial-content {
    width: 100%;
    max-width: 800px; 
    font-size: 1.2rem; 
}


.testimonial-slide img {
    max-width: 120px; 
    border-radius: 50%;
}

.testimonial-text {
    font-size: 20px; 
    padding: 20px;
   
}


.testimonials-title {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}


.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 50px; 
    cursor: pointer;
    padding-bottom: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #e9b963;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}


@media only screen and (max-width: 768px) {
    .testimonials-title {
        font-size: 40px;
    }
    
    .testimonial-slide img {
        max-width: 100px;
    }

    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
}




section {
  margin-bottom: 50px; 
}

.footer {
    background-color: #333;
    padding: 20px 0;
    color: white;
}

.footer-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; 
    align-items: center;
    text-align: center;
    gap: 20px; 
}

.footer-left img {
    max-width: 150px;
}
.footer-center {
    flex: 1;
    max-width: 300px; 
    text-align: center;
}

.footer-center ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li,
.footer-right ul li {
    margin-bottom: 20px;
   
}

.footer-center ul li a:hover,
.footer-right ul li a:hover {
    color: #e9b963;
}

.footer-center ul li a,
.footer-right ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.footer-social {
    display: flex;
    gap:35px;
}

.footer-social a {
       max-width: 60px;
    height: auto;
}
.footer-social a:hover{ text-decoration: underline;}

.copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    align-self: flex-end;
    font-size: smaller;
}


@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right, .footer-social {
        width: 100%;
    }

    .footer-left img {
        max-width: 120px;
    }

    .footer-center ul, .footer-right ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        margin-top: 10px;
        padding:0 30% 0 30%;
        gap: 15px;
        align-items: center;
    }

    .footer-social a {
        width: 35px;
    }

    .footer-copy {
        font-size: 16px;
    }
}


.copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

#science-skincare {
    background: #eaeaea;
    padding: 60px 0;
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative;
    text-align: left;
}

.column-2 {
    max-width: 1300px;
    width: 90%;
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 40px; }

.science-content {
    max-width: 800px;
    padding: 20px;
    margin: 0 auto; 
}


.science-content h2 {
    font-size: 36px; 
    padding-bottom: 30px;
    text-align: center;
}

.science-content p {
    font-size: 19px; 
    line-height: 30px;
    text-align: center;
}


.science-image {
    width: 60% !important; 
    max-width: 800px; 
    text-align: center;
}

.science-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .science-content, .science-image {
        width: 90% !important; 
    }
}

@media (max-width: 768px) {
    .science-content h2 {
        font-size: 28px; 
    }

    .science-content p {
        font-size: 17px;
    }
}


#alchemy-journal {
    background: #fff;
    padding: 20px 10px; 
    text-align: center;
}


.journal-header {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    text-decoration:underline;
    padding-bottom: 40px;
}

.jour1 {
    font-family: "ivypresto-display", serif;
    font-size: 50px;
    padding: 5px;
}

.jour2 {
    font-family: "ivypresto-display", serif;
    font-size: 30px;
    padding-bottom: 20px;
    color: #444;
    text-decoration: underline;
}


.journal-grid {
    display: flex;
    justify-content: center;
    gap: 40px; 
    flex-wrap: wrap;
    margin-top: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


.journal-card {
    background: white;
    border-radius: 5px;
    border: 1px solid #ddd; 
    box-shadow: none; 
    transition: 0.3s;
    width: 300px;
    text-align: left;
    padding: 15px;
    font-size: 13px;
}


.journal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.journal-card img {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}


.journal-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 5px 0;
}


.journal-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
}


.read-more {
    display: inline-block;
    padding: 6px 14px;
    background: #e9b963;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    font-size: 12px;
    transition: 0.3s;
    margin-top: 10px;
}

.read-more:hover {
    background:#e9b963;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .journal-grid {
        flex-direction: column;
        align-items: center;
    }

    .journal-card {
        width: 90%;
        max-width: 300px;
    }

    .journal-card h3 {
        font-size: 15px;
    }

    .read-more {
        font-size: 12px;
        padding: 5px 12px;
    }

    .journal-header {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
    }
}

.content-box{ align-items: center;}

#contact{ padding: 20px 0;}

.custom-contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f2ee; 
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
   background-image:url('img/brief.png') ;
   background-repeat: no-repeat;
   background-size: 120px;
   background-position: top right;
 background-position-x: 95%;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    position: relative;
   padding: 60px 25px 10px 25px;
  
   
}

.contact-text {
    flex: 1;
    max-width: 50%;
    font-size: 16px;
    line-height: 25px;
    color: #333;
   padding-bottom: 160px;
   text-align:right;
}

.contact-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    line-height: 40px;
}


.contact-form {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}


.form-input, .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 20px;
}


.form-textarea {
    height: 100px;
}



.contact-form-container input[type="checkbox"] {
    margin-right: 5px;
}
.terms-container {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.terms-container input[type="checkbox"] {
    margin-right: 5px;
    accent-color:#e9b963; 
}


.wpcf7-submit {
    background: #e9b963 !important;
    color: white !important;
    border: none !important;
    padding: 14px 30px !important; 
    font-size: 18px !important;
    font-weight: bold !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: background 0.3s ease-in-out !important;
}

.wpcf7-submit:hover {
    background: #e9b963!important;
}



.contact-button-container {
    text-align: center;
    margin-top: 20px;
}


.contact-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.contact-icon img {
    max-width: 100px;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .custom-contact-container {
        flex-direction: column;
        text-align: center;
        background-image: none;
        h3{ margin-bottom: 10px;}
    }

    .contact-text, .contact-form {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .contact-button-container {
        text-align: center;
    }

   
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #2c2c2c; 
    color: #fff; 
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Sütis ikon */
.cookie-icon {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

/* Szöveg és link */
#cookie-banner p {
    font-size: 14px;
    flex: 1;
    margin: 0;
}

#cookie-banner a {
    color: #e9b963; /* Arany link */
    text-decoration: underline;
}


#cookie-accept {
    background: #e9b963; 
    color: #2c2c2c; 
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#cookie-accept:hover {
    background:#e9b963;
}


#cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
}


