@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
    --primary: #2c2727; /* Mély antracitszürke */
    --secondary: #f6cb52; /* Gold (Arany) */
    --secondary-dark: #e0b43a;
    --bg-light: #fdfdfd;
    --bg-sand: #f9f9f9;
    --text-dark: #363636;
    --text-muted: #6e6766;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(44, 39, 39, 0.04);
    --shadow-hover: 0 15px 40px rgba(44, 39, 39, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-sand);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

.container {
    max-width: 1200px; /* Szélesebb content (1000px helyett 1200px) */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    text-align: center;
    padding: 50px 0 35px;
    background-color: var(--white);
    border-bottom: 1px solid rgba(44, 39, 39, 0.03);
}

.logo-container img {
    height: 90px;
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}

.logo-container img:hover {
    transform: scale(1.03);
}

/* Hero Section */
.hero-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 40px 0;
    border: 1px solid rgba(44, 39, 39, 0.03);
    transition: var(--transition);
}

.hero-card:hover {
    box-shadow: var(--shadow-hover);
}

.hero-image {
    height: 450px;
    background: linear-gradient(rgba(44, 39, 39, 0.3), rgba(44, 39, 39, 0.5)), url('images/2022/11/29/gold41.jpg') no-repeat center center/cover;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-image h1 {
    color: var(--white);
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text {
    padding: 40px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    margin: 60px 0;
}

.gallery-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 15px;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

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

.gallery-item {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(44, 39, 39, 0.02);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-img-container {
    position: relative;
    width: 100%;
    height: auto; /* Magasság korlát kikapcsolva az arányok megőrzéséhez */
    overflow: hidden;
    background-color: var(--bg-sand);
}

.gallery-item img {
    width: 100%;
    height: auto; /* A kép teljes egészében láthatóvá válik torzítás és levágás nélkül */
    display: block;
    transition: var(--transition);
}

.gallery-title {
    padding: 20px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--primary);
    border-top: 1px solid rgba(44, 39, 39, 0.03);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin: 60px 0;
    border: 1px solid rgba(44, 39, 39, 0.02);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(246, 203, 82, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary-dark);
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.contact-info a:hover {
    color: var(--secondary-dark);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 39, 39, 0.05);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .gold-text {
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 280px;
        padding: 20px;
    }
    
    .hero-image h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
}
