@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@400;700&family=Oswald:wght@500;700&display=swap');

:root {
    --heading-font: 'Oswald', sans-serif;
    --body-font: 'Montserrat', sans-serif;
    --logo-font: 'Cinzel', serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: #D4AF37;
    font-weight: 700;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.page-content {
    padding-top: 91px;
}

header.new-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease;
}

header.sticky-header {
    position: sticky;
    background: #181818;
    border-bottom: 1px solid #282828;
}

.new-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-logo {
    font-family: var(--logo-font);
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 2px;
}

.new-nav {
    display: block;
}

.new-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.new-nav li {
    margin: 0 20px;
}

.new-nav a {
    font-family: var(--body-font);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.new-nav a:hover, .new-nav a.active {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

#hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

#hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

#new-hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('resim/arkaplan.jpg') no-repeat center center/cover;
    filter: brightness(0.6);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    animation: fadeIn 1s ease-in-out;
}

#new-hero h1 {
    font-family: var(--heading-font);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

#new-hero h2 {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 400;
    color: #eee;
    margin-top: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

#about-us {
    background-color: #181818;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-content span {
    font-family: var(--body-font);
    color: #D4AF37;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-content p {
    color: #aaa;
    margin-bottom: 30px;
}

.about-cta {
    font-family: var(--body-font);
    text-decoration: none;
    background-color: #D4AF37;
    color: #121212;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-cta:hover {
    background-color: #c69f36;
}

.service-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.service-list li {
    background: #181818;
    padding: 25px;
    margin-bottom: 15px;
    border-left: 4px solid #D4AF37;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.service-list li:hover {
    background-color: #222;
}

.service-list li span {
    font-weight: bold;
    color: #D4AF37;
    font-size: 1.2rem;
}

#team {
    background-color: #181818;
    padding-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.team-member {
    background-color: #121212;
    padding: 30px 20px;
    border-radius: 5px;
    border: 1px solid #282828;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}

.team-member h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #D4AF37;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-gsm {
    color: #ccc;
    font-weight: 500;
    margin-top: 15px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D4AF37;
    color: #121212;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #c69f36;
}

.whatsapp-svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: #121212;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.instagram-link:hover {
    background-color: #444;
}

.instagram-svg {
    width: 20px;
    height: 20px;
    fill: #E0E0E0;
}

#catalog {
    padding: 60px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.catalog-item {
    background-color: #181818;
    border: 1px solid #282828;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.catalog-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.catalog-item:hover img {
    filter: brightness(0.5);
}

.catalog-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    margin: 0;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.catalog-item:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

#contact-new {
    padding-top: 60px;
}

#contact-new .contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

#contact-new .contact-details p {
    font-size: 1.1rem;
    line-height: 1.8;
}

#contact-new .contact-details strong {
    color: #D4AF37;
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 3px solid #282828;
    border-radius: 5px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form {
    background-color: #181818;
    padding: 30px;
    border-radius: 5px;
}

.contact-form h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #aaa;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #222;
    color: #E0E0E0;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.contact-form button {
    display: inline-block;
    padding: 12px 30px;
    background: #D4AF37;
    color: #121212;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: #c69f36;
}

footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
    border-top: 1px solid #282828;
}

.new-header.scrolled {
    background-color: #121212;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    #contact-new .contact-grid-new {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .section-title { font-size: 2rem; }

    .new-nav ul {
        position: fixed;
        right: 0;
        top: 0;
        background-color: #181818;
        height: 100vh;
        width: 70%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 100;
    }

    .new-nav.nav-active ul {
        transform: translateX(0%);
    }
    
    #hamburger {
        display: block;
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    #new-hero h1 { font-size: 3rem; }
    #new-hero h2 { font-size: 1rem; }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

#testimonials {
    background-color: #121212;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #181818;
    padding: 30px;
    border-radius: 5px;
    border-top: 4px solid #D4AF37;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
    font-style: normal;
    text-align: right;
}

@media screen and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

#packages {
    background-color: #121212;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.package-card {
    background-color: #181818;
    border: 1px solid #282828;
    border-left: 5px solid #D4AF37;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
}

.package-card h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.package-price {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin: 10px 0 20px 0;
}

.package-services {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #aaa;
    line-height: 2;
}

#services-detailed {
    padding-top: 0;
}

.service-category {
    margin-top: 50px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    border-bottom: 1px solid #282828;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.category-icon {
    width: 32px;
    height: 32px;
}

.service-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.service-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.service-description {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    padding-right: 20px;
}

.service-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #D4AF37;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .category-title {
        font-size: 1.8rem;
    }
    .service-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .service-price {
        text-align: right;
    }
}