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

/* Color Variables */
:root {
    --primary-gold: #D4AF37;
    --primary-dark-blue: #003366;
    --primary-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #f0f0f0;
    --text-gray: #666666;
    --background-light: #f8f8f8;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-color-strong: rgba(0, 0, 0, 0.2);
    
    /* Font Variables */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset defaults */
body {
    margin: 0;
    font-family: var(--font-body);
    line-height: 1.6;
    background: var(--background-light);
    color: var(--text-dark);
    font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark-blue);
}

/* Hero Section Typography */
.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-light);
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--primary-light);
    text-align: left;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-light);
    text-align: left;
}

/* Navigation */
nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex: 1;
}

nav a {
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 15px;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-gold);
}

nav a:hover::after {
    width: 100%;
}

/* Fixed Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-light);
    padding: 0.5rem 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid #eee;
}

header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Navigation Toggle (hidden by default) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark-blue);
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        padding: 0.5rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-light);
        flex-direction: column;
        align-items: center;
        padding: 0;
        box-shadow: 0 8px 30px var(--shadow-color);
        gap: 0;
    }

    nav a {
        width: 100%;
        padding: 0.9rem 1rem;
        text-align: center;
        border-bottom: 1px solid #eee;
        font-size: 0.9rem;
        color: var(--primary-dark-blue);
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a::after {
        display: none;
    }
    
    nav a:hover {
        color: var(--text-light);
        background-color: var(--primary-dark-blue);
    }

    .nav-toggle:checked ~ nav {
        display: flex;
    }

    header {
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0 1rem;
        height: 60px;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 480px) {
    nav a {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .nav-toggle-label {
        font-size: 1.3rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }
}

/* Cards */
.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    color: var(--primary-dark-blue);
}

.card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Section Headers */
h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    color: var(--primary-dark-blue);
}

h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Testimonials */
.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-gray);
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.location {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Forms */
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.submit-button {
    background-color: var(--primary-gold);
    color: var(--primary-dark-blue);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c8a030;
}

/* FAQ Section */
#faq {
    background-color: var(--primary-light);
    padding: 4rem 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-dark-blue);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 1rem;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0.5rem 1rem 1rem 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Products Section (Formerly Services) */
#products {
    padding: 2rem 1rem 4rem;
    background-color: var(--background-light);
}

#products > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-gray);
}

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

.card {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color-strong);
}

/* About Section */
#about {
    padding: 4rem 1rem;
    background-color: var(--primary-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.about-content strong {
    color: var(--primary-dark-blue);
}

/* Testimonials Section */
#testimonials {
    padding: 4rem 1rem;
    background-color: var(--primary-dark-blue);
}

#testimonials h2 {
    color: var(--primary-light);
}

#testimonials h2:after {
    background: var(--primary-gold);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color-strong);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-card:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

/* Contact Section */
#contact {
    padding: 4rem 1rem;
    background-color: var(--background-light);
}

.contact-container {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    text-align: center;
}

.contact-info {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-dark-blue);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-info a {
    color: var(--primary-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-gold);
}

.contact-info .icon {
    color: var(--primary-gold);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

/* Responsive Adjustments for Sections/Cards */
@media (max-width: 1024px) {
    .services-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .testimonials-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    h1, .hero-section h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    section {
        padding: 3rem 1rem;
    }

    /* Center hero content on mobile */
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 2rem;
    }
    .hero-content p {
        text-align: center; /* Explicitly center paragraphs */
    }

    .services-cards,
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    #products > p,
    .about-content p,
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1, .hero-section h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }

    .services-cards,
    .testimonials-container {
        gap: 1rem;
    }

    .card {
        padding: 1.2rem;
    }
    
    section {
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* General Layout */
main {
    padding-top: 71px;
}

section {
    padding: 4rem 1rem;
}

/* Hero Section Styling */
.hero-section {
    background-color: var(--primary-dark-blue);
    background-image: linear-gradient(rgba(0, 51, 102, 0.6), rgba(0, 51, 102, 0.6)), url('assets/trophy2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--primary-light);
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52vh;
}

.hero-content {
    max-width: 550px;
    text-align: left;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-light);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    width: fit-content;
    margin: 1rem auto;
    background-color: var(--primary-gold);
    color: var(--primary-dark-blue);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #c8a030;
    transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
        text-align: center;
        margin: 0 auto 1.5rem;
        max-width: 500px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem;
        min-height: 45vh;
    }

    .hero-content {
        width: 100%;
    }

    .hero-section h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }
}

/* Logo Link & Text Styling */
.logo-link {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-dark-blue);
}

.company-name {
    color: var(--primary-dark-blue);
}

.company-suffix {
    color: var(--primary-gold);
    font-size: 1.6rem;
    margin-left: -2px;
}

/* Footer */
footer {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem; 
    flex: 1;
    text-align: center;
}

.footer-info span, 
.footer-info a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--primary-gold);
}

.footer-info .icon {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

/* Footer Responsive */
@media (min-width: 769px) {
    .footer-info {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1rem 0.5rem;
    }
    .footer-info span,
    .footer-info a {
        font-size: 0.85rem;
    }
}

/* Satisfied Customers Section */
.satisfied-customers {
    padding: 1.75rem 0;
    background-color: #fff;
    text-align: center;
    margin-top: -1rem;
    position: relative;
    z-index: 1;
}

.satisfied-customers h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.8rem;
}

.customer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.logo-item {
    flex: 0 1 160px;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Specific styling for Harley Davidson logo */
.logo-item img[alt="Harley Davidson Logo"] {
    max-width: 65%;
    margin: 0 auto;
    display: block;
}

/* Specific styling for Bonefish Grill logo */
.logo-item img[alt="Bonefish Grill Logo"] {
    max-width: 50%;
    margin: 0 auto;
    display: block;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
    .customer-logos {
        gap: 1.5rem;
    }
    
    .logo-item {
        flex: 0 1 120px;
    }
}

@media (max-width: 480px) {
    .customer-logos {
        gap: 1rem;
    }
    
    .logo-item {
        flex: 0 1 90px;
    }
}

/* Responsive adjustments for hero text */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

.iframe-container {
    width: 100%;
    margin-top: 1rem;
}