* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 90%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 999;
}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
}

.logo {
    width: 30%;
    max-width: 900px;
    height: auto;

}

.collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 33%;
    gap: 0;
    padding: 0px 0 0;
    width: 100vw;
    height: 100vh;
}

.collage-item {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
}

.collage-item:active {
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
    filter: brightness(0.7);
}


.item-content {
    text-align: center;
    padding: 20px;
}

.item-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 10px;
    color: white;
}

.item-content p {
    font-size: 1rem;
    font-weight: 900;
    font-style: italic;
    color: #ecf0f1;
    line-height: 1.4;
}

.item-content a {
    color: white;
    text-decoration: none;
}

#contact-text {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

#contact-text.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

#contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

#contact-icons.fade-in {
    opacity: 1;
    transform: scale(1);
}

.contact-icon {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    color: white;
}

.contact-icon:hover {
    transform: scale(1.2);
}

#phone-number {
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#phone-number.fade-in {
    opacity: 1;
    transform: scale(1);
}

.copy-icon {
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.copy-icon:hover {
    transform: scale(1.2);
}

#copy-message {
    font-size: 0.8rem;
    color: #4CAF50;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#copy-message.show {
    opacity: 1;
}

.item-1 {
    grid-column: span 4;
    grid-row: span 2;
    background: none;
    position: relative;
    overflow: hidden;
}

.item-1 .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-2 {
    grid-column: span 3;
    grid-row: span 3;
    background: none;
    position: relative;
    overflow: hidden;
}

.item-2 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-3 {
    grid-column: span 5;
    grid-row: span 1;
    background: none;
    position: relative;
    overflow: hidden;
}

.item-3 .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-4 {
    grid-column: span 2;
    grid-row: span 2;
    background: none;
    position: relative;
    overflow: hidden;
}

.item-4 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-5 {
    grid-column: span 3;
    grid-row: span 2;
    background: none;
    position: relative;
    overflow: hidden;
}

.item-5 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-6 {
    grid-column: span 4;
    grid-row: span 1;
    background: none;
    position: relative;
    overflow: hidden;
}

.item-6 .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .logo {
        width: 60%;
        max-width: 250px;
    }
    
    .collage {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 20%;
        gap: 0;
        padding: 0 0 0;
    }
    
    .item-1 {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .item-2 {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .item-3 {
        grid-column: span 4;
        grid-row: span 1;
    }
    
    .item-4 {
        grid-column: span 2;
        grid-row: span 3;
    }
    
    .item-5 {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .item-6 {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .item-content h3 {
        font-size: 1.2rem;
    }
    
    .item-content p {
        font-size: 0.9rem;
    }
}


