/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.4;
    color: #1d1d1f;
    background-color: #f5f5f7;
    overflow-x: hidden;
}

/* Global Navigation */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 20px;
}

.global-nav nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-image {
    height: 40px; /* Adjust size as needed */
    width: auto;
}

.global-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.global-nav a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 1rem;
    transition: color 0.3s;
}

.global-nav a:hover {
    color: #0071e3;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('/img/photoStudioBg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #005bb5;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.portfolio-grid img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 1rem;
}

.contact button {
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #005bb5;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .global-nav ul {
        gap: 10px;
    }

    .global-nav a {
        font-size: 0.9rem;
    }

    .logo-image {
        height: 30px;
    }
}