/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 50%, #d0d0d0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.description {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Quote styling */
.quote-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.05);
    border-left: 4px solid #333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-container::before {
    content: '"';
    font-size: 4rem;
    color: #666;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    text-align: center;
}

.quote-attribution {
    font-size: 0.95rem;
    color: #666;
    text-align: right;
    font-weight: 500;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* Content sections */
.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

section {
    margin-bottom: 60px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #333, #666);
    margin: 20px auto;
    border-radius: 2px;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.service-item i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 1rem;
}

/* Contact section */
.contact {
    text-align: center;
}

.contact p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info i {
    color: #333;
    font-size: 1.2rem;
}

/* Social media section */
.social-media {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    justify-content: center;
}

.social-link i {
    font-size: 1.5rem;
}

/* Favicon images in social links */
.social-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Social media brand colors - monochromatic theme */
.instagram {
    background: linear-gradient(45deg, #2a2a2a, #404040);
}

.facebook {
    background: linear-gradient(45deg, #1a1a1a, #333333);
}

.twitter {
    background: linear-gradient(45deg, #404040, #555555);
}

.pinterest {
    background: linear-gradient(45deg, #2d2d2d, #484848);
}

.linkedin {
    background: linear-gradient(45deg, #363636, #4a4a4a);
}

.modelsociety {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.modelsociety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.modelsociety:hover {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bluesky {
    background: linear-gradient(45deg, #3d3d3d, #525252);
}

.flickr {
    background: linear-gradient(45deg, #2f2f2f, #444444);
}

.youpic {
    background: linear-gradient(45deg, #424242, #565656);
}

.modelmayhem {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.modelmayhem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.modelmayhem:hover {
    background: linear-gradient(45deg, #0a0a0a, #2a2a2a);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    color: #666;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .content {
        padding: 40px 20px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 30px 15px;
    }
    
    .service-item {
        padding: 30px 15px;
    }
}
