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

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #222;
    background-color: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #222;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e08900;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #222;
    position: relative;
    padding-bottom: 10px;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e63946;
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo h1 {
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'EB Garamond', Georgia, serif;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e63946;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 180px 0;
    color: white;
    text-align: center;
    background-position: center 30% !important;
    min-height: 600px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'EB Garamond', Georgia, serif;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
}

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

.project-item {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #222;
    margin-bottom: 10px;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
}

.project-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #222;
    color: white;
}

.why-us .section-title {
    color: white;
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
}

.why-us-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-size: 5rem;
    color: #e63946;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.1;
}

.testimonial-item p {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item h4 {
    color: #222;
    font-weight: 600;
    font-family: 'EB Garamond', Georgia, serif;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
    padding: 20px;
}

.contact-item h3 {
    color: #222;
    margin-bottom: 15px;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e63946;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav ul li {
        margin-left: 10px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .featured-projects, 
    .services, 
    .why-us, 
    .testimonials, 
    .contact-info {
        padding: 50px 0;
    }
} 