/*pre-set*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*main css*/
body {
    background-color: black;
}

.container {
    background-image: url(images/background.png);
    background-size:cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inria Serif", serif;
    font-weight: 300;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4rem;
    border-radius: 1rem;
    text-align: center;
    width: 80%;
}

.title {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.title h1 {
    color: #00FFFF;
    font-size: 2rem;
}



nav a {
    color: silver; /* Or your desired link color */
    text-decoration: none; /* Remove underline */
    /* You might want to remove padding if it's set elsewhere */
}

nav a:hover {
    color: #00FFFF; /* Example hover color */
}

/* If using the CSS separator method */
nav a:not(:last-child)::after {
    content: "|";
    margin: 0 0.5em;
    color: silver; /* Color for the separator */
}

/*home page*/
.aboutMe-section {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}


.button:hover {
    background-color: #DAA520;
    cursor: pointer;
}

.button {
    background-color: #DAA520;
    color: #000;
    border: 2px solid #00FFFF;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}

.button:hover {
    background-color: #00FFFF;
    color: #FFF;
    cursor: pointer;
}

/* My work styling-home page*/
.portfolio-section {
    text-align: center;
    margin-top: 5rem;
}

.portfolio-section h3 {
    color: #DAA520; 
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.portfolio-section h5 {
    color: #DAA520;
}

.portfolio-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio-container p{
    color: #e0e0e0;
    margin-left: 1rem;
}

.portfolio-image {
    max-width: 60%;
    height: auto;
    border: 3px solid #00FFFF; /* Cyan border for contrast */
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Shadow for visibility */
}

/*skills styling-home page*/
.skills {
    color: #DAA520;
}

.skills p, .skills ul, .skills ul li {
    color: #e0e0e0; /* Ensures visibility for all text inside the package div */
}

.skills ul, .skills ul li {
    color: #00FFFF;
}

.skills h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    
}

.skills p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.skills ul {
    list-style: none;
    margin-bottom: 2rem;
}

.skills ul li {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.offer-highlight p {
    margin-top: 10px; 
    font-style: italic; 
    color: #FF5733; 
    font-size: 1.1em; 
    font-weight: bold; 
    padding: 1rem;
}

/*Aboutme page-styling*/
.aboutMe h2 {
    color: #DAA520;
    /*font-size: 3rem;*/
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.aboutMe-section p {
    margin-bottom: 1.5rem; /* Or whatever spacing you prefer */
}

.headshot-image {
    width: 100%; width: 300px; /*max-width: 100%; width: 300px; for responsiveness */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* creates a circular image */
    border-color: #DAA520;
    border-width: .3rem;
    border-style: solid;
    margin-top: 2rem; /* Add some space above it */
}

/* Packages page styling */
.content-area {
    padding: 0 20px; /* Add some horizontal padding */
}

.page-title {
    color: #DAA520;
    font-size: 1.5rem; /* Prominent title */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.main-nav a:not(:last-child)::after {
    content: "|";
    margin: 0 0.5em; /* Space around the separator */
    color: silver; /* Or match your link color */
}

/* Packages Grid Layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 30px; /* Space between package cards */
    margin-bottom: 60px;
}

.package-card {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
    border: 1px solid #DAA520; /* Gold border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); /* Subtle cyan glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.6); /* More prominent glow */
}

.package-card-link {
    text-decoration: none; /* Removes the underline from the link */
    color: inherit; /* Ensures the text color is inherited from the parent */
    display: block; /* Makes the anchor tag a block-level element so it takes up the full grid cell */
}

.package-card-link:hover .package-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.6);
}

.package-card h2 {
    color: #00FFFF; /* Cyan for package titles */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.package-card h3 {
    color: #DAA520;
    text-decoration-line: line-through;
    
}

#package-1 {
    margin-top: 3.1rem;
}

/* Apply flex to the NEW container that holds both prices */
.package-prices {
    /*display: flex; /* Make this div a flex container */
    /*justify-content: center; /* Center the prices together */
    align-items: baseline; /* Align text baselines, important for different font sizes */
    gap: 15px; /* Space between the original and sale price */
    margin-bottom: 1rem; /* Space below the prices, adjust as needed */
}

/* Style the original price */
.original-price-value { /* Target the specific h3 for the original price */
    color: #DAA520; /* Original price color */
    text-decoration: line-through; /* Strikethrough for original price */
    font-size: 1.5em; /* Example: slightly smaller than sale price */
}

/* Style the sale price */
.sale-price h3 { /* Target the h3 inside the .sale-price div */
    color: #DAA520; /* Sale price color */
    font-size: 2em; /* Make sale price more prominent */
    font-weight: bold; /* Make sale price bold */
    /* Remove float: right; it's no longer needed with flexbox */
    text-decoration: none; /* Ensure no underline/line-through for sale price */
}

.package-card ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.package-card li {
    color: #e0e0e0;
    font-size: 1em;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1); /* Subtle separator */
    line-height: 1.4;
}

