/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Modal Styles */
.modal-image {
    max-width: 100%;
    max-height: 80vh;
    margin: auto;
    display: block;
}

/* Contact Page */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.social-links a {
    margin-right: 1rem;
    color: #333;
    text-decoration: none;
}

.social-links a:hover {
    color: #007bff;
}

/* Admin Panel */
.admin-section {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.admin-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-preview {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        height: 50vh;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
} 