/* Compact View CSS - Makes the layout smaller and more condensed */

/* Reduce overall scaling */
html {
    font-size: 14px; /* Reduce base font size from 16px */
}

body {
    font-size: 0.9rem; /* Slightly smaller body text */
}

/* Make container more compact */
.container {
    max-width: 1000px; /* Reduce from 1200px */
    padding: 0 15px; /* Reduce padding */
}

/* Reduce section spacing */
.about, .product-highlights, .product-categories, .location {
    padding: 3rem 0; /* Reduce from typical 4-5rem */
}

/* Make hero section more compact */
.hero {
    min-height: 70vh; /* Reduce from 100vh */
    padding: 2rem 0; /* Reduce padding */
}

.hero-content {
    padding: 1.5rem; /* Reduce padding */
    max-width: 700px; /* Reduce from 800px */
}

.hero h1 {
    font-size: 2.5rem; /* Reduce from 3.5rem */
    margin-bottom: 0.75rem; /* Reduce margin */
    
    /* Text shadow that matches the text color */
    text-shadow:
        2px 2px 4px rgba(3, 3, 3, 0.8),  /* Dark shadow matching text */
        4px 4px 8px rgba(3, 3, 3, 0.6),  /* Deeper shadow */
        6px 6px 12px rgba(3, 3, 3, 0.4); /* Softest shadow */
}

.hero p {
    font-size: 1.1rem; /* Reduce from 1.25rem */
    margin-bottom: 1.5rem; /* Reduce margin */
}

/* Reduce section titles */
.section-title {
    font-size: 2rem; /* Reduce from 2.5rem */
    margin-bottom: 2rem; /* Reduce from 3rem */
}

/* Make about section more compact */
.about-grid {
    grid-template-columns: 1.2fr 1fr; /* Give image more space */
    gap: 2rem; /* Reduce from 3rem */
}

.about-content h2 {
    font-size: 1.8rem; /* Reduce from 2.2rem */
    margin-bottom: 0.75rem; /* Reduce margin */
}

.about-content p {
    font-size: 0.95rem; /* Reduce font size */
    margin-bottom: 1rem; /* Reduce margin */
}

/* Make product cards more compact */
.product-cards {
    gap: 2rem; /* Reduce from 3rem */
}

.product-card {
    padding: 1.5rem; /* Reduce from 2rem */
}

/* Product card compact layout - image on left, text flows naturally */
.product-card-content {
    display: flex;
    align-items: flex-start; /* Align to top */
    gap: 1.5rem; /* Reduced gap for compactness */
}

.product-image {
    flex: 0 0 40%; /* Slightly smaller image width */
    height: auto;
}

.product-image .image-container {
    height: 60px; /* Match height with first text (heading) */
    min-height: auto; /* Remove min-height constraint */
}

.product-details {
    flex: 1; /* Take remaining space */
    padding-left: 0; /* Remove left padding */
    display: block; /* Natural text flow */
    height: auto; /* Natural height */
}

.product-details h3 {
    margin-top: 0;
    margin-bottom: 0.75rem; /* Compact spacing */
    font-size: 1.3rem; /* Slightly smaller */
}

.product-details h4 {
    margin-bottom: 0.75rem; /* Compact spacing */
    font-size: 1rem; /* Smaller subtitle */
    color: #666;
}

.product-details p {
    margin-bottom: 1rem; /* Compact spacing */
    font-size: 0.9rem; /* Smaller text */
    line-height: 1.5;
}

.product-details .product-link {
    margin-top: 0; /* Remove auto margin */
    display: inline-block;
    font-size: 0.9rem; /* Smaller link */
    padding: 0.5rem 1rem; /* Compact button */
}

