/* 
   Resoul Flow Website Styles
   Brand Colors:
   - Warm Gray: #9C9792 (RGB: 156, 151, 146)
   - Light Taupe: #BDB4AA (RGB: 189, 180, 170)
   - Off-White Beige: #D9D4CC (RGB: 217, 212, 204)
   - Ivory Beige: #EAE7E3 (RGB: 234, 231, 227)
   - Dark Charcoal: #302C29 (RGB: 48, 44, 41)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #302C29;
    background-color: #EAE7E3;
    letter-spacing: 0.03em;
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 200;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: #302C29;
    transition: all 0.3s ease;
}

/* Header Styles */
header {
    background-color: transparent;
    padding: 30px 0;
    border-bottom: 1px solid rgba(156, 151, 146, 0.2);
}

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

.logo h1 {
    font-size: 1.6rem;
    margin: 0;
    color: #302C29;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    padding: 8px 0;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #302C29;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.active {
    font-weight: 400;
}

nav ul li a.active:after {
    width: 100%;
}

nav ul li a.coming-soon {
    color: #9C9792;
    cursor: default;
}

nav ul li a.coming-soon:after {
    display: none;
}

/* Hero Section Adjustments */
.hero-image {
    position: relative;
    text-align: center;
	overflow: hidden;
}

/*New*/
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 44, 41, 0.15); /* Dark overlay for contrast */
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	display: block;
}
.hero-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 4rem;
    color: #fffaf4;
    margin-bottom: 25px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.4rem;
    color: #fffaf4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Hero Section */
/*
.hero {
    padding: 100px 0;
    background-color: transparent;
    color: #302C29;
}

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

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}
*/

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 0.08em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 500px;
}

/* Social Media Section */
.social-media {
    padding: 100px 0;
    text-align: center;
    background-color: #D9D4CC;
}

.social-media h2 {
    margin-bottom: 15px;
    font-weight: 200;
    letter-spacing: 0.08em;
}

.social-media p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: transparent;
    width: 100%;
    height: 120px;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.social-icon span {
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.instagram,
.social-icon.facebook,
.social-icon.tiktok,
.social-icon.youtube,
.social-icon.pinterest {
    color: #302C29;
}

/* Coming Soon Features */
.coming-soon-features {
    padding: 100px 0;
    background-color: #EAE7E3;
    text-align: center;
}

.coming-soon-features h2 {
    font-weight: 200;
    letter-spacing: 0.08em;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: #D9D4CC;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #9C9792;
}

.card h3 {
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.card p {
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.6;
}
/* Contact Form Styles */
.contact-form {
    padding: 100px 0;
    background-color: #D9D4CC;
}

.form-group {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #9C9792;
    background-color: #EAE7E3;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #302C29;
    color: #EAE7E3;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
}

.submit-btn:hover {
    background-color: #9C9792;
    transform: translateY(-2px);
}

/* Additional styles for contact feedback messages */
        .form-feedback {
            display: none;
            padding: 15px;
            margin-top: 20px;
            border-radius: 4px;
            text-align: center;
        }
        .success-message {
            background-color: rgba(46, 125, 50, 0.1);
            color: #2e7d32;
            border: 1px solid #2e7d32;
        }
        .error-message {
            background-color: rgba(211, 47, 47, 0.1);
            color: #d32f2f;
            border: 1px solid #d32f2f;
        }
        .loading {
            display: none;
            margin-left: 10px;
        }



/* Footer */
footer {
    background-color: transparent;
    color: #302C29;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(156, 151, 146, 0.2);
}

footer p {
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

footer a {
    color: #302C29;
    text-decoration: none;
    border-bottom: 1px solid rgba(48, 44, 41, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

footer a:hover {
    border-bottom-color: #302C29;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 20px;
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .social-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
    }
	
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        height: 500px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
	
cards {
        grid-template-columns: 1fr;
    }
    
    .social-icon {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .social-icon i {
        font-size: 2rem;
    }
}
