:root {
    --background-color: #fcf0e0;
    --text-color: #000000;
    --red-link-color: #c1272d;
    --box-background: #ffffff;
    --box-border: #ddd;
    --price-color: #333;
    --light-text-color: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.pricing-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 50px 0;
    margin-bottom: 20px;
}

.price-box {
    background-color: var(--box-background);
    border: 1px solid var(--box-border);
    border-radius: 8px;
    padding: 25px;
    width: 25%;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    flex-grow: 1;
    min-width: 250px;
}

.price-box .price-header {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 20px;
}

.price-box .price-value {
    font-size: 4.5em;
    font-weight: 700;
    color: var(--price-color);
    line-height: 1;
}

.price-box .price-currency {
    font-size: 1.2em;
    vertical-align: super;
    margin-left: 5px;
    color: var(--price-color);
    font-weight: 400;
}

.price-box .service-title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--text-color);
    text-transform: uppercase;
}

.price-box .service-description-small {
    font-size: 0.9em;
    color: var(--light-text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.price-box p {
    font-size: 0.85em;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
    color: var(--text-color);
}


.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.footer-links-left {
    text-align: left;
    font-size: 1.1em;
    flex-basis: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-left a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
}

.footer-links-left a:hover {
    text-decoration: underline;
}


.contact-info-right {
    text-align: right;
    font-size: 0.85em;
    flex-basis: auto;
    line-height: 1.4;
    color: var(--text-color);
    align-self: flex-end;
}

.whatsapp-link {
    margin-bottom: 5px;
}

.whatsapp-link a {
    color: var(--red-link-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.65em;
    line-height: 1.4;
}

.whatsapp-link a:hover {
    text-decoration: underline;
}

.delivery-info {
    font-size: 1.19em;
}


.content-section {
    width: 100%;
    background-color: var(--background-color);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}

.content-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: left;
}

.content-section h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
}

.content-section p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: left;
}


.galeri-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.galeri-section .gallery-subtitle {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--text-color);
    margin-left: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.gallery-item {
    width: 100%;
    height: 256px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}


.blog-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.blog-links {
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: left;
}

.blog-link {
    font-size: 1.2em;
    color: var(--red-link-color);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.blog-link:hover {
    text-decoration: underline;
}


.iletisim-section {
    padding-top: 30px;
}

.gallery-footer-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-icons {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 60px;
    height: 60px;
    display: block;
}

.gallery-contact-text {
    font-size: 1em;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.5;
}

.gallery-contact-text a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
}

.gallery-contact-text a:hover {
    text-decoration: underline;
    color: var(--red-link-color);
}



.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1280px) {
    .pricing-section {
        gap: 20px;
        padding: 40px 0;
    }
    .price-box {
        width: 280px;
    }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .pricing-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-box {
        width: 45%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .bottom-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 0;
    }

    .footer-links-left,
    .contact-info-right {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-links-left {
        white-space: normal;
        flex-direction: column;
        gap: 5px;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .content-section h2 {
        font-size: 1.8em;
    }

    .content-section h3 {
        font-size: 1.3em;
    }

    .content-section p {
        font-size: 0.95em;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .social-icons img { 
        width: 50px;
        height: 50px;
    }
    .social-icons {
        gap: 20px;
    }
    .gallery-contact-text {
        font-size: 0.9em;
    }
    .whatsapp-link a { 
        font-size: 1.2em; 
    }
    .delivery-info { 
        font-size: 1.0em;
    }
}

@media (max-width: 768px) {
    .price-box {
        width: 90%;
    }

    .pricing-section {
        padding: 30px 0;
    }

    .price-box .price-value {
        font-size: 3.5em;
    }

    .price-box .service-title {
        font-size: 1.1em;
    }

    .footer-links-left {
        font-size: 1em;
    }

    .contact-info-right {
        font-size: 0.8em;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 1.6em;
    }

    .content-section h3 {
        font-size: 1.2em;
    }

    .content-section p {
        font-size: 0.9em;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .gallery-item {
        height: 180px; 
    }
    .social-icons img {
        width: 30px;
        height: 30px;
    }
    .social-icons {
        gap: 15px;
    }
    .gallery-contact-text {
        font-size: 0.8em;
    }
    .whatsapp-link a { 
        font-size: 1.0em; 
    }
    .delivery-info { 
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .price-box .price-value {
        font-size: 3em;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .gallery-item {
        height: 150px; 
    }
    .social-icons img {
        width: 35px; 
        height: 35px;
    }
    .social-icons {
        gap: 10px;
    }
    .gallery-contact-text {
        font-size: 0.8em;
    }
    .whatsapp-link a { 
        font-size: 1.0em; 
    }
    .delivery-info { 
        font-size: 0.9em;
    }
}
.blog-content-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: left;
}

.blog-section {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .blog-content-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .blog-content-container {
        padding: 0 10px;
    }
}