/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'Cedora';
  src: url('../Fonts/Cedora-BoldItalicStd.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cedora';
  src: url('../Fonts/Cedora-BoldStd.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cedora';
  src: url('../Fonts/Cedora-RegularItalicStd.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cedora';
  src: url('../Fonts/Cedora-RegularStd.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Colmeak';
  src: url('../Fonts/Colmeak.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Cedora';
  background: linear-gradient(45deg, #0D4FD5, #70D6FF);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* ===== TOP MENU BAR ===== */
header {
  background: rgba(0, 0, 0, 0.25);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

H1, H2, H3, H4, H5, H6 {
  font-family: 'Colmeak';
}

header h1 a {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Colmeak';
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

header h1 a:hover {
  text-shadow: 0 0 10px #ff0080;
  font-size: 1.9rem;
}

nav {
  display: flex;
  gap: 15px; 
}

nav a {
  font-family: 'Cedora';
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  padding: 8px 12px; 
  border-radius: 8px;
}

nav a:hover {
  background-color: #ff3d9ed3;
  font-weight: 800;
}

/* ===== Page Headers ===== */

.page-header {
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #0D4FD5;
  
}

.page-header h1 {
  color: #ffff;
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.page-header p {
  color: #ffff;
  font-size: 18px;
  font-style: italic;
  animation: fadeInUp 0.8s ease;
}

/* ===== Main Content ===== */
main {
  flex: 1;
  padding: 100px 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.content, .fridge-content {
    animation: fadeIn 0.6s ease;
}


/* ===== Cards & Sections ===== */
.home-about,
.home-find,
.card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  text-align: center;
}

.home-about h2,
.home-find h2,
.card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.card h2 {
  font-size: 1.8rem;
}

.home-about article {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-align: justify;
}

.card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.card strong {
  color: #FF007F;
}

/* ===== Buttons ===== */
button,
.btn,
.submit-btn {
  display: inline-block;
  color: white;
  border-radius: 15px;
  padding: 14px 40px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cedora';
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
}

button {
  background: linear-gradient(135deg, #FF007F, #FF1493) !important;
  border: 2px solid #FF007F !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}

button:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.5) !important;
}

.btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #FF007F, #FF1493);
  border: 2px solid #FF007F;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #0D4FD5, #1E90FF);
  border: 2px solid #0D4FD5;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1E90FF, #4169E1);
  box-shadow: 0 15px 30px rgba(13, 79, 213, 0.4);
}

.submit-btn {
  background: rgba(255, 0, 127, 0.3);
  border: 2px solid #FF007F;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.submit-btn:hover {
  background: rgba(255, 0, 127, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}



/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

footer a {
  color: #FF007F;
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
}
