/*------------------------------------------------------------------------
# "Hot Counters" Joomla module
# Copyright (C) 2015 HotThemes. All Rights Reserved.
# License: http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
# Author: HotThemes
# Website: http://www.hotjoomlatemplates.com
-------------------------------------------------------------------------*/


/*
     FILE ARCHIVED ON 09:23:52 Mar 10, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:59:00 Dec 18, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 1.042
  exclusion.robots: 0.032
  exclusion.robots.policy: 0.02
  esindex: 0.016
  cdx.remote: 21.159
  LoadShardBlock: 194.186 (3)
  PetaboxLoader3.datanode: 207.436 (4)
  load_resource: 150.951
  PetaboxLoader3.resolve: 78.038
*/

/* Over Ons Sayfası Stilleri */
.about-content {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    color: #de2828;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.about-section ul li:before {
    content: "✓";
    color: #de2828;
    position: absolute;
    left: 0;
}

.page-header {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #de2828;
}

.about-hero {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .about-content {
        padding: 20px 15px;
    }
    
    .page-header {
        font-size: 28px;
    }
    
    .about-section h2 {
        font-size: 20px;
    }
    
    .about-hero-image {
        height: 250px;
    }
}

/* Contact Sayfası Stilleri */
.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-info {
    flex: 1;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form {
    flex: 2;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: #de2828;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 4px;
}

.info-item p {
    margin: 0;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #de2828;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b22222;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}

/* Projecten Sayfası Stilleri */
.featured-project {
    position: relative;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.featured-content h2 {
    font-size: 32px;
    margin: 10px 0;
}

.project-category {
    display: inline-block;
    background: #de2828;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.project-btn {
    display: inline-block;
    background: #de2828;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.project-btn:hover {
    background: #b22222;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.project-image {
    position: relative;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-project {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: #fff;
    color: #000;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.project-info ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.project-info ul li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-project img {
        height: 400px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-content h2 {
        font-size: 24px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}