html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto Mono", monospace;
    line-height: 1.6;
    color: #f8f8f8;
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://peterbraden.photography/photo/54364594701/large.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    padding: 8rem 0 4rem;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

h1 span {
    color: #ff3087;
    font-size: 60%;
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.content {
    margin: 4rem 0;
    font-size: 1.2rem;
}

.content p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: rgba(255,255,255,0.85);
}

.services {
    margin: 5rem 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
    color: rgba(255,255,255,0.95);
}

.service-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-left: 3px solid #ff3087;
    transition: transform 0.3s, background-color 0.3s;
    backdrop-filter: blur(3px);
}

.service-item:hover {
    transform: translateX(5px);
    background-color: rgba(32, 32, 32, 0.8);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.95);
}

.service-item p {
    color: rgba(255,255,255,0.7);
}

.service-details {
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-left: 3px solid #ff3087;
    backdrop-filter: blur(3px);
}

ul {
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.contact {
    margin: 6rem 0;
    padding: 2.5rem;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.5);
    border-radius: 3px;
    backdrop-filter: blur(3px);
}

a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #90caf9;
    text-decoration: underline;
}

.nav-links {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.home-link {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 2px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 48, 135, 0.3);
    backdrop-filter: blur(2px);
    transition: all 0.2s ease;
}

.home-link:hover {
    background-color: rgba(26, 26, 26, 0.9);
    border-bottom-color: rgba(255, 48, 135, 0.7);
}

/* Home page specific styles */
.content.text-center {
    text-align: center;
}

.content.text-center p {
    margin: 0 auto;
}

.centered-buttons {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.main-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: rgba(10, 10, 10, 0.6);
    color: #fff;
    border: 1px solid #ff3087;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.main-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 48, 135, 0.2), transparent);
    transition: left 0.7s ease;
}

.main-button:hover {
    border-color: #ff5ca1;
    text-decoration: none;
    color: #ff5ca1;
    background-color: rgba(15, 15, 15, 0.8);
}

.main-button:hover:before {
    left: 100%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .content {
        font-size: 1rem;
    }
}