﻿/* Section Styling */
section {
    scroll-margin-top: 80px; /* Account for fixed nav */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-brand, 'Gotham Book', 'Gotham', sans-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #B8956A, #a07d56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.service-category {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-10px);
}

.music-category {
    border-color: rgba(184, 149, 106, 0.3);
}

.music-category:hover {
    border-color: rgba(184, 149, 106, 0.8);
    box-shadow: 0 20px 40px rgba(184, 149, 106, 0.3);
}

.business-category {
    border-color: rgba(184, 149, 106, 0.3);
}

.business-category:hover {
    border-color: rgba(184, 149, 106, 0.8);
    box-shadow: 0 20px 40px rgba(184, 149, 106, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.category-icon svg {
    width: 100%;
    height: 100%;
    color: #B8956A;
}

.service-category h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.service-category p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #B8956A;
}

.service-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.music-button {
    background: linear-gradient(135deg, #B8956A, #d4b587);
}

.music-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

.business-button {
    background: linear-gradient(135deg, #B8956A, #d4b587);
}

.business-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

/* Portfolio Preview Section */
.portfolio-preview-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-item {
    text-decoration: none;
    color: inherit;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-10px);
}

.preview-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.preview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-item:hover .preview-thumbnail img {
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.preview-info {
    padding: 1.5rem;
}

.preview-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.preview-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(184, 149, 106, 0.1);
    color: #B8956A;
    border-radius: 20px;
    font-size: 0.85rem;
}

.view-all-portfolio {
    text-align: center;
}

.view-all-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #B8956A, #a07d56);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #B8956A;
}

.info-item a,
.info-item p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #B8956A;
}

.contact-form-container {
    background: rgba(20, 20, 20, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8956A;
    background: rgba(255, 255, 255, 0.08);
}

.submit-button {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #B8956A, #a07d56);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
}

.full-contact-link {
    text-align: center;
    margin-top: 2rem;
}

.text-link {
    color: #B8956A;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #B8956A;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-section,
    .portfolio-preview-section,
    .contact-section {
        padding: 4rem 0;
    }

    .portfolio-preview-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}
