﻿/* Header */
header {
	text-align: center;
	margin-bottom: 30px;
}
    
/* Body */   
body {
	margin: 0;
    background: linear-gradient(135deg, #2A0A3D, #FFB6D9, #FFF0F6);
    background-attachment: fixed;    
    background-size: cover;    
    background-repeat: no-repeat;
    background-position: center;
    font-family: Verdana;
}

/* Navigation*/
nav {
  background: black;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-family: Verdana;
  z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: black;
    flex-wrap: wrap;
    gap: 20px;
}

nav li {
	padding: 3px;
}

nav li a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
}

nav li a:visited {
    color: white;
}

nav .button {
    background: transparent;
    border: none;
    border: 1px solid transparent;    
    background-image: linear-gradient(135deg, #2A0A3D, #FFB6D9, #FFF0F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

nav .button:hover {
    background: rgba(32, 0, 64, 0.6);
    border: 1px solid #FF4D9D;
    border-radius: 6px;
    -webkit-text-fill-color: #FF4D9D;
    box-shadow: 0 0 10px rgba(255, 77, 157, 0.6);
}

/* Main */
main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

main a {
    color: white;
    text-decoration: none;
}

main a:hover {
    color: #FF4D9D;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.image-row img {
    width: 250px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-row img:hover {
    box-shadow: 0 0 20px rgba(255, 77, 157, 0.8);
    transform: scale(1.1) rotate(2deg);
}

.barbie-img {
    width: 300px;
    height: 220px;
    object-fit: cover;
}

.about-section h2 {
    color: black;
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 77, 157, 0.6);
    text-shadow: 3px 3px 3px white;
    font-family: Georgia, Verdana, Helvetica;
    text-align: center;
}

.years-section h2 {
	color: black;
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 77, 157, 0.6);
    text-shadow: 3px 3px 3px white;
    font-family: Georgia, Verdana, Helvetica;
    text-align: center;

}

.future-dl {
    color: black;
    font-family: Georgia, serif;
    line-height: 1.6;
}

.future-dl dt {
    font-weight: bold;
    color: white;
    margin-top: 12px;
    text-align: center;
}

.future-dl dd {
    margin: 5px 0 10px 0;
    text-align: center;
}

/* Box Style */
.box {
	background: rgba(0, 0, 0, 0.4);
    border: 2px solid #FF4D9D;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 77, 157, 0.7);
}

.box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 77, 157, 0.15),
        transparent
    );
}

.box:hover::after {
    left: 100%;
    transition: 0.8s;
}

.box p {
    color: #F5F5F5;
    font-size: 16px;
    font-family: Georgia, serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-top: 100px;
}

footer p {
    margin: 5px 0;
}

footer a:focus,
footer a:focus-visible {
    outline: 2px solid #FF4D9D;
    outline-offset: 4px;    
    text-decoration: underline;
    color: #FF4D9D;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 77, 157, 0.6);
}

/* Desktop */
.phone {
    display: none;
}

/* Mobile */
@media screen and (max-width: 768px) {
.email {
	display: none;
	}

.phone {
	display: inline;
 	}
}

/* Media Query for Mobile Viewport */
@media screen and (max-width: 480px), print {    
	.grid {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 10px;
}
}