.footer-container {
padding: 40px 0; }
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
align-items: start;
}
.opening-hours {
background-color: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.opening-hours h3 {
color: #8B4513;
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
text-align: center;
text-transform: uppercase;
letter-spacing: 1px;
}
.hours-list {
list-style: none;
}
@media screen and (max-width: 1200px) {
.hours-list {
margin-left: 0;
}
}
.hours-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
border-bottom: 1px solid #f0f0f0;
font-size: 14px;
}
.hours-item:last-child {
border-bottom: none;
}
.day {
font-weight: 600;
color: #555;
min-width: 40px;
}
.time {
color: #666;
font-weight: normal;
}
.social-icons {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 25px;
padding-top: 20px;
border-top: 1px solid #f0f0f0;
}
.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: #8B4513;
color: white;
text-decoration: none;
border-radius: 50%;
transition: all 0.3s ease;
font-size: 18px;
}
.social-icon:hover {
background-color: #D2691E;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}
.company-info {
display: flex;
flex-direction: column;
gap: 30px;
}
.company-header {
display: flex;
align-items: center;
gap: 20px;
background-color: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.company-logo {
margin: 2rem;
width: fit-content;
height: auto;
border-radius: 50%;
background-color: #8B4513;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
font-weight: bold;
flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
.company-logo {
margin-left: 0;
}
}
.company-details h2 {
color: #333;
font-size: 24px;
margin-bottom: 5px;
}
.company-type {
color: #666;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.follow-btn {
background-color: #1da1f2;
color: white;
padding: 8px 16px;
border: none;
border-radius: 20px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
margin-top: 10px;
}
.follow-btn:hover {
background-color: #0d8bd9;
transform: translateY(-1px);
}
.company-description {
background-color: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
line-height: 1.8;
color: #555;
}
.company-description > section {
display: flex;
}
@media screen and (max-width: 400px) {
.company-description > section {
flex-direction: column;
}
}
.company-desc__content h2 {
font-weight: 900;
}
.gallery-preview {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
margin-top: 20px;
}
.gallery-item {
aspect-ratio: 1;
background-color: #e8e8e8;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #999;
font-size: 12px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}
.gallery-item:hover {
background-color: #ddd;
transform: scale(1.05);
}
.footer-bottom {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
font-size: 14px;
} @media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}
.company-header {
flex-direction: column;
text-align: center;
} .gallery-preview {
grid-template-columns: repeat(2, 1fr);
}
.opening-hours,
.company-header,
.company-description {
padding: 20px;
}
}
@media (max-width: 480px) {
.footer-content {
padding: 0 15px;
}
.company-details h2 {
font-size: 20px;
}
.social-icons {
gap: 10px;
}
.social-icon {
width: 35px;
height: 35px;
font-size: 16px;
}
}