/* Luxury Color Scheme */
:root {
    --royal-purple: #4A154B;
    --light-purple: #7C3AED;
    --gold: #CFB53B;
    --light-gold: #F7E7CE;
    --dark-purple: #2D1832;
    --cream: #FDF7ED;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(74, 21, 75, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--cream);
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Add the new logo styles here */
/* Updated Logo Styles - with Larger Sizes */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1.5rem; /* Increased gap for better spacing */
}

.logo-img {
    max-height: 140px;  /* Increased from 100px to 140px */
    width: auto;
    transition: max-height 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
    font-size: 2.5rem;  /* Increased from 2rem */
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
}

.company-slogan {
    font-family: 'Poppins', sans-serif;
    color: var(--gold);
    font-size: 1.3rem;  /* Increased from 1.1rem */
    font-style: italic;
    margin: 0;
}

/* Updated responsive adjustments for larger base size */
@media (max-width: 991px) {
    .logo-img {
        max-height: 120px;
    }
    .company-name {
        font-size: 2rem;
    }
    .company-slogan {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 100px;
    }
    .company-name {
        font-size: 1.8rem;
    }
    .company-slogan {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 80px;
    }
    .logo-text {
        display: none;
    }
}

/* Continue with your existing CSS... */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Add this to your existing media queries section */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-slogan {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none; /* Optional: hide text on very small screens */
    }
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
}

img {
    max-width: 100%;
    height: auto;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header and Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(74, 21, 75, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    width: auto;
    padding: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--royal-purple);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--royal-purple);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(74, 21, 75, 0.8), rgba(74, 21, 75, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--royal-purple);
}

.highlight i {
    color: var(--gold);
}

/* Advantages Section */
.advantages-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(74, 21, 75, 0.1);
    border: 1px solid var(--light-gold);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
}

/* Shop Section */
.shop-section {
    padding: 5rem 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(74, 21, 75, 0.1);
    border: 1px solid var(--light-gold);
    transition: transform 0.3s;
    background: var(--white);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(74, 21, 75, 0.1);
    border: 1px solid var(--light-gold);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Residential & Commercial Sections */
.residential-section,
.commercial-section {
    padding: 5rem 0;
    background: var(--white);
}

.residential-content,
.commercial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.text-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.text-content ul li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--light-gold);
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(74, 21, 75, 0.1);
    border: 1px solid var(--light-gold);
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.price-guarantee {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--royal-purple);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.price-guarantee i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.price-guarantee h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--gold);
    color: var(--royal-purple);
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--gold);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Footer */
.footer {
    background-color: var(--royal-purple);
    color: var(--light-gold);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-gold);
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 2px 10px rgba(74, 21, 75, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .residential-content,
    .commercial-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        height: 70vh;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .logo-img {
        max-height: 45px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }
}