/* --- Global Styles & Variables --- */ :root { --primary-color: #c9a96e; /* Soft Gold */ --secondary-color: #f4f1eb; /* Light Cream */ --dark-color: #333333; --light-color: #ffffff; --font-heading: 'Playfair Display', serif; --font-body: 'Montserrat', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--font-body); font-size: 16px; color: var(--dark-color); line-height: 1.6; background-color: var(--light-color); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .section-padding { padding: 80px 0; } h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--dark-color); margin-bottom: 20px; } h1 { font-size: 3.5rem; } h2 { font-size: 2.8rem; text-align: center; margin-bottom: 50px; } h3 { font-size: 1.5rem; } p { margin-bottom: 15px; } a { text-decoration: none; color: var(--primary-color); transition: color 0.3s ease; } a:hover { color: #a58c5b; } img { max-width: 100%; height: auto; display: block; } /* --- Buttons --- */ .btn-primary, .btn-secondary { display: inline-block; padding: 12px 30px; border-radius: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; } .btn-primary { background-color: var(--primary-color); color: var(--light-color); border: 2px solid var(--primary-color); } .btn-primary:hover { background-color: transparent; color: var(--primary-color); } .btn-secondary { background-color: transparent; color: var(--dark-color); border: 2px solid var(--dark-color); } .btn-secondary:hover { background-color: var(--dark-color); color: var(--light-color); } .btn-large { padding: 15px 40px; font-size: 1.1rem; } /* --- Header --- */ .main-header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .main-header .container { display: flex; justify-content: space-between; align-items: center; } .logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--dark-color); } .main-nav ul { list-style: none; display: flex; align-items: center; gap: 30px; } .main-nav a { color: var(--dark-color); font-weight: 400; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; } .main-nav a:hover, .main-nav a.active { color: var(--primary-color); } .btn-appointment { background-color: var(--primary-color); color: var(--light-color) !important; padding: 10px 20px; border-radius: 5px; } .btn-appointment:hover { background-color: #a58c5b !important; color: var(--light-color) !important; } /* --- Hero Section --- */ .hero-section { height: 100vh; background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/seed/hero/1920/1080.jpg') no-repeat center center/cover; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--light-color); padding: 0 20px; } .hero-content h1 { font-size: 4rem; color: var(--light-color); margin-bottom: 20px; } .hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px auto; font-weight: 300; } /* --- Welcome Section --- */ .welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .welcome-text h2 { text-align: left; margin-bottom: 20px; } .welcome-image { box-shadow: 0 10px 30px rgba(0,0,0,0.1); } /* --- Collections Section --- */ .collections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .collection-card { text-align: center; transition: transform 0.3s ease; } .collection-card:hover { transform: translateY(-10px); } .collection-card img { margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); } /* --- Testimonial Section --- */ .testimonial-section { background-color: var(--secondary-color); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .testimonial-grid blockquote { font-family: var(--font-heading); font-size: 1.3rem; font-style: italic; color: #555; position: relative; padding: 0 20px; } .testimonial-grid blockquote::before { content: '"'; font-size: 4rem; color: var(--primary-color); position: absolute; top: -20px; left: -10px; } .testimonial-grid cite { display: block; margin-top: 15px; font-family: var(--font-body); font-style: normal; font-weight: 600; color: var(--dark-color); } /* --- CTA Section --- */ .cta-section { background-color: var(--dark-color); color: var(--light-color); text-align: center; } .cta-section h2 { color: var(--light-color); } .cta-section p { max-width: 600px; margin: 0 auto 40px auto; font-size: 1.1rem; } /* --- Footer --- */ .main-footer { background-color: #222; color: #aaa; padding: 60px 0 20px 0; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-about h3, .footer-contact h3, .footer-hours h3 { font-family: var(--font-heading); color: var(--light-color); font-size: 1.5rem; margin-bottom: 15px; } .footer-about p { margin-bottom: 20px; } .social-links a { color: #aaa; font-size: 1.5rem; margin-right: 15px; } .social-links a:hover { color: var(--primary-color); } .footer-contact p, .footer-hours p { margin-bottom: 10px; } .footer-contact i { margin-right: 10px; color: var(--primary-color); } .footer-bottom { text-align: center; border-top: 1px solid #444; padding-top: 20px; font-size: 0.9rem; } /* --- Responsive Design --- */ @media (max-width: 992px) { h1 { font-size: 3rem; } h2 { font-size: 2.2rem; } .welcome-grid { grid-template-columns: 1fr; gap: 40px; } .welcome-text { order: 2; } .welcome-image { order: 1; } } @media (max-width: 768px) { .main-header .container { flex-direction: column; gap: 15px; } .main-nav ul { gap: 20px; font-size: 0.85rem; } .hero-section { height: 80vh; } .hero-content h1 { font-size: 2.5rem; } .section-padding { padding: 60px 0; } } @media (max-width: 576px) { .main-nav ul { flex-wrap: wrap; justify-content: center; } .hero-content h1 { font-size: 2rem; } .hero-content p { font-size: 1rem; } .testimonial-grid blockquote { font-size: 1.1rem; } }