
:root {
    --phthalo-green: #103713;
    --maximum-green: #628B35;
    --milk: #FFFDF5;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--milk);
    font-family: 'Helvetica', sans-serif; 
    color: var(--phthalo-green);
    line-height: 1.6;
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px; 
}


.gallery-header {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 6px solid var(--maximum-green); 
}

.gallery-header h1 {
    font-size: 3.5rem;
    font-weight: 400; 
    letter-spacing: -1px;
    color: var(--phthalo-green);
}


.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 240px; 
    gap: 20px; 
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px; 

    box-shadow: 0 4px 15px rgba(16, 55, 19, 0.08); 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: var(--phthalo-green); 
}


.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(16, 55, 19, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.6s ease;
}


.gallery-item:hover img {
    transform: scale(1.05);
}


.item-1 {
    grid-column: 1 / 3; 
    grid-row: 1;       
}

.item-2 {
    grid-column: 1 / 3;
    grid-row: 2;       
}

.item-3 {
    grid-column: 3 / 4; 
    grid-row: 1 / 3;   
}

.item-4 {
    grid-column: 1 / 2; 
    grid-row: 3;       
}

.item-5 {
    grid-column: 2 / 4; 
    grid-row: 3;        
}


@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: 1fr; 
        grid-auto-rows: 300px;
    }
    

    .item-1, .item-2, .item-3, .item-4, .item-5 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-header h1 {
        font-size: 2.8rem;
    }
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  transition: transform 0.4s ease;
  z-index: 1000;
  background-color: #103713;
  
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px; 
}

.nav {
  display: flex;
  gap: 60px; 

  
}

.nav a {
  text-decoration: none;
  color: #fffdf5;
  font-size: 22px; 
  font-weight: 500;
  line-height: 1.2; 
}

.logo img {
    height: 70px; 
    display: block; 
}

.site-footer {
    background-color: #103713; 
    color: #FFFDF5; 

    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 70px 20px;
    width: 100%;
    box-sizing: border-box;
}


.footer-container {
    display: flex;
    justify-content: center;

    align-items: stretch; 
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px; 
}

.footer-left-section {
    display: flex;
    align-items: flex-start;
    gap: 40px; 
}


.footer-logo {
    width: 80px; 
    height: auto;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.footer-links li a {
    color: #FFFDF5; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 500; 
    letter-spacing: 0.3px;
    transition: opacity 0.2s ease;
}

.footer-links li a:hover {
    opacity: 0.7;
}


.footer-divider {
    width: 6px; 
    background-color: #628B35; 
    border-radius: 4px; 
    flex-shrink: 0; 
}


.footer-right-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding-top: 5px;
    padding-bottom: 5px;
}

.contact-block {
    margin-bottom: 25px;
}

.contact-block:last-child {
    margin-bottom: 0;
}


.contact-block strong {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}


.contact-block p, .contact-block a {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFDF5; 
    text-decoration: none;
    font-weight: 400;
}

.contact-block a:hover {
    text-decoration: underline;
}


.phone-block p {
    margin-bottom: 8px;
}


.light-text {
    font-weight: 300;
    opacity: 0.85;
}


@media (max-width: 900px) {
    .footer-container {
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-left-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    
    .footer-divider {
        width: 80px;
        height: 6px;
        align-self: center;
    }

    .footer-right-section {
        align-items: center;
    }
}