1+ @import url ('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Lato:wght@300;400;700&display=swap' );
2+
13: root {
24 --color-crema : # f5f5dc ;
35 --color-marron : # 8b4513 ;
3032 ESTILOS GENERALES
3133 ============================================ */
3234body {
33- font-family : 'Quicksand ' , sans-serif;
35+ font-family : 'Lato ' , sans-serif;
3436 background-color : # bb9467 !important ;
3537 line-height : 1.6 ;
3638 overflow-x : hidden;
3739}
3840
41+ h1 , h2 , h3 , h4 , h5 , h6 , .section-title , .card-title , .font-weight-bold {
42+ font-family : 'Playfair Display' , serif;
43+ }
44+
3945html {
4046 scroll-behavior : smooth;
4147}
@@ -94,19 +100,21 @@ header {
94100 transition : color 0.3s ease;
95101}
96102
97- .nav-link ::after {
103+ .nav-link ::before {
98104 content : '' ;
99105 position : absolute;
100- bottom : -5 px ;
101- left : 0 ;
102- width : 0 ;
106+ bottom : 0 px ;
107+ left : 1 rem ;
108+ right : 1 rem ;
103109 height : 2px ;
104110 background : var (--color-marron );
105- transition : width 0.3s ease;
111+ transform : scaleX (0 );
112+ transform-origin : center;
113+ transition : transform 0.3s ease;
106114}
107115
108- .nav-link : hover ::after {
109- width : 100 % ;
116+ .nav-link : hover ::before {
117+ transform : scaleX ( 1 ) ;
110118}
111119
112120/* ============================================
@@ -347,11 +355,18 @@ header {
347355 CARDS DE PRODUCTOS (HOMEPAGE)
348356 ============================================ */
349357.card {
350- border : none;
358+ border : 2 px solid # faa85c !important ; /* Borde dorado delicado pero visible */
351359 position : relative;
352360 overflow : hidden;
353361 border-radius : 15px ;
354- box-shadow : 0 2px 15px rgba (0 , 0 , 0 , 0.1 );
362+ box-shadow : 0 4px 15px rgba (212 , 175 , 55 , 0.15 ) !important ;
363+ transition : all 0.2s ease;
364+ }
365+
366+ .card : hover {
367+ border-color : # df6d10e8 !important ;
368+ box-shadow : 0 8px 25px rgba (56 , 56 , 55 , 0.4 ) !important ;
369+ transform : translateY (-15px );
355370}
356371
357372.card-img-custom {
@@ -364,10 +379,17 @@ header {
364379 CARDS DE PRODUCTOS (MENÚ)
365380 ============================================ */
366381.card-hover {
367- border : none;
382+ border : 2 px solid # ffc400 !important ; /* Borde dorado delicado pero visible */
368383 border-radius : 12px ;
369384 overflow : hidden;
370- box-shadow : 0 2px 15px rgba (0 , 0 , 0 , 0.1 );
385+ box-shadow : 0 4px 15px rgba (212 , 175 , 55 , 0.15 ) !important ;
386+ transition : all 0.1s ease;
387+ }
388+
389+ .card-hover : hover {
390+ border-color : # ffee00 !important ;
391+ box-shadow : 0 8px 25px rgb (255 , 196 , 0 ) !important ;
392+ transform : translateY (-10px );
371393}
372394
373395.card-img-container {
0 commit comments