/*
 * Custom stylesheet for Paramont Storage
 *
 * This file defines a clean, modern design inspired by our previous
 * website but simplified for maintainability. The green accent colour
 * (#8BC34A) reflects our brand and is used consistently across
 * interactive elements. Typography is set in Inter, a legible and
 * friendly sans‑serif font.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px; /* space for fixed header */
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo {
    height: 50px;
    width: auto;
}
.nav {
    display: flex;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #8BC34A;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8BC34A;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
}
.btn-primary {
    background-color: #8BC34A;
    color: #fff;
    border-color: #8BC34A;
}
.btn-primary:hover {
    background-color: #7CB342;
    border-color: #7CB342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: #8BC34A;
    border-color: #8BC34A;
}
.btn-secondary:hover {
    background-color: #8BC34A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}
.hero-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.hero-text {
    flex: 1 1 50%;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.hero-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.about p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f7f7f7;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #8BC34A;
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}
.feature-card p {
    font-size: 1rem;
    color: #555;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.pricing p {
    font-size: 1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 2rem;
}
.pricing-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}
.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8BC34A;
    margin: 0.5rem 0 1rem;
}
.price span {
    font-size: 1rem;
    color: #555;
}
.price-features {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}
.price-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f7f7f7;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.contact-detail h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}
.contact-detail p,
.contact-detail a {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
    text-decoration: none;
}
.contact-detail a:hover {
    text-decoration: underline;
}
.contact-map h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}
.contact-map p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.3rem;
}
.directions-link {
    color: #8BC34A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.directions-link:hover {
    color: #7CB342;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-size: 0.9rem;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    height: 40px;
    width: auto;
}
.footer-info p {
    margin-bottom: 0.3rem;
    color: #ddd;
}
.footer-contact p {
    margin-bottom: 0.3rem;
    color: #ddd;
}
.footer-contact a {
    color: #8BC34A;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}

/* Fade‑in animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        flex: 1 1 100%;
    }
    .hero-image {
        order: -1;
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
    }
    .nav {
        display: none;
    }

    /* Center the logo when navigation collapses on small screens */
    .header .container {
        justify-content: center;
    }
}