/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
    scroll-margin-top: 60px;
}

a {
    text-decoration: none;
    color: #000;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    margin-right: 15px;
}

.company-name h1 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ccc;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Header */
header {
    background-color: #000;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

header .tagline {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero Section */
#hero {
    background-color: #000;
    color: #fff;
    text-align: center;
    height: var(--real-vh, 100vh);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.9;
    font-style: italic;
}

/* Services Section */
#services {
    background-color: #fff;
    text-align: center;
}

#services h2 {
    margin-bottom: 3rem;
}

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

.service-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

/* Gallery Section */
#gallery {
    background-color: #f2f2f2;
    text-align: center;
    padding: 6rem 0;
}

#gallery h2 {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

#gallery h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.before-after {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.before-after:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.before, .after {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

/* Remove the divider circle since we're stacking vertically */
.before-after::after {
    display: none;
}

/* Add a divider line between before and after */
.before {
    border-bottom: 2px solid #000;
}

/* Default styling, will be overridden by specific pairs */
.before {
    background-color: #ddd;
}

.after {
    background-color: #eee;
}

/* First pair */
.before-after:nth-child(1) .before {
    background-image: url('images/before1.jpg');
}

.before-after:nth-child(1) .after {
    background-image: url('images/after1.jpg');
}

/* Second pair */
.before-after:nth-child(2) .before {
    background-image: url('images/before2.jpg');
}

.before-after:nth-child(2) .after {
    background-image: url('images/after2.jpg');
}

/* Third pair */
.before-after:nth-child(3) .before {
    background-image: url('images/before3.jpg');
}

.before-after:nth-child(3) .after {
    background-image: url('images/after3.jpg');
}

.before h4, .after h4 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 15px;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Add slight effect on hover */
.before:hover, .after:hover {
    filter: brightness(1.05);
}

/* About Section */
#about {
    background-color: #fff;
    text-align: center;
}

#about p {
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Contact Section */
#contact {
    background-color: #f2f2f2;
    text-align: center;
}

#contact h2 {
    margin-bottom: 3rem;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item a {
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #555;
}

/* Pickup Form */
.pickup-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pickup-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

.pickup-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #fff;
}

.attribution {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    background-color: #222;
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.attribution a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.attribution a:hover {
    opacity: 1;
    text-decoration: underline;
}

.insta-link {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
}

.insta-link i {
    margin-right: 5px;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .company-name h1 {
        font-size: 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        left: auto;
        top: 61px; /* Match exactly to navbar height */
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        margin: 0;
    }
    
    .nav-menu.active {
        right: 0;
        left: auto;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .services-grid,
    .gallery-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        /* flex-direction: column; - removed since it's now in the main class */
    }
    
    .before, .after {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .company-name h1 {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 35px;
        margin-right: 10px;
    }
    
    #hero {
        min-height: 500px; /* Fallback for devices that don't support CSS variables */
        height: var(--real-vh, 100vh);
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
        padding: 0 1rem;
        letter-spacing: 0.5px;
    }
}

.gallery-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.pair-description {
    display: none;
}

/* Remove the pair description that appears on hover */
.before-after:hover .pair-description {
    bottom: 0;
    opacity: 1;
}

.pair-description h5 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #000;
}

.pair-description p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

/* Make sure gallery items have enough margin for the description */
.gallery-grid {
    margin-bottom: 3rem;
} 