/* Grant's Gadget Garage - Main Stylesheet */

/* --- Color Palette --- */
/* Primary Orange (Header/Footer): #f26722 */
/* Burnt Orange (Buttons/Accents): #c95100 */
/* Dark Hover Orange (Buttons): #a14000 */
/* Navigation Orange: #f58a4c */
/* Dark Text/Headings: #333 */
/* Body Text: #333 */

/* --- Global Styles & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Orbitron:wght@500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Header & Navigation --- */
header {
    background: #f26722; /* Primary Orange */
    padding: 1rem 0;
    text-align: center;
    border-bottom: 4px solid #c95100; /* Burnt Orange Accent */
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 2px;
    color: #000000; /* Black text color */
}

nav {
    background-color: #f58a4c; /* Lighter Nav Orange */
    padding: 0.5rem 0;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #000000; /* Black Text */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff; /* White text on hover */
}

/* --- Main Content --- */
main {
    flex: 1; /* Pushes footer down */
}

.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

.hero {
    background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: #c95100; /* Burnt Orange */
    color: #ffffff; /* White text looks best on dark orange */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #a14000; /* Darker Hover Orange */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* --- Page Sections & About --- */
.page-section {
    padding: 4rem 2rem;
    text-align: center;
}
.page-section.light { background: #ffffff; }
.page-section.dark { background: #f4f7f6; }

.page-section h3 {
    font-size: 2.5em;
    color: #333; /* Corrected to neutral dark grey */
    margin-bottom: 1rem;
}

.page-section .underline {
    width: 80px;
    height: 4px;
    background: #c95100; /* Burnt Orange */
    margin: 0 auto 2rem;
}

.about-text p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    color: #333;
    text-align: left;
}

/* --- Pricing/Business Page Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Makes cards same height */
}

.pricing-plan {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left; /* Aligns text left inside cards */
    display: flex;
    flex-direction: column;
}

.pricing-plan h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    color: #c95100; /* Burnt Orange */
    text-align: center; /* Center the title */
}

.pricing-plan .price {
    font-size: 3.5em;
    font-weight: 700;
    color: #c95100; /* Corrected to Burnt Orange */
    text-align: center; /* Center the price */
}

.pricing-plan .price span {
    font-size: 0.4em;
    font-weight: 400;
    color: #777;
}

.pricing-plan p {
    text-align: center;
    flex-grow: 1; /* Pushes button down if text is short */
}

.pricing-plan ul { list-style: none; padding: 0; margin: 2rem 0; }
.pricing-plan ul li { padding: 0.7rem 0; border-bottom: 1px solid #eee; }
.pricing-plan ul li:last-child { border-bottom: none; }
.pricing-plan .fas { color: #27ae60; margin-right: 10px; }
.pricing-plan form { margin-top: auto; text-align: center; } /* Pushes button to bottom */


.perks-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f4f7f6;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.perks-section p {
    color: #333;
    font-size: 1.1em;
}

/* --- Shop Page Section --- */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.shop-container h2 { font-size: 2.5em; color: #333; margin-bottom: 1rem; }
.shop-container .underline { width: 80px; height: 4px; background: #c95100; margin: 0 auto 2rem; }
.shop-container .intro-text { max-width: 700px; margin: 0 auto 3rem auto; font-size: 1.1em; color: #555; }

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

.product-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.product-image { width: 100%; height: 220px; object-fit: cover; }

.product-icon { text-align: center; padding: 40px 20px; background-color: #f4f7f6; height: 220px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; }
.product-icon i {
    font-size: 6em;
    color: #c95100; /* burnt orange */
}
.product-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #333; /* Corrected to neutral dark grey */
    font-size: 1.4em;
}
.product-price { font-size: 1.3em; font-weight: bold; color: #c95100; margin: 0.5rem 0; line-height: 1.3; }
.product-description { color: #555; margin-bottom: 1.5rem; flex-grow: 1; }

.product-contact-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #c95100; /* burnt orange */
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
    box-sizing: border-box;
}

.product-contact-btn:hover {
    background: #a14000; /* darker hover orange */
}

/* --- Footer --- */
footer {
    background: #f26722; /* Primary Orange */
    color: #000000; /* Black Text */
    text-align: center;
    padding: 2rem;
}

.socials-area a {
    color: #000000; /* Black Icons */
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.socials-area a:hover {
    color: #ffffff; /* White Icons on hover */
}

footer p {
    margin-top: 1rem;
    font-size: 0.9em;
    font-weight: bold; /* Make footer text bolder for readability */
}