/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: #c0a262;
    color: white;
    border-color: #c0a262;
}

.btn-primary:hover {
    background-color: #a08a4f;
    border-color: #a08a4f;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #c0a262;
    border-color: #c0a262;
}

.btn-outline:hover {
    background-color: #c0a262;
    color: white;
}

.btn-white {
    background-color: white;
    color: #333;
    border-color: white;
}

.btn-white:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/* Top Header */
.top-header {
    background-color: #000;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #ccc;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #c0a262;
}

.contact-info i {
    color: #c0a262;
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #ccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background-color: #c0a262;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo img {
    max-height: 60px;
    width: auto;
}

.logo a {
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
    margin: 0 20px;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #c0a262;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2a2a2a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    border: 1px solid #444;
}

.main-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.dropdown-menu a:hover {
    background-color: #333;
    color: #c0a262;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle,
.mobile-menu-toggle {
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: #c0a262;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Search Form */
.search-form {
    background-color: #2a2a2a;
    padding: 20px 0;
    display: none;
    border-bottom: 1px solid #444;
}

.search-form.active {
    display: block;
}

.search-form form {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #444;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    background-color: #333;
    color: #fff;
}

.search-form input:focus {
    border-color: #c0a262;
}

.search-form button {
    background-color: #c0a262;
    color: white;
    border: none;
    padding: 15px 20px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #a08a4f;
}

.search-close {
    background-color: #666 !important;
    margin-left: 10px !important;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #2a2a2a;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 20px 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid #444;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.mobile-dropdown {
    display: none;
    padding-left: 20px;
}

.mobile-dropdown.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 120px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #c0a262;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background-color: rgba(192, 162, 98, 0.8);
    color: white;
    border: 2px solid rgba(192, 162, 98, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: #c0a262;
    border-color: #c0a262;
}

/* Sections */
.about-section,
.categories-section,
.featured-products,
.projects-section,
.instagram-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #c0a262;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c0a262;
}

.section-header p {
    font-size: 18px;
    color: #ccc;
}

/* About Section */
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #c0a262;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background-color: #2a2a2a;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item:hover .category-overlay {
    opacity: 1;
}