.package-card li:last-child {
    border-bottom: none; /* No border for the last item */
}

/* Add-ons Section */
.add-ons-section {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #DAA520;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    margin-top: 60px; /* Space from packages */
}

.add-ons-section h2 {
    color: #DAA520;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.add-on-intro {
    color: #e0e0e0; /* Cyan for introductory text */
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.add-on-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2); /* Separator for add-on items */
}

.add-on-item:last-child {
    border-bottom: none; /* No border for the last add-on */
}

.add-on-item h3 {
    color: #DAA520;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.add-on-item p {
    color: #d0d0d0;
    font-size: 1em;
    line-height: 1.6;
}



/*Contact Me page styling*/
.contact-section {
    position: relative;
    text-align: center;

     /* Add the glowing ring */
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px; /* Adjust size as needed */
        height: 600px;
        border: 2px solid rgba(0, 255, 255, 0.2); /* A light cyan ring */
        border-radius: 50%;
        box-shadow: 0 0 60px rgba(0, 255, 255, 0.5); /* A strong cyan glow */
        pointer-events: none; /* Allows clicks to pass through */
        z-index: 0;
    }
}

.cell-phone-image {
    width: 400px; /* Adjust size as needed */
    max-width: 100%; /* Important for responsiveness*/
    height: auto;
    cursor: pointer;
    display: block; /* Ensures no extra space below the image */
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); /* A more pronounced cyan glow */
    border-radius: 20px; /* Optional: adds a slight rounded edge */
    transition: box-shadow 0.5s ease-in-out; /* Smooths the glow effect */

 /* Add a subtle animation to make it "breathe" */
    animation: floating 3s ease-in-out infinite;
}

/* The hover effect is good, let's keep it. */
.cell-phone-image:hover {
    transform: scale(1.05); /* Make it pop more on hover */
    box-shadow: 0 0 45px rgba(0, 255, 255, 0.8); /* Intensify the glow on hover */
}

/* Define the floating animation */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

 .email-display {
    position: absolute;
    bottom: 20px; /* Adjust position relative to the phone */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #DAA520; /* yellow text */
    padding: 8px 12px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1em;
    white-space: nowrap;
    overflow: hidden;
    width: 0; /* Initially hidden */
    transition: width 0.3s ease-out; /* For the "typing" effect */
    opacity: 0; /* Initially hidden */
    pointer-events: none; /* Prevents interaction with this div */
} */



/*Makes the image slightly interactive on hover */
.cell-phone-image:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
}

/*.contact-prompt {
    color: #DAA520;
    margin-top: 3rem;
    margin-bottom: 1rem;
}*/

/* Make the prompt text more impactful */
.contact-prompt {
    color: #DAA520; /* Use your vibrant cyan for the prompt */
    font-size: 2rem; /* Make it more prominent than a standard heading */
    font-weight: bold; /* Give it more visual weight */
    margin-top: 3rem;
    margin-bottom: 2rem; /* Give it more breathing room */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add a shadow for depth */
}

/* ======================================= */
/* RESPONSIVE DESIGN: Tablet and Mobile   */
/* ======================================= */

@media (max-width: 768px) {
    /* Your new mobile-specific styles will go here */

    /* Inside the @media (max-width: 768px) block */
.overlay {
    padding: 2rem; /* Reduce padding for smaller screens */
    width: 95%; /* Take up more of the screen width */
}

/* Adjust the navigation bar for mobile */
nav {
    font-size: 1.2rem; /* Make the font smaller */
    line-height: 1.5; /* Add more space between lines */
    display: flex; /* Flexbox is still good */
    flex-direction: column; /* CRITICAL: Stack the links vertically */
    gap: 10px; /* Add some space between the stacked links */
}

/* Adjust the hero text and headings */
.aboutMe-section p,
.skills p {
    font-size: 1rem; /* Smaller font size for body text */
    line-height: 1.8; /* Make text easier to read with more line height */
}

/* Fix the portfolio section to stack the image and text */
.portfolio-container {
    flex-direction: column; /* CRITICAL: Stack image and text vertically */
    text-align: center;
}

.portfolio-container p {
    margin-left: 0; /* Remove the margin from the side of the text */
    margin-top: 1rem; /* Add margin above the text */
}

.portfolio-image {
    max-width: 80%; /* Let the image take up more of the width */
}

/* Fix the packages grid to show only one card per row */
.packages-grid {
    grid-template-columns: 1fr; /* CRITICAL: Change to a single column */
}


}

