/* Complete Updated CSS File for FashionPart Website */

:root {
    --primary-color: #ff6700; /* Orange */
    --secondary-color: #333333; /* Dark gray / soft black */
    --background-color: #eceade; /* Beige background color */
    --text-color: #333333; /* Dark gray text color */
    --hover-color: #ff8c40; /* Lighter orange for hover effects */
    --header-footer-bg: #f8f8f8; /* Light beige for header and footer */
}
html {
    scroll-behavior: smooth;
}

::selection {
    background: #ff8c40; /* Background color for selected text */
    color: white; /* Text color for selected text */
}

::selection {
    background: #ff8c40; /* Background color for selected text */
    color: white; /* Text color for selected text */
    outline: 2px solid white; /* Outline color and width */
}

::-moz-selection {
    background-color: lightorange; /* Change to your desired color */
    color: #ff8c40; /* Optional: change text color */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

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

/* Header */
header {
    background-color: var(--header-footer-bg);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 60px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section - Home Page */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('clothing rack.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Products Section - Home Page */
.products {
    padding: 80px 20px;
    background-color: var(--background-color);
    text-align: center;
}

.products h2,
.features h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

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

.product-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    padding: 15px 15px 10px;
}

.product-item p {
    font-size: 1rem;
    color: var(--text-color);
    padding: 0 15px 15px;
}

/* Features Section - Home Page */
.features {
    text-align: center;
    padding: 40px 20px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    flex: 1 1 calc(25% - 40px);
    max-width: 300px;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

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

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* About Hero Section */
.about-hero {
    background-color: #ff9f6c;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 5px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.product-list {
    list-style-type: none;
    padding-left: 0;
}

.product-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.product-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Services Section - About Page */
.services-section {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.services-section .service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-section .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.services-section .service-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.services-section .service-item p {
    font-size: 1rem;
    color: var(--text-color);
    flex-grow: 1;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
}

.info-item {
    flex-basis: calc(33.333% - 20px);
    text-align: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-color);
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--hover-color);
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 103, 0, 0.1);
    outline: none;
}

button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button[type="submit"]:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

button[type="submit"] i {
    margin-left: 10px;
}

/* Footer */
footer {
    background-color: var(--header-footer-bg);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 150px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--secondary-color);
    font-size: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a:hover {
    color: #ff9900;
    transform: translateY(-5px);
    opacity: 0.8;
}

.footer-copyright {
    font-size: 14px;
    color: #ff9900;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .feature-item {
        flex-basis: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-item {
        flex-basis: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    button[type="submit"] {
        width: 100%;
    }
}

/* Thank You Page Styles */
/* Thank You Page Styles */
.thank-you-content {
    text-align: center;
    padding: 80px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.back-to-home {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-home:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 60px 20px;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-content p {
        font-size: 1rem;
    }
}

