/* 
   FacelessFeet Main Stylesheet
   This stylesheet contains all the base styles for the FacelessFeet website
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Social media icon styling */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link .fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
}

.social-link .fa-tiktok {
    color: #000000;
    font-size: 22px;
}

.social-link .fa-link {
    color: #43e660;
    font-size: 22px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    background-color: #222;
    color: #fff;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f06;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/pictures/socks-panties-worn.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: #f06;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e05;
}

/* Featured Models Styles */
.featured-models {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.model-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.model-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.model-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-info {
    padding: 1.5rem;
}

.model-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.model-description {
    color: #666;
    margin-bottom: 1rem;
}

.model-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.model-button:hover {
    background-color: #f06;
}

/* Featured Products */
.featured-products {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #f06;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: bold;
    color: #f06;
    margin-bottom: 1rem;
}

.product-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.product-button:hover {
    background-color: #f06;
}

/* Categories Section */
.categories {
    background-color: #222;
    color: #fff;
    padding: 3rem 1rem;
}

.categories .section-title h2::after {
    background-color: #fff;
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s;
}

.category-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter h3 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background-color: #f06;
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e05;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 1rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f06;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f06;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Model Page Specific Styles */
.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
    margin-bottom: 2rem;
}

.banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.banner-btn {
    display: inline-block;
    background-color: #ff3e6c;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.banner-btn:hover {
    background-color: #e0355d;
}

.profile-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image {
    flex: 0 0 300px; /* Fixed width - smaller than before */
    max-width: 300px; /* Constrain the image size */
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-content {
    flex: 1;
    padding: 20px 0;
}

.profile-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #ff3e6c;
    transform: translateY(-3px);
}

/* Gallery Styles */
.gallery-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-nav {
    text-align: center;
    margin-top: 1rem;
}

.gallery-nav button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff3e6c;
    cursor: pointer;
    padding: 0 15px;
    transition: color 0.3s;
}

.gallery-nav button:hover {
    color: #e0355d;
}

.gallery-dots {
    text-align: center;
    margin-top: 1rem;
}

.gallery-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gallery-dot.active {
    background-color: #ff3e6c;
}

/* Product Options Styles */
.price-container {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff3e6c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.current-price {
    color: #ff3e6c;
}

.option-label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.option-select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.addon-container {
    margin-bottom: 1rem;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.addon-checkbox input {
    margin-right: 0.5rem;
}

.addon-checkbox label {
    font-size: 0.85rem;
    color: #666;
}

.addon-price {
    font-size: 0.85rem;
    color: #ff3e6c;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #ff3e6c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.add-to-cart-btn:hover {
    background-color: #e0355d;
}

/* Product Category Tabs */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    border-color: #ff3e6c;
    color: #ff3e6c;
}

.category-btn.active {
    background-color: #ff3e6c;
    color: #fff;
    border-color: #ff3e6c;
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author {
    font-weight: bold;
    color: #ff3e6c;
}

/* Cart Notification */
#cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f06;
    border-radius: 4px;
    padding: 15px;
    transform: translateX(120%);
    transition: transform 0.3s;
    z-index: 1000;
}

#cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-btn {
    background-color: #f06;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.notification-btn:hover {
    background-color: #e05;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .profile-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        flex: 0 0 250px;
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background-color: #222;
        transition: left 0.3s;
        z-index: 100;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    nav ul li {
        margin: 0 0 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .product-categories {
        flex-wrap: wrap;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        border-radius: 4px;
        padding: 0.8rem;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
      }
      
      .products-section {
        margin: 0 auto;
        max-width: 1200px;
      }
      
      .gallery-section {
        margin: 0 auto;
        max-width: 1200px;
      }
      
      /* This ensures content sections are properly centered */
      section {
        width: 100%;
      }
}