/* CSS for Timeless Touch Studios Landing Page */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #23a2b9; /* Dark teal background color */
    background-image: url(background.jpg);
    background-repeat: no-repeat; 
    background-size: cover;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px; /* Constrain content width similar to the image */
    margin: 0 auto;
    /* Placeholder for the bokeh background texture */
    background-image: linear-gradient(to bottom, rgba(100, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('placeholder-background.jpg'); 
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* --- Header Section --- */
header {
    background-color: #0d3d44;
    padding: 20px 0 10px;
    text-align: center;
}

.logo {
    width:500px;
}


.logo-text {
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #b5c7e1; /* Lighter color for text */
}

h1 {
    font-size: 1.8em;
    margin: 0;
    padding: 10px 20px;
    color: #79aebc; /* Teal heading color */
}

/* --- Image Comparison Section --- */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.image-gallery img {
    width: 48%;
    max-width: 280px;
    border: 3px solid #79aebc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- Content Block --- */
.content-block {
    background-color: rgba(12, 56, 64, 0.8); /* Dark teal overlay for text readability */
    padding: 20px;
    margin: 20px 0;
}

.content-block p {
    font-size: 1.1em;
    color: #e6e6e6;
    text-align: center;
}

.social-media {
    text-align: center;
    padding: 20px;
    font-size: 1.1em;
    color: #205867;
}

/* --- Before/After Gallery --- */
.before-after-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.before-after-gallery img {
    width: 45%;
    max-width: 150px;
    border: 3px solid #79aebc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- Stats Section --- */
.stats-section {
    background-color: rgba(12, 56, 64, 0.9);
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #79aebc;
}

.stats-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-section li {
    margin-bottom: 15px;
    font-size: 1em;
    display: flex;
    align-items: center;
    color: #e6e6e6;
}

.stats-section li::before {
    content: '⭐';
    margin-right: 10px;
    font-size: 1.2em;
}

/* --- Newsletter/Form Section --- */
.newsletter-section {
    padding: 40px 20px 60px;
    text-align: center;
    background-color: rgba(12, 56, 64, 0.7);
}

.newsletter-section p {
    margin: 0 0 20px 0;
    font-size: 1.1em;
    color: #c0d9e0;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #79aebc;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #a0b7c0;
}

.form-group input:focus {
    outline: 2px solid #79aebc;
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-signup {
    background-color: #55c2c7; /* Bright teal for the button */
    color: #0c3840;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-signup:hover {
    background-color: #79aebc;
}
