/*-------------------------------------
GENERAL & BASE STYLES
-----------------------------------------*/
.partA-body {
    font-family: Arial, sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.My-name {
    font-family: 'Georgia', Times, serif;
    font-size: 3em;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: #000;
}

.section-label {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.75em;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    color: #555;
    text-transform: uppercase;
}

/*--------------------------------
PART A - PROFILE CARD STYLES
---------------------------------*/

.card-container {
    max-width: 500px;
    width: 100%;
    background-color: rgb(251, 251, 251);
    border-radius: 25px;
    box-shadow: 0 10px 20px rgb(215, 211, 211);
    overflow: hidden;
    justify-content: center;
}

.box-header {
    background-image: url('assets/working.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    position: relative;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    padding: 15px;
    z-index: 0;
}
.box-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(116, 116, 116, 0.5);
    z-index: 1;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}
.box {
    padding: 10px 10px;
    border-radius: 10px;
    text-align: center;
    background-color: rgb(0, 0, 0);
    border: 3px dashed rgb(255, 255, 255);
    display: inline-block;
    margin: 2px 5px;
    clear: none;
    float: left;
}

.box:hover {
    background-color: rgb(255, 208, 227);
    border: 5px dashed rgb(132, 157, 255);
    background-image: url(assets/kitty-kittyjump.webp);
    margin: 10px;
    padding: 35px 25px;
    color: rgb(64, 0, 255);
}

.avatar-container {
    margin: 0 auto;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    border: 3px solid white;
    padding: 5px;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.username {
    font-weight: bold;
    margin: 0;
    position: relative;
    z-index: 2;
    color: white;
}

.description-title {
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 0.9em;
    color: white;
}
.description-title span {
    color: white;
}

.description {
    font-size: 0.8em;
    color: #ffea00;
    margin: 5px 0 15px 0;
    position: relative;
    z-index: 2;
}
.social-icons {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 0px;
    margin: 0px;
}
.social-icons ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.social-icons a:hover .social-icon {
    opacity: 1;
}


/*---------------------------------------
PART A - LINK SECTION & PSEUDO-CLASSES
--------------------------------------*/
.links-section {
    padding: 20px;
}
.links-section ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.link-button {
    display: block;
    padding: 15px 20px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.2s;
}
.link-button:visited {
   background-color: rgb(255, 255, 255) !important;
    color: rgb(0, 0, 0) !important;
}
.link-button:hover {
    background-color: #000000 !important;
    color: white !important;
}
.link-button:active {
    background-color: rgb(248, 224, 248);
    color: black;
}

.links-section .link-item:first-child .link-button {
    border: 2px solid rgb(186, 186, 186);
}

.links-section .link-item:nth-child(2) .link-button {
    border: 2px solid rgb(125, 125, 125);
}
.links-section .link-item:nth-child(3) .link-button {
    border: 2px solid rgb(114, 113, 113);
}
.links-section .link-item:nth-child(4) .link-button {
    border: 2px solid rgb(59, 59, 59);
}
.links-section .link-item:nth-child(5) .link-button {
    border: 2px solid rgb(35, 35, 35);
}

.links-section .link-item:last-child .link-button {
    border: 2px solid rgb(0, 0, 0);
}
.main-nav ul li:first-child a{
  padding-left: 0;
  color: rgb(10, 6, 142);
}
.ecommerce-main-nav ul li:nth-child(odd) a{
    color:rgb(120, 120, 0);
}
/*-------------------------
PART A - GALLERY (CSS GRID)
------------------------------------*/
.gallery-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px 30px;
}
.gallery-section .gallery-card:nth-of-type(1),
.gallery-section .gallery-card:nth-of-type(4) {
    background-color: #e8e8e8;
}
.new-gallery-card {
    background-color: #ebe2be;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    color: #333;
}
.new-gallery-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 20px 30px;
}
.gallery-card {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    color: #333;
}
.gallery-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 3px;
}
.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.card-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
    color: #4d4d4d;
}

.card-description {
    font-size: 0.85em;
    color: #555;
    margin-bottom: 0;
}
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/*-------------------------------------------
BRIDAL STORE STYLES
-------------------------------------*/
.site-wrapper {
    max-width: none;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #eee;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 0.9em;
    transition: color 0.3s;
}

.main-nav li a:hover {
    color: #777777;
}

.nav-right a {
    text-decoration: none;
    color: #555555;
    font-size: 0.8em;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #000000;
}

.site-wrapper .main-header {
    background-color: #000000;
    border-bottom: none;
}
.site-wrapper .main-nav li a {
    color: #ffffff;
}
.site-wrapper .nav-right a {
    color: #cccccc;
}
.site-wrapper .main-nav li a:hover,
.site-wrapper .nav-right a:hover {
    color: #e6e6e6;
}

