html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #f4f4f4;
}

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

/* Navigation */
nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e67e22;
}

/* Page Header for subpages */
.page-header {
    padding-top: 150px;
    padding-bottom: 80px;
    background-color: #111;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page-header h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    color: #fff;
    margin: 0;
}

/* Hero Section */
#hero {
    background: url('hero-background.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    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;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-3px);
}

/* Sections */
main section {
    padding: 80px 0;
}

main h2 {
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    color: #fff;
    position: relative;
}

main h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e67e22;
    margin: 10px auto 0;
}

/* Products Section */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: #252525;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Roboto Slab', serif;
    margin: 0;
    color: #e67e22;
    padding: 20px 25px 10px;
}

.product-card .description {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #ccc;
    padding: 0 25px 20px;
}

.details-button {
    background: #333;
    color: #fff;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.details-button:hover {
    background: #e67e22;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-details-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

#contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #2b2b2b;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #888;
}

#contact-form button {
    align-self: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #252525;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h3 {
    font-family: 'Roboto Slab', serif;
    color: #e67e22;
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}
.contact-info p strong {
    color: #ccc;
}

/* Animations */
.gsap-reveal {
    opacity: 0;
}

.gsap-reveal-from-bottom {
    transform: translateY(50px);
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}