.category-overlay h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.product-category {
    color: #c0a262;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* Instagram Section */
.instagram-section {
    background-color: #000;
    padding: 80px 0;
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.instagram-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #c0a262;
    margin-bottom: 20px;
}

.instagram-info p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.instagram-follow:hover {
    transform: translateY(-2px);
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: white;
    font-size: 24px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.project-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

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

.footer-section h2,
.footer-section h3 {
    margin-bottom: 20px;
    color: #c0a262;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c0a262;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #c0a262;
    transform: translateY(-2px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: #c0a262;
    width: 20px;
}

.footer-contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #c0a262;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 24px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .hero {
        height: 70vh;
        margin-top: 80px;
    }
    
    .hero-text {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-nav {
        bottom: 20px;
        gap: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    
    .about-section,
    .categories-section,
    .featured-products,
    .projects-section,
    .instagram-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .about-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-item {
        height: 250px;
    }
    
    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .search-form form {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-form button {
        margin-left: 0;
        width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .category-image,
    .product-image {
        height: 200px;
    }
    
    .project-item {
        height: 200px;
    }
    
    .category-overlay h3,
    .project-overlay h3 {
        font-size: 18px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 16px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .instagram-gallery {
        grid-template-columns: 1fr;
    }
}

/* --- MOBİLDE TOP HEADER'I DÜZENLEMEK İÇİN --- */

/* Ekran genişliği 768px veya daha küçük olduğunda bu kurallar geçerli olsun */
@media (max-width: 768px) {
    
    /* İletişim bilgilerini (telefon, mail, site) gizle */
    .top-header .contact-info {
        display: none;
    }

    /* Sosyal medya ikonlarını ortalamak için kapsayıcının ayarını değiştir */
    .top-header .top-header-content {
        justify-content: center; /* İkonları yatayda ortala */
    }
}

/* ============================================= */
/* === YENİ INSTAGRAM BÖLÜMÜ STİLLERİ BAŞLANGIÇ === */
/* ============================================= */

.instagram-section {
    background-color: #000 !important;
    padding: 100px 0 !important;
}

.instagram-section .section-header {
    margin-bottom: 50px;
}

.instagram-section .section-header h2 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 38px;
    color: #c0a262;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px; /* Buton ile arasını aç */
}

.instagram-section .section-header h2::after {
    display: none;
}

/* --- YENİ EKLENEN BUTON STİLLERİ --- */
.instagram-follow-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.instagram-follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.instagram-follow-button i {
    font-size: 20px;
}
/* --- YENİ BUTON STİLLERİ BİTİŞ --- */


/* Eski "Ziyaret Edin" linkini gizle */
.instagram-visit-link {
    display: none;
}

.instagram-content {
    display: grid;
    grid-template-columns: 40% 1fr; 
    gap: 50px;
    align-items: center;
}

.instagram-phone-mockup {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.5));
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.instagram-info {
    display: none;
}

/* --- RESPONSIVE AYARLAR --- */

@media (max-width: 1024px) {
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .instagram-phone-mockup {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .instagram-section .section-header h2 {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .instagram-section .section-header h2 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* =========================================== */
/* === YENİ INSTAGRAM BÖLÜMÜ STİLLERİ BİTİŞ === */
/* =========================================== */

/* ================================================= */
/* === YENİ PROJELER BÖLÜMÜ STİLLERİ BAŞLANGIÇ === */
/* ================================================= */

.projects-section .projects-grid {
    gap: 25px; /* Kartlar arası boşluk */
}

.projects-section .project-item {
    height: 480px; /* Kartların yüksekliğini artırarak dikey görünüm sağla */
    border-radius: 8px; /* Kenarları hafif yuvarlat */
    box-shadow: none; /* Eski gölgeyi kaldır */
    text-decoration: none; /* Link alt çizgisini kaldır */
    background-color: #222; /* Resim yüklenmezse diye arka plan */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projects-section .project-item:hover {
    transform: translateY(-8px); /* Üzerine gelince hafif yukarı çıksın */
    box-shadow: 0 15px 35px rgba(0,0,0,0.4); /* Vurgulu gölge */
}

.projects-section .project-image {
    height: 100%;
    border-radius: 8px; /* Resmin de kenarları yuvarlak olsun */
}

.projects-section .project-image img {
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.projects-section .project-item:hover .project-image img {
    transform: scale(1.05); /* Üzerine gelince resim de hafifçe büyüsün */
}

.projects-section .project-overlay {
    opacity: 1; /* Her zaman görünür olsun */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%); /* Alttan üste doğru karartma */
    display: flex;
    align-items: center; /* İçeriği dikeyde ortala */
    justify-content: center; /* İçeriği yatayda ortala */
    text-align: center;
    border-radius: 8px;
    padding: 20px;
    transition: background 0.4s ease;
}

.projects-section .project-item:hover .project-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 70%); /* Üzerine gelince daha belirgin olsun */
}

/* Overlay içindeki yazıların kapsayıcısı */
.project-text-content {
    transform: translateY(60px); /* Yazıları başlangıçta biraz aşağıda tut */
    transition: transform 0.4s ease;
}

.projects-section .project-item:hover .project-text-content {
    transform: translateY(0); /* Üzerine gelince yazılar yukarı kaysın */
}

/* Proje ana başlığı (HOTEL, RESTAURANT vb.) */
.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* Başlık altındaki ayırıcı çizgi */
.project-divider {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #c0a262; /* Temadaki altın rengi */
    margin: 15px auto;
    border-radius: 2px;
}

/* Proje alt başlığı (PROJELERİ) */
.project-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}


/* --- MOBİL UYUMLULUK GÜNCELLEMELERİ --- */
@media (max-width: 992px) {
    .projects-section .projects-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2'li sıra yap */
    }
}


@media (max-width: 768px) {
    .projects-section .projects-grid {
        grid-template-columns: 1fr; /* Mobilde tek sıra (alt alta) yap */
    }

    .projects-section .project-item {
        height: 450px; /* Mobildeki yüksekliği isteğin üzerine artırdık */
    }

    .project-title {
        font-size: 2.2rem; /* Mobilde başlığı biraz küçült */
    }

    .project-subtitle {
        font-size: 0.8rem; /* Mobilde alt başlığı biraz küçült */
    }
}

/* =============================================== */
/* === YENİ PROJELER BÖLÜMÜ STİLLERİ BİTİŞ === */
/* =============================================== */


/* =================================== */
/* === ARAMA SONUÇLARI SAYFA STİLLERİ === */
/* =================================== */

.search-results-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.results-info {
    margin-bottom: 40px;
    padding: 15px 20px;
    background-color: #222;
    border-left: 4px solid #c0a262;
    color: #eee;
    border-radius: 0 5px 5px 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background-color: #222;
    border-radius: 8px;
    color: #ccc;
}

.no-results i {
    font-size: 60px;
    color: #c0a262;
    margin-bottom: 30px;
}

.no-results h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.no-results p {
    font-size: 16px;
    margin-bottom: 30px;
}

.no-results p a {
    color: #c0a262;
    text-decoration: underline;
}

.product-info h3 a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: #c0a262;
}

/* =================================== */
/* === CANLI ARAMA SONUÇLARI STİLLERİ === */
/* =================================== */

.search-form .container {
    position: relative;
}

#live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 1001;
    max-height: 350px;
    overflow-y: auto;
    display: none; /* Başlangıçta gizli */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.live-search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #eee;
    border-bottom: 1px solid #3a3a3a;
    transition: background-color 0.2s ease;
}

.live-search-item:last-child {
    border-bottom: none;
}

.live-search-item:hover {
    background-color: #333;
    color: #c0a262;
}

.live-search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.live-search-item span {
    font-weight: 500;
}

/* ============================================= */
/* === MOBİL HEADER BAŞLIĞI İÇİN EKLENEN STİLLER === */
/* ============================================= */

/* Başlığı masaüstünde gizle */
.mobile-header-title {
    display: none;
    color: #ffffff;
    font-size: 1.2rem; /* Yazı boyutu */
    font-weight: 600; /* Yazı kalınlığı */
    letter-spacing: 0.5px;
    align-self: center; /* Dikeyde ortalamak için */
}

/* Ekran 1024px'den küçük olduğunda (tablet ve mobil) */
@media (max-width: 1024px) {
    /* Başlığı görünür yap */
    .mobile-header-title {
        display: block;
    }

    /* İkonlar ve başlık arasına biraz boşluk bırak */
    .header-actions {
        gap: 15px;
    }
}

/* Ekran 480px'den küçük olduğunda (küçük telefonlar) */
@media (max-width: 480px) {
    .mobile-header-title {
        font-size: 1rem; /* Yazı boyutunu biraz küçült */
    }
    .header-actions {
        gap: 12px; /* Boşluğu biraz daha azalt */
    }
}
