Changed around line 1
+ :root {
+ --primary-color: #ff69b4;
+ --secondary-color: #fff0f5;
+ --accent-color: #ff1493;
+ --text-color: #333;
+ --light-text: #fff;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Playfair Display', serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .hero {
+ background: linear-gradient(rgba(255,105,180,0.9), rgba(255,20,147,0.8));
+ min-height: 100vh;
+ padding: var(--spacing);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: url('images/pattern.svg');
+ opacity: 0.1;
+ animation: float 20s linear infinite;
+ }
+
+ @keyframes float {
+ from { transform: rotate(0deg); }
+ to { transform: rotate(360deg); }
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ color: var(--light-text);
+ font-weight: bold;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--light-text);
+ text-decoration: none;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--light-text);
+ color: var(--primary-color) !important;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: bold;
+ }
+
+ .hero-content {
+ text-align: center;
+ color: var(--light-text);
+ margin-top: 10vh;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background: var(--light-text);
+ color: var(--primary-color);
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ text-decoration: none;
+ font-weight: bold;
+ margin-top: 2rem;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .gallery-grid, .service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: var(--spacing);
+ }
+
+ .cake-card {
+ background: var(--secondary-color);
+ border-radius: 15px;
+ overflow: hidden;
+ transition: transform 0.3s ease;
+ }
+
+ .cake-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .cake-card img {
+ width: 100%;
+ height: 250px;
+ object-fit: cover;
+ }
+
+ .service-card {
+ text-align: center;
+ padding: 2rem;
+ background: var(--secondary-color);
+ border-radius: 15px;
+ transition: all 0.3s ease;
+ }
+
+ .service-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .order-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: var(--spacing);
+ }
+
+ .contact-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .contact-form input,
+ .contact-form select,
+ .contact-form textarea {
+ padding: 1rem;
+ border: 2px solid var(--secondary-color);
+ border-radius: 8px;
+ font-family: inherit;
+ }
+
+ .submit-button {
+ background: var(--primary-color);
+ color: var(--light-text);
+ border: none;
+ padding: 1rem;
+ border-radius: 8px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: var(--spacing);
+ text-align: center;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }