@charset "UTF-8";
/* CSS Document */

/* Upload Section Styles */
.upload-section {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.upload-section h1,
.upload-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #111;
}

.upload-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.tip-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tip-image {
    flex: 1 1 300px;
    max-width: 350px;
}

.tip-text {
    flex: 1 1 500px;
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    .tip-content {
        flex-direction: column;
        align-items: center;
    }

    .tip-text {
        text-align: center;
    }

    .photo-tips {
        padding-left: 0;
        list-style-position: inside;
    }
}

/* Photo Tips List */
.photo-tips {
    text-align: left;
    max-width: 750px;
    margin: 20px auto;
    padding-left: 20px;
    list-style-type: disc;
}

.photo-tips li {
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #444;
    line-height: 1.5;
}

/* Grid Section */
.customer-looks-container {
    text-align: center;
    color: #515682;
    margin: 60px auto;
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
}

.customer-looks-container h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #222;
}

.customer-looks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 0 20px;
}

.customer-looks-grid img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.centered-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.tip-image {
  display: flex;
  justify-content: center;
  flex: 1 1 350px;
  max-width: 350px;
}
.tip-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}
/* Upload Button */
.upload-buttons {
    text-align: center;
    margin: 30px auto;
}

.upload-buttons a {
    display: inline-block;
    background-color: #515682;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.upload-buttons a:hover {
    background-color: #161740;
}

/* Responsive Styles */
@media only screen and (max-width: 1024px) {
    .customer-looks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .customer-looks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upload-section h1,
    .upload-section h2 {
        font-size: 1.6em;
    }
}

@media only screen and (max-width: 480px) {
    .customer-looks-grid {
        grid-template-columns: 1fr;
    }

    .customer-looks-grid img {
        max-width: 100%;
        height: auto;
    }

    .upload-buttons a {
        width: 100%;
    }

    .photo-tips {
        padding-left: 15px;
    }
	
	
}