.hero-section {
    background-color: #909090;
}
.hero-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hero-content-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 8px;
    padding-top: 30px;
    padding-left: 20px;
    z-index: 10;
    max-width: 90%;
}
.hero-text h1 {
    font-size: 2.2em;
    margin: 0;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    padding: 0px;
}
.hero-text p {
    font-size: 1.1em;
    margin: 0;
    padding: 0px;
}

.hero-message-area {
    background-color: #919191;
    color: #ffffff;
    padding: 40px 20px 60px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.small-text {
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: 500;
}

.main-slogan {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 8vw;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dark-button {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.dark-button:hover {
    background-color: #bbbbbb;
    color: #000000;
}

/*-----------------------------------------
PORTFOLIO STYLES
-------------------------------------------*/
.portfolio-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.element-selector{
  font-family: 'Georgia', Times, serif;
  font-size:3em;
}
.hero-image-container {
    width: 100%;
}
.hero-image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.content-area {
    padding: 20px 20px 60px 20px;
}

.about-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-decoration: none;
    padding: 12px 35px;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-bottom: 50px;
}

.about-button:hover {
    background-color: #faf6f6;
    color: #000;
}

.email-contact {
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: #000;
}
.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 10px;
}


/*----------------------------------------
 E-COMMERCE STYLES
------------------------------------------*/
.luxury-page {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    text-align: initial;
    display: block;
    padding: 0;
}
.ecommerce-top-container,
.ecommerce-content-container,
.ecommerce-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ecommerce-main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 1000;
}

.ecommerce-top-bar {
    padding: 15px;
}

.ecommerce-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ecommerce-logo-text {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    display: block;
    width: 33%;
    text-align: center;
}

.ecommerce-lang {
    font-size: 12px;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.ecommerce-lang:hover {
    opacity: 1;
}

.ecommerce-top-right-image {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.ecommerce-icon-link {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ecommerce-main-nav {
    border-top: 1px solid #f0f0f0;
    padding: 10px 0;
}

.ecommerce-menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 15px;
}

.ecommerce-menu-list li a {
    text-decoration: none;
    color: #000000;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 10px;
    text-transform: uppercase;
    transition: color 0.3s, border-bottom 0.3s;
}

.ecommerce-menu-list li a:hover {
    color: #333333;
    border-bottom: 1px solid #000000;
}
.ecommerce-hero-section {
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}
.ecommerce-product-display {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ecommerce-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.ecommerce-hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ecommerce-luxury-slogan,
.ecommerce-discover-button {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.ecommerce-luxury-slogan {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 30px;
    color: white;
    text-transform: uppercase;
}

.ecommerce-discover-button {
    display: inline-block;
    color: white;
    border: 1px solid black;
    padding: 10px 40px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.ecommerce-discover-button:hover {
    background-color: white;
    color: #000000;
}
.ecommerce-main-content {
    padding: 80px 20px;
    text-align: center;
}

.ecommerce-section-title {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
}

.ecommerce-product-card:hover {
    background-color: #ebebeb;
    color: #000;
}

.ecommerce-main-footer {
    background-color: #f7f7f7;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.ecommerce-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecommerce-footer-links {
    margin-bottom: 15px;
}

.ecommerce-footer-links a {
    color: #555;
    font-size: 13px;
    margin: 0 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.ecommerce-copyright {
    font-size: 12px;
    color: #888;
}
footer {
    padding: 10px;
    background-color: black;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding: 5px 10px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
    align-self: flex-start;
}

.input-container {
    width: 100%;
    margin-bottom: 15px;
}

#email-text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ff6464;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    text-align: left;
    color: #333;
    background-color: #ffffff;
}
.card-footer {
    color: white;
    text-align: center;
}
.card-footer a {
    color: rgb(201, 165, 1);
}
.card-footer::after {
    content: "";
    display: table;
    clear: both;
}
.site-wrapper .card-footer.black-footer {
    background-color: #000000;
    color: #ffffff;
}
.site-wrapper .card-footer.black-footer a {
    color: #ffcc00;
}

hr.dashed {
    border-top: 3px dashed #bbb;
}
/*flip card*/
.avatar-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s; 
    transform-style: preserve-3d;
    border-radius: 50%; 
}
.avatar-container:hover .avatar-flip-inner {
    transform: rotateY(180deg);
}

.avatar-flip-front, .avatar-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    border-radius: 50%; 
    padding: 5px; 
    box-sizing: border-box; 
}

.avatar-flip-front {
    background-color: white;
}
.avatar-flip-front .profile-avatar 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-flip-back {
    color: white;
    transform: rotateY(180deg); 
    font-size: 0.8em; 
}
.avatar-flip-back p {
    margin: 0;
    padding: 0 5px;
    line-height: 1.2;
    font-size:1.5em;
}
.avatar-flip-back .profile-short-text {
    font-size: 0.7em;
    margin-top: 5px;
}