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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 246, 240, 0.95);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    letter-spacing: 1px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b4513;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #8b4513;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #f8f6f0;
    z-index: 1100;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 40px 20px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 60px;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #e8e4d8;
    position: relative;
    background-image: url('Imagine/home-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

.btn:hover {
    background-color: #6b3410;
    transform: translateY(-2px);
}

.btn:hover::after {
    width: 80%;
}

.btn.no-underline::after {
    display: none;
}

/* Philosophy Section */
.philosophy {
    padding: 70px 0 50px;
    background-color: #fff;
}

.philosophy h2 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

/* Featured Categories */
.featured-categories {
    padding: 100px 0;
    background-color: #f8f6f0;
}

.featured-categories h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.category-item {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
}

.category-image {
    height: 500px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.category-image:hover img {
    transform: scale(1.08);
}

.color-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e8e4d8;
    transition: background-color 0.3s ease;
}

.category-item:hover .color-placeholder {
    background-color: #d8d4c8;
}

/* Craftsmanship Highlight */
.craftsmanship-highlight {
    padding: 100px 0;
    background-color: #e8e4d8;
}

.craftsmanship-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Entry Points */
.entry-points {
    padding: 100px 0;
    background-color: #fff;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.entry-item {
    padding: 40px;
    background-color: #f8f6f0;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-item h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
}

.entry-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

.entry-item:hover h3::after {
    width: 100%;
}

.entry-item:hover {
    background-color: #e8e4d8;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    background-color: #333;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

.footer-copyright {
    font-size: 0.85rem;
    margin-top: 60px;
    color: #999;
}

.footer-copyright + .footer-copyright {
    margin-top: -10px;
}





/* About Page */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e4d8;
    margin-top: 80px;
    background-image: url('Imagine/about-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
}

.brand-story,
.song-brocade-background,
.designer-perspective {
    padding: 100px 0;
    background-color: #f8f6f0;
}

/* Section Images */
.section-image {
    margin: 30px 0;
    height: 400px;
    overflow: hidden;
}

.section-image .color-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e8e4d8;
    transition: all 0.3s ease;
}

.section-image:hover .color-placeholder {
    background-color: #d8d4c8;
    transform: scale(1.05);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy-section {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 50px;
    gap: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.philosophy-image {
    flex: 0 0 50%;
    height: 500px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    filter: contrast(1.05) saturate(1.1);
}

.philosophy-image:hover img {
    transform: scale(1.05);
}

.philosophy-text {
    flex: 0 0 50%;
    padding: 0 40px;
}

.philosophy-section.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .philosophy-section,
    .philosophy-section.reverse {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }
    
    .philosophy-image {
        flex: 1;
        width: 100%;
    }
    
    .philosophy-text {
        flex: 1;
        width: 100%;
        padding: 20px;
    }
}

.brand-story {
    background-color: #f8f6f0;
}

/* Collections Page */
.collections-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e4d8;
    margin-top: 80px;
    background-image: url('Imagine/collections-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.collections-hero .container {
    position: relative;
    z-index: 2;
}

.collections-hero h1 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
}

.collection-section {
    padding: 100px 0;
    background-color: #fff;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    row-gap: 60px;
    margin-top: 50px;
}

.collection-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    display: block;
    transition: all 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.item-image {
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

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

/* Custom Service Page */
.custom-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e8e4d8;
    margin-top: 80px;
    text-align: center;
    background-image: url('Imagine/custom-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.custom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.custom-hero .container {
    position: relative;
    z-index: 2;
}

.custom-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.custom-hero p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.process-timeline {
    padding: 100px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e8e4d8;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 0 20px rgba(180, 130, 80, 0.4), 0 5px 15px rgba(139, 69, 19, 0.1);
    transform: translateY(-3px);
}

.timeline-item:hover .timeline-number {
    transform: translateX(-50%) scale(1.1);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: #f8f6f0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.custom-cta {
    padding: 180px 0;
    background-color: #e8e4d8;
    text-align: center;
}

.custom-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.custom-cta h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, #8b4513, #d2b48c, #8b4513);
    border-radius: 1px;
}

.custom-cta h2:hover {
    text-shadow: 0 0 20px rgba(255, 250, 240, 1), 0 0 50px rgba(255, 248, 220, 0.95), 0 0 80px rgba(255, 245, 200, 0.85), 0 0 120px rgba(255, 240, 180, 0.7);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.custom-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.cta-buttons .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Design Selection Page */
.design-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e8e4d8;
    margin-top: 80px;
    text-align: center;
    background-image: url('Imagine/design-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.design-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.design-hero .container {
    position: relative;
    z-index: 2;
}

.design-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.design-hero p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.existing-designs {
    padding: 100px 0;
    background-color: #fff;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-themes .designs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.product-themes .design-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

@media (max-width: 1200px) {
    .product-themes .design-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .product-themes .design-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.design-item {
    text-align: center;
    transition: all 0.3s ease;
}

.design-item:hover {
    transform: translateY(-5px);
}

.design-item:hover .design-image {
    box-shadow: 0 0 20px rgba(180, 130, 80, 0.4), 0 5px 15px rgba(139, 69, 19, 0.1);
}

.design-item h3 {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.design-item p {
    margin-top: 10px;
    color: #666;
    line-height: 1.5;
}

.design-image {
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.design-image:hover img {
    transform: scale(1.05);
}

.customizable-options {
    padding: 100px 0;
    background-color: #f8f6f0;
}

.options-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.option-item ul {
    list-style: none;
    margin-top: 20px;
}

.option-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.option-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b4513;
}

.design-cta {
    padding: 150px 0;
    background-color: #e8e4d8;
    text-align: center;
}

.design-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.design-cta h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background: linear-gradient(to right, #8b4513, #d2b48c, #8b4513);
    border-radius: 1px;
}

.design-cta h2:hover {
    text-shadow: 0 0 20px rgba(255, 250, 240, 1), 0 0 50px rgba(255, 248, 220, 0.95), 0 0 80px rgba(255, 245, 200, 0.85), 0 0 120px rgba(255, 240, 180, 0.7);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.design-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.design-cta .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Craftsmanship Page */
.craft-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e8e4d8;
    margin-top: 80px;
    text-align: center;
    background-image: url('Imagine/craft-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.craft-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.craft-hero .container {
    position: relative;
    z-index: 2;
}

.craft-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.craft-hero p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.song-brocade-weaving {
    padding: 100px 0;
    background-color: #fff;
}

.material-details {
    padding: 100px 0;
    background-color: #f8f6f0;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.material-item {
    text-align: center;
}

.material-image {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
}

.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.material-image:hover img {
    transform: scale(1.05);
}

.heritage {
    padding: 100px 0;
    background-color: #fff;
}

/* Contact Page */
.contact-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e8e4d8;
    margin-top: 80px;
    text-align: center;
    background-image: url('Imagine/contact-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1060px;
    margin: 0 auto;
}

.contact-details,
.contact-form {
    background-color: #f8f6f0;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-details h2 {
    font-size: 1.8rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.contact-details h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #f4d03f);
    border-radius: 1px;
}

.contact-details p {
    font-size: 1.15rem;
    line-height: 2.2;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(180, 130, 80, 0.4), 0 5px 15px rgba(139, 69, 19, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Design */
@media (min-width: 769px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 3rem;
    }

    /* Grid Layouts */
    .categories-grid,
    .entry-grid,
    .footer-content,
    .collection-grid,
    .designs-grid,
    .materials-grid,
    .options-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-number {
        left: 20px;
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin-left: 70px !important;
        margin-right: 0 !important;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 15px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links li {
    margin-left: 0;
    margin-right: 30px;
}

[dir="rtl"] .header-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .lang-btn {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .timeline::before {
    left: auto;
    right: 20px;
}

[dir="rtl"] .timeline-number {
    left: auto;
    right: 20px;
}

[dir="rtl"] .timeline-content {
    margin-left: 0 !important;
    margin-right: 70px !important;
}

[dir="rtl"] .option-item li {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .option-item li::before {
    left: auto;
    right: 0;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.philosophy-content,
.craftsmanship-content {
    animation: fadeIn 1s ease-in-out;
}

/* Image Hover Effects */
.color-placeholder {
    transition: transform 0.5s ease;
}

.category-item:hover .color-placeholder,
.collection-item:hover .color-placeholder,
.design-item:hover .color-placeholder,
.material-item:hover .color-placeholder {
    transform: scale(1.05);
}