/* GAZI RENOVIERUNG - Style Guide
    Colors: Beige (#F9F7F2), Gold (#C5A059), Charcoal (#1A1A1A)
*/

:root {
    --primary-gold: #c5a059;
    --bg-beige: #f9f7f2;
    --text-dark: #1a1a1a;
    --text-gray: #707070;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Navigation --- */
.navbar {
    padding: 25px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 18px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

.btn-outline {
    border: 1px solid var(--primary-gold);
    padding: 10px 22px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* --- UPDATED Hero Section (Full Background Image) --- */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('/img/HomepageImage.jpg');
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.85) 20%,
    rgba(255,255,255,0) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-text-box {
    padding-right: 40px;
}

.hero-text-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-text-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 350px;
}

.hero-image-wrapper {
    /* Kept as empty placeholder for layout grid balance */
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-gold:hover {
    background: #b08d4a;
}

/* --- Services Section --- */
.services-section {
    padding: 60px 0 100px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Creates fine lines like the image */
    background-color: #e0e0e0; /* Border color */
}

.service-card {
    background-color: var(--bg-beige);
    padding: 60px 40px;
    text-align: center;
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- Portfolio Section --- */
.portfolio-section {
    padding-bottom: 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-caption {
    padding: 15px 0;
}

.portfolio-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.portfolio-caption p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

.btn-text {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 5px;
}

/* --- Contact Section --- */
.transformation-section {
    background-color: var(--bg-beige);
    padding: 80px 0;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.transformation-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.transformation-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.transformation-form p {
    margin-bottom: 30px;
    color: var(--text-gray);
}

.transformation-form input,
.transformation-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
    outline: none;
}

.btn-solid-gold {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.social-icons a {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 30px;
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .hero-text-box h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero {
        background-position: center;
        text-align: center;
        padding: 40px 0;
    }
    .hero-overlay {
        background: rgba(255, 255, 255, 0.8) 20%;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-text-box {
        padding: 0;
        margin: 0 auto;
    }
    .services-grid, .portfolio-grid, .transformation-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links, .nav-cta { display: none; }
    .transformation-grid { gap: 40px; }
}

.footer-services a {
    color: inherit;         /* Merr ngjyrën e tekstit që ka <p> */
    text-decoration: none;  /* Heq vijën poshtë */
    transition: 0.3s;       /* E bën ndryshimin e ngjyrës më të butë */
}

.footer-services a:hover {
    color: #ffcc00;         /* Zgjidh një ngjyrë që i përshtatet GAZI RENOVIERUNG kur e prek me maus */
    text-decoration: underline;
}


