:root {
    --white: #ffffff;
    --light-grey: #f5f5f7;
    --mid-grey: #d1d1d6;
    --dark-grey: #48484a;
    --text-color: #1d1d1f;
    --accent-grey: #8e8e93;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 300; /* No bold text */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, a, button {
    font-weight: 400; /* Medium weight but still not bold */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

/* Header & Nav */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--mid-grey);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: var(--dark-grey);
}

.nav-links a {
    margin-left: 2rem;
    font-size: 0.9rem;
    color: var(--accent-grey);
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--dark-grey);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75); /* Faded effect */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-grey);
    opacity: 0.6;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--accent-grey);
    margin-bottom: 2rem;
}

.hero-decoration {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-decoration span {
    width: 6px;
    height: 6px;
    background-color: var(--mid-grey);
    border-radius: 50%;
}

.hero-decoration span:nth-child(2) {
    width: 30px;
    border-radius: 10px;
}

.cta-button {
    padding: 1rem 2.5rem;
    background-color: var(--text-color);
    color: var(--white);
    font-size: 0.9rem;
    transition: 0.4s;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--dark-grey);
}

/* Services */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-grey);
}

.services {
    background-color: var(--light-grey);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--mid-grey);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--accent-grey);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Rolling Gallery */
.gallery {
    padding: 6rem 0;
    overflow: hidden;
}

.rolling-container {
    width: 100%;
    overflow: hidden;
}

.rolling-track {
    display: flex;
    width: calc(300px * 12); /* Adjust based on item count */
    animation: scroll 30s linear infinite;
}

.rolling-item {
    width: 400px;
    flex-shrink: 0;
    padding: 0 10px;
}

.rolling-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.5s;
}

.rolling-item img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 6)); } /* Adjust based on original count */
}

/* Contact */
.contact {
    background-color: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item span {
    color: var(--accent-grey);
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: var(--accent-grey);
    border-top: 1px solid var(--light-grey);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .nav-links {
        display: none;
    }
}
