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

body {
    background: radial-gradient(#0b553e, #000000);
    background-color: #000000; /* Mélyzöld háttér */
    /*background-position: 10vw -20vh;*/
    font-family: 'Playfair Display', serif;
    color: #e8c872; /* Arany színű szöveg */
    min-height: ;
    align-items: center;
    position: relative;
    overflow-x: hidden; /* Hogy a dekoráció ne lógjon ki */
}
a {
    text-decoration: none !important;
}

/* --- Háttér Design (Arany Sarkok) --- */
.gold-corner {
    position: absolute;
    top: 0;
    height: 1200px;
    width: 1200px;
    background-image: url("gold-texture_compressed.jpg"); /* Fémes arany hatás */
    background-position: center;
    background-size: cover;
    z-index: -1; /* A tartalom mögé kerüljön */
    box-shadow: 0 15px 15px rgba(0,0,0,0.5); /* Enyhe árnyék */

    -webkit-transform: rotate(45deg); /* Chrome & Safari */
    -moz-transform: rotate(45deg); /* Firefox */
    -ms-transform: rotate(45deg); /* IE 9+ */
    -o-transform: rotate(45deg); /* Opera */
    transform: rotate(45deg); /* CSS3 */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678, sizingMethod='auto expand'); /* IE 7-8 */
}

.top-left {
    left: calc(50% - 1600px);
    margin-top: -200px;
    right: -600px;
    max-height: 1200px;
    /* clip-path: polygon(0 0, 100% 0, 0 100%); /* Háromszög vágás */
    box-shadow: 15px 15px 15px rgba(0,0,0,0.5); /* Enyhe árnyék */
}

.top-right {
    margin-top: -600px;
    margin-right: 0;
    left: calc(50% + 100px);
}

/* --- Tartalom Konténer --- */
.container {
    padding-top: 300px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

/* --- Logó Szimuláció --- */
.logo-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.logo-symbol {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #bfa05d; /* Mattabb arany a logónak */
}
.logo-image {
    width: 120px;
    height: auto;
}
/* --- Főcím --- */
.main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    
    /* Arany gradiens a szövegre */
    background: linear-gradient(to top, #a3793a, #fde4a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);*/

  filter: drop-shadow(2px 2px #000000);
}

/* --- Elválasztó vonal --- */
.divider {
    height: 2px;
    width: 60%;
    margin: 0 auto 20px auto;
    background: linear-gradient(90deg, transparent, #e8c872, transparent);
    opacity: 0.7;
  filter: drop-shadow(2px 3px #000000);
}

/* --- Szolgáltatások szöveg --- */
.services {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #f0dca3; /* Világosabb arany az olvashatóságért */
    font-weight: 400;
    margin-bottom: 20px;
    background: linear-gradient(to right, #cf9a4b, #fde4a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services p {
    margin-bottom: 0.5rem;
}

/* --- Gomb (CTA) --- */
.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 12px 30px;
    border: 2px solid #bfa05d;
    color: #bfa05d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #bfa05d;
    color: #002b1f;
    box-shadow: 0 0 15px rgba(191, 160, 93, 0.6);
}

.contact-details {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    margin-top: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f0dca3; /* Világosabb arany az olvashatóságért */
    background: linear-gradient(to right, #cf9a4b, #fde4a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-details p {
    margin: 0.3rem 0;
}

/* --- Reszponzivitás (Mobil nézet) --- */
@media (max-width: 768px) {
    .top-left {
        left: calc(50% - 1550px);
        margin-top: -350px;
    }
    .top-right {
        left: calc(50% + 100px);
        margin-top: -650px;
    }
    .big-letter {
        font-size: 5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .services {
        font-size: 1.1rem;
    }
    
    .divider {
        width: 80%;
    }
    .container {
        padding-top: 150px;
    }
}
