/* Base Styles */
:root {
    --primary-color: #3366cc; /* Blue */
    --secondary-color: #99ccff; /* Light blue */
    --accent-color: #ff9933; /* Orange accent */
    --bg-color: #ffffff;
    --light-bg: #f0f5ff;
    --dark-bg: #1a4480;
    --text-color: #333333;
    --light-text: #4d4d4d;
    --header-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
}

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    color: var(--dark-bg);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    color: white;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 0.3rem 0;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%233366cc"/><pattern id="tile" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="50" height="50" fill="%234d79d6"/><rect x="50" y="0" width="50" height="50" fill="%233366cc"/><rect x="0" y="50" width="50" height="50" fill="%233366cc"/><rect x="50" y="50" width="50" height="50" fill="%234d79d6"/></pattern><rect width="1200" height="800" fill="url(%23tile)" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero h2::after {
    background-color: white;
}

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

/* Collections Section */
.collections {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

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

.collection-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
}

.tile-pattern {
    height: 200px;
    background-size: cover;
}

.tile-pattern-1 {
    background: linear-gradient(45deg, var(--light-bg) 25%, transparent 25%),
                linear-gradient(-45deg, var(--light-bg) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--light-bg) 75%),
                linear-gradient(-45deg, transparent 75%, var(--light-bg) 75%);
    background-color: var(--secondary-color);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.tile-pattern-2 {
    background:
        radial-gradient(circle at 50% 50%, var(--accent-color) 25%, transparent 30%),
        radial-gradient(circle at 0% 50%, var(--accent-color) 25%, transparent 30%),
        radial-gradient(circle at 100% 50%, var(--accent-color) 25%, transparent 30%),
        radial-gradient(circle at 50% 0%, var(--accent-color) 25%, transparent 30%),
        radial-gradient(circle at 50% 100%, var(--accent-color) 25%, transparent 30%);
    background-size: 60px 60px;
    background-color: var(--light-bg);
}

.tile-pattern-3 {
    background:
        linear-gradient(var(--bg-color) 2px, transparent 2px),
        linear-gradient(90deg, var(--bg-color) 2px, transparent 2px);
    background-size: 30px 30px;
    background-color: var(--secondary-color);
}

.collection-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.collection-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-text);
}

/* Inspiration Section */
.inspiration {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.inspiration-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.inspiration-text {
    flex: 1;
}

.inspiration-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.inspiration-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Showrooms Section */
.showrooms {
    padding: 5rem 5%;
}

.showroom-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.showroom-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.showroom-item:hover {
    transform: scale(1.03);
}

.showroom-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.showroom-item p {
    margin-bottom: 0.5rem;
}

/* Entertainment Section */
.entertainment {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    text-align: center;
}

.entertainment > p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.entertainment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.entertainment-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.entertainment-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.entertainment-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.entertainment-list li:last-child {
    margin-bottom: 0;
}

.entertainment-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo p {
    margin-top: 1rem;
    font-weight: 600;
}

.footer-links,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3,
.footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-social ul li a {
    color: #cce0ff;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    .inspiration-content {
        flex-direction: column;
    }

    .hero {
        height: 70vh;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 5%;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
