/* General Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background: url('https://raw.githubusercontent.com/dineshpasala36/snap-scape-studios/4bba850b2d0fb68ca0ae517e8d3090d3cf06cb53/ChristmasForms/Images/tyler-delgado-cAkkwenx5zo-unsplash.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #333;
    position: relative;
}

/* Background Overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Header Styling */
header {
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

.logo {
    width: 150px;
    margin-bottom: 1rem;
}

.header-text h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin: 0.5rem 0;
}

.header-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ddd;
}

/* Single Button Styling for "Look at Our Work" */
.portfolio-button {
    display: inline-block;
    background-color: #ff6347; /* Button color */
    color: #fff;
    padding: 14px 28px; /* Larger padding for emphasis */
    border-radius: 25px; /* Rounded corners */
    font-size: 1.2rem; /* Larger font size */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 1.5rem; /* Adds space above button */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

/* Hover and Active Effects */
.portfolio-button:hover {
    background-color: #e5533d; /* Darker color on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

.portfolio-button:active {
    background-color: #d9472d; /* Darker color on click */
    transform: translateY(0); /* Reset lift on click */
}
/* Portfolio Page Sections with Soft Background */
.portfolio-sections section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f5f5f5; /* Light gray background */
    color: #333; /* Dark text color for readability */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Section Header Styling with Distinctive Color */
.portfolio-sections h2 {
    color: #4b9cd3; /* Soft blue for section headers */
    border-bottom: 2px solid #4b9cd3;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Client Links Styling with Dark Gray */
.portfolio-sections a {
    color: #333; /* Dark gray color for client links */
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-sections a:hover {
    color: #4b9cd3; /* Subtle blue on hover */
}



/* Form Container (Optional) */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Form Styling */
form label {
    font-weight: 500;
    margin-top: 1rem;
    color: #444;
}

form input, form select, form textarea {
    font-family: 'Roboto', sans-serif;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    margin-top: 0.5rem;
}

form input:focus, form select:focus, form textarea:focus {
    border-color: #2b2d42;
}

button {
    background: #2b2d42;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

button:hover {
    background: #444;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.form-footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 1.5rem;
}

.form-footer a {
    color: #2b2d42;
    font-weight: bold;
    text-decoration: none;
}



/* Button Link Styling for "Reserve Now" and "Portfolio" in Portfolio Page */
.button-link {
    display: inline-block;
    background-color: #ff6347; /* Prominent button color */
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin: 0 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

.button-link:hover {
    background-color: #e5533d; /* Slightly darker color on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.button-link:active {
    background-color: #d9472d; /* Even darker on click */
    transform: translateY(0);
}



/* Background Styling for Portfolio Page */
.portfolio-page {
    background: url('https://raw.githubusercontent.com/dineshpasala36/dineshpasalaphotography/b0ba918007655a801f1a2218e042db6174360c08/ChristmasForms/Images/PortfolioPage.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    position: relative;
}

/* Background Overlay for Portfolio Page */
.portfolio-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional overlay for text contrast */
    z-index: -1;
}
