:root {
    --primary: #484555;
    --secondary: #bfccd8;
    --accent: #031779;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/*
nav {
    background: #747171;
    background-size: 300% 300%;
    animation: gradientBG 15s ease infinite;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
*/

/*
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1.2rem;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 1.2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}
*/
/* Hero Sections */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("dhl.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0 1rem;
}

.hero-gallery, .hero-team {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0 1rem;
}

.hero-gallery {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.7)), 
                url('https://images.unsplash.com/photo-1543857778-c4a1a569e7bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.hero-team {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.7)), 
                url('https://images.unsplash.com/photo-1543857778-c4a1a569e7bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.hero h1, .hero-gallery h1, .hero-team h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 900px;
}

.hero-gallery p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.cta-button, .back-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-button {
    background: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 1.8rem;
    margin: 2rem auto;
    display: block;
    width: fit-content;
}

.cta-button:hover, .back-button:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.back-button:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-caption {
    padding: 15px;
    text-align: center;
    background: rgba(48, 47, 47, 0.9); 
    color: white; 
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-item:hover .image-caption {
    background: rgba(0, 0, 0, 0.95); 
}

/* Services & Team */
.services-container,
.people-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.people-container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-card,
.person-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--accent);
}

.person-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card:hover, .person-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card h3, .person-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.person-info h3 {
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.service-card p, .person-info p {
    color: var(--text);
    line-height: 1.7;
}

.person-img {
    height: 300px;
    overflow: hidden;
}

.person-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.person-card:hover .person-img img {
    transform: scale(1.05);
}

.person-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.person-quote {
    font-style: italic;
    background: var(--light);
    padding: 1.2rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 4px 4px 0;
    margin-top: 1rem;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.specialty {
    background: rgba(106, 90, 205, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Bio Section */
.bio-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 3rem auto;
    max-width: 900px;
}

.bio-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bio-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.spotify-icon {
    color: #1DB954;
    font-size: 1.5rem;
    margin-left: 8px;
    transition: transform 0.3s;
}

.spotify-icon:hover {
    transform: scale(1.2);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #3b709e;
    transform: translateY(-5px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 90%;
    width: 600px;
    display: none;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner p {
    margin-bottom: 1.2rem;
    color: var(--dark);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background: #5a4abf;
    transform: translateY(-2px);
}

.cookie-settings {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cookie-settings:hover {
    background: rgba(106, 90, 205, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    padding: 15px 0;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-btn {
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1,
    .hero-gallery h1,
    .hero-team h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        padding: 0.8rem;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 1rem;
    }
    
    .people-container {
        grid-template-columns: 1fr;
    }
    
    .lightbox-btn {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .cookie-banner {
        width: 90%;
        padding: 1.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .hero-gallery h1,
    .hero-team h1 {
        font-size: 1.8rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .person-img {
        height: 250px;
    }
}

