/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/bg-pattern.png');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.03;
    z-index: -1;
}

/* Header Stili */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    flex: 0 0 auto;
    margin-right: 40px;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo {
    max-height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

header.scrolled .logo {
    max-height: 70px;
}

.right-header {
    display: flex;
    align-items: center;
}

.header-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    color: #2c3e50;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.05);
}

.nav-item.active {
    color: #fff;
    background-color: #3498db;
}

.nav-item.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #3498db;
    border-radius: 50%;
}

.language-selector {
    display: flex;
    gap: 15px;
}

.language-selector a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-selector a:hover {
    background-color: #f5f5f5;
    color: #333;
}

.language-selector a.active {
    background-color: #3498db;
    color: white;
}

/* Hamburger menü */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: 20px;
    z-index: 100;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
}

.overlay.active {
    display: block;
}

/* Mobil görünüm için medya sorguları */
@media (max-width: 992px) {
    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .header-menu.active {
        right: 0;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 15px 30px;
        border-radius: 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-item.active:after {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .logo-container {
        margin-right: 20px;
    }
    
    .logo {
        max-height: 85px;
    }
    
    header.scrolled .logo {
        max-height: 65px;
    }
}

/* Tablet ve küçük ekranlar için */
@media (max-width: 768px) {
    header {
        padding: 8px 4%;
    }
    
    .logo-container {
        margin-right: 10px;
    }
    
    .logo {
        max-height: 70px;
    }
    
    header.scrolled .logo {
        max-height: 55px;
    }
    
    .content-container {
        padding: 20px 15px;
    }
    
    .announcement h1 {
        font-size: 20px;
    }
    
    .photo-gallery {
        flex-direction: column;
    }
    
    .photo-item {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info-section,
    .contact-form-section {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-info {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

/* Telefon ekranları için */
@media (max-width: 480px) {
    header {
        padding: 6px 3%;
    }
    
    .logo-container {
        margin-right: 5px;
    }
    
    .logo {
        max-height: 60px;
    }
    
    header.scrolled .logo {
        max-height: 45px;
    }
    
    .right-header {
        gap: 5px;
    }
    
    .language-selector {
        gap: 5px;
    }
    
    .language-selector a {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .hamburger-menu {
        width: 25px;
        height: 18px;
        margin-left: 10px;
    }
}

/* Navigasyon Stili - Artık kullanılmayacak */
nav {
    display: none;
}

/* Ana İçerik Stili */
main {
    flex: 1;
    width: 100%;
}

.content-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Sayfa Başlığı Stili */
.page-title {
    text-align: center;
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
    border-radius: 2px;
}

/* Ana Sayfa Showcase Stili */
.homepage-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.showcase-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 40px;
    text-align: center;
    width: 100%;
}

.showcase-content h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.showcase-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}

.btn-primary:hover {
    background-color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .showcase-image {
        height: 350px;
    }
    
    .showcase-content {
        padding: 30px 20px;
    }
    
    .showcase-content h1 {
        font-size: 28px;
    }
    
    .showcase-content p {
        font-size: 16px;
    }
    
    .showcase-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Duyuru Stili */
.announcement {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.announcement h1 {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.announcement h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.announcement p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.announcement .message {
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-info span {
    font-weight: 600;
    margin-right: 10px;
    min-width: 100px;
}

/* Kumaş Sayfası Stilleri */
.fabric-section {
    padding: 20px 0;
}

.fabric-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.fabric-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.banner-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image:hover .banner-img {
    transform: scale(1.05);
}

.fabric-content {
    margin-top: 30px;
}

.fabric-description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fabric-description p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Galeri Stili */
.fabric-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img-container {
    height: 200px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding: 20px 0;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.about-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.about-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #3498db;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.photo-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.photo-item {
    width: 45%;
    margin-bottom: 30px;
    text-align: center;
}

.photo-container {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
}

.photo-caption {
    font-style: italic;
    color: #666;
    font-size: 14px;
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 20px 0;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.contact-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3498db;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 18px;
    color: #333;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3498db;
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Footer Stili */
footer {
    background-color: #2c3e50;
    padding: 50px 0 30px;
    margin-top: 60px;
    color: #fff;
    position: relative;
    width: 100%;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 0 15px 20px;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #3498db;
    border-radius: 2px;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column:hover p {
    color: #fff;
}

.footer-column p a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: #3498db;
    text-decoration: underline;
}

footer p[data-key="footer-copyright"] {
    font-size: 14px;
    color: #95a5a6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
} 