Changed around line 1
+ :root {
+ --primary-color: #6C5B7B;
+ --secondary-color: #C06C84;
+ --accent-color: #F67280;
+ --light-color: #F8B195;
+ --dark-color: #355C7D;
+ --white: #FFFFFF;
+ --black: #000000;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', sans-serif;
+ line-height: 1.6;
+ color: var(--dark-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .nav-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ .cta-button {
+ background-color: var(--accent-color);
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ text-decoration: none;
+ color: var(--white);
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: var(--light-color);
+ transform: translateY(-2px);
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ padding: 2rem;
+ }
+
+ .gallery-item img {
+ width: 100%;
+ height: auto;
+ border-radius: 8px;
+ transition: transform 0.3s ease;
+ }
+
+ .gallery-item img:hover {
+ transform: scale(1.05);
+ }
+
+ .about, .contact {
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ background-color: var(--dark-color);
+ color: var(--white);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .gallery-grid {
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ }
+ }