/* Responsive adjustments for side-by-side layout */
@media (max-width: 768px) {
    .product-card-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .product-details {
        padding-left: 0;
        text-align: center;
    }
    
    /* Product cards responsive improvements */
    .product-card-content {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 1rem; /* Compact gap */
        text-align: center; /* Center align on mobile */
    }
    
    .product-image {
        flex: none;
        width: 100%;
    }
    
    .product-image .image-container {
        height: 50px; /* Match height with heading on mobile */
    }
    
    .product-details {
        padding-left: 0;
    }
    
    .product-details h3 {
        font-size: 1.2rem; /* Smaller on mobile */
    }
    
    .product-details h4 {
        font-size: 0.95rem; /* Smaller on mobile */
    }
    
    .product-details p {
        font-size: 0.85rem; /* Smaller on mobile */
    }
    
    /* Category tags responsive */
    .category-tags {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .category-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Location section responsive improvements */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        gap: 1.25rem;
    }
    
    .location-address, .location-hours, .location-contact {
        padding: 1.5rem;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .location-info h3 {
        font-size: 1.2rem;
    }
    
    .location-info p {
        font-size: 0.9rem;
    }
    
    /* Versa Series responsive */
    .versa-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .versa-item {
        padding: 0.75rem;
    }
    
    .versa-header h3 {
        font-size: 1.3rem;
    }
    
    .versa-item i {
        font-size: 1.3rem;
    }
    
    .versa-item h4 {
        font-size: 0.9rem;
    }
    
    .versa-item p {
        font-size: 0.75rem;
    }
}

.product-details h3 {
    font-size: 1.4rem; /* Reduce from 1.6rem */
    margin-bottom: 0.5rem; /* Reduce margin */
}

.product-details h4 {
    font-size: 1.1rem; /* Reduce from 1.2rem */
    margin-bottom: 0.75rem; /* Reduce margin */
}

.product-details p {
    font-size: 0.9rem; /* Reduce font size */
    margin-bottom: 1rem; /* Reduce margin */
}

/* Make category cards more compact */
.categories-grid {
    gap: 1.5rem; /* Reduce from 2rem */
}

.category-card {
    padding: 1.5rem; /* Reduce from 2rem */
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card h3 {
    font-size: 1.3rem; /* Reduce from 1.5rem */
    margin-bottom: 0.5rem; /* Reduce margin */
}

/* Category tags styling */
.category-tags {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-block;
    background: var(--gold-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.category-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.category-card p {
    font-size: 0.9rem; /* Reduce font size */
    margin-bottom: 1rem; /* Reduce margin */
}

.category-card ul {
    margin-bottom: 1rem; /* Reduce margin */
    text-align: left;
    padding-left: 0;
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 1;
}

.category-card ul li {
    font-size: 0.85rem; /* Reduce font size */
    margin-bottom: 0.25rem; /* Reduce margin */
    text-align: left;
    padding-left: 1rem;
    position: relative;
}

.category-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category-link {
    margin-top: auto;
}

/* Versa Series Section */
.versa-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.versa-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.versa-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.versa-header p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 auto;
}

.versa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.versa-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.versa-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
}

.versa-item i {
    color: var(--gold-medium);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.versa-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.versa-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.versa-cta {
    text-align: center;
}

.versa-link {
    display: inline-block;
    color: var(--gold-medium);
    font-weight: 600;
    padding: 0.75rem 6.5rem;
    border: 2px solid var(--gold-medium);
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.09em;
    text-decoration: none;
    min-width: 260px;
    text-align: center;
}

.versa-link:hover {
    background: var(--gold-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Make location section more compact and organized */
.location-grid {
    gap: 2.5rem; /* Slightly more space for better organization */
    align-items: flex-start; /* Align to top for better layout */
}

.location-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Consistent spacing between info boxes */
}

.location-address, .location-hours, .location-contact {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-address:hover, .location-hours:hover, .location-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.location-address::before, .location-hours::before, .location-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.location-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-info h3 i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.location-info p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info strong {
    color: var(--dark-color);
    font-weight: 600;
}

.location-contact p {
    margin-bottom: 0.75rem;
}

.location-contact p i {
    color: var(--gold-medium);
    width: 16px;
    text-align: center;
}

.location-contact a {
    color: var(--gold-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-contact a:hover {
    color: var(--gold-dark);
}

.location-cta-button {
    background: var(--gold-gradient);
    color: white !important;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.location-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.location-cta-button i {
    font-size: 1.1rem;
}

/* Make footer more compact */
footer {
    padding: 2rem 0; /* Reduce from 3rem */
}

.footer-grid {
    gap: 2rem; /* Reduce from 3rem */
}

.footer-brand p {
    font-size: 0.9rem; /* Reduce font size */
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem; /* Reduce from 1.3rem */
    margin-bottom: 0.75rem; /* Reduce margin */
}

.footer-links ul li {
    margin-bottom: 0.5rem; /* Reduce margin */
}

.footer-contact p {
    font-size: 0.9rem; /* Reduce font size */
    margin-bottom: 0.5rem; /* Reduce margin */
}

/* Reduce navbar height */
.navbar {
    padding: 0.75rem 0; /* Reduce from 1rem */
}

.navbar .container {
    padding: 0 15px; /* Reduce padding */
}

/* Reduce logo size */
.logo img {
    width: 150px; /* Reduce from 180px */
    height: auto;
}

.logo-text {
    font-size: 1rem; /* Reduce from 1.2rem */
}

/* Improve map container styling */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    height: 100%;
    width: 100%;
    border: none;
}

/* Responsive adjustments for compact view */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh; /* Even more compact on mobile */
    }
    
    .hero h1 {
        font-size: 2rem; /* Smaller on mobile */
    }
    
    .hero p {
        font-size: 1rem; /* Smaller on mobile */
    }
    
    .section-title {
        font-size: 1.8rem; /* Smaller on mobile */
    }
    
    .about, .product-highlights, .product-categories, .location {
        padding: 2rem 0; /* Even more compact on mobile */
    }
    
    .versa-section {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .versa-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .versa-item {
        padding: 0.75rem;
    }
    
    .versa-header h3 {
        font-size: 1.2rem;
    }
    
    .versa-header p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem; /* Even smaller on very small screens */
    }
    
    .hero-content {
        padding: 1rem; /* Reduce padding further */
    }
    
    .container {
        padding: 0 10px; /* Reduce padding further */
    }
    
    .versa-section {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .versa-item {
        padding: 0.5rem;
    }
    
    .versa-item i {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .versa-item h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .versa-item p {
        font-size: 0.7rem;
    }
    
    .versa-link {
        padding: 0.6rem 3.75rem;
        font-size: 0.8rem;
        min-width: 240px;
    }
}

/* Additional compact adjustments */
.product-image {
    height: 200px; /* Reduce from typical 250-300px */
}

.category-icon {
    font-size: 2rem; /* Reduce from 2.5rem */
    margin-bottom: 0.75rem; /* Reduce margin */
}

/* Reduce spacing between elements */
.about-content, .product-details, .category-card {
    margin-bottom: 0; /* Remove extra margins */
}

/* Make buttons slightly smaller */
.hero-cta, .product-link, .category-link, .footer-cta-button {
    padding: 0.75rem 1.5rem; /* Reduce padding */
    font-size: 0.9rem; /* Reduce font size */
}

/* Reduce image container heights */
.image-container {
    height: 250px; /* Reduce from typical 300-350px */
}

.product-image .image-container {
    height: 180px; /* Reduce from typical 220-250px */
